fix(stock): enable allow on submit for tracking status field

(cherry picked from commit 1bfb62465f)
This commit is contained in:
Pandiyan5273
2026-01-07 19:27:16 +05:30
committed by Mergify
parent 530c0b0bd6
commit 9d5a493609
2 changed files with 3 additions and 4 deletions

View File

@@ -382,6 +382,7 @@
"print_hide": 1 "print_hide": 1
}, },
{ {
"allow_on_submit": 1,
"fieldname": "tracking_status", "fieldname": "tracking_status",
"fieldtype": "Select", "fieldtype": "Select",
"label": "Tracking Status", "label": "Tracking Status",
@@ -440,7 +441,7 @@
], ],
"is_submittable": 1, "is_submittable": 1,
"links": [], "links": [],
"modified": "2025-02-20 16:55:20.076418", "modified": "2026-01-07 19:24:23.566312",
"modified_by": "Administrator", "modified_by": "Administrator",
"module": "Stock", "module": "Stock",
"name": "Shipment", "name": "Shipment",

View File

@@ -20,9 +20,7 @@ class Shipment(Document):
if TYPE_CHECKING: if TYPE_CHECKING:
from frappe.types import DF from frappe.types import DF
from erpnext.stock.doctype.shipment_delivery_note.shipment_delivery_note import ( from erpnext.stock.doctype.shipment_delivery_note.shipment_delivery_note import ShipmentDeliveryNote
ShipmentDeliveryNote,
)
from erpnext.stock.doctype.shipment_parcel.shipment_parcel import ShipmentParcel from erpnext.stock.doctype.shipment_parcel.shipment_parcel import ShipmentParcel
amended_from: DF.Link | None amended_from: DF.Link | None