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

This commit is contained in:
Pandiyan5273
2026-01-07 19:27:16 +05:30
parent f111d97444
commit 1bfb62465f
2 changed files with 3 additions and 4 deletions

View File

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

View File

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