Skip to content

Commit

Permalink
Merge pull request #40320 from frappe/mergify/bp/version-14-hotfix/pr…
Browse files Browse the repository at this point in the history
…-40317

fix(Shipment Parcel): make length, width and height non-mandatory (backport #40317)
  • Loading branch information
barredterra authored Mar 6, 2024
2 parents 83734c6 + 911a582 commit b29e70a
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions erpnext/stock/doctype/shipment_parcel/shipment_parcel.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,22 +16,19 @@
"fieldname": "length",
"fieldtype": "Int",
"in_list_view": 1,
"label": "Length (cm)",
"reqd": 1
"label": "Length (cm)"
},
{
"fieldname": "width",
"fieldtype": "Int",
"in_list_view": 1,
"label": "Width (cm)",
"reqd": 1
"label": "Width (cm)"
},
{
"fieldname": "height",
"fieldtype": "Int",
"in_list_view": 1,
"label": "Height (cm)",
"reqd": 1
"label": "Height (cm)"
},
{
"fieldname": "weight",
Expand All @@ -52,7 +49,7 @@
],
"istable": 1,
"links": [],
"modified": "2020-07-09 12:54:14.847170",
"modified": "2024-03-06 16:48:57.355757",
"modified_by": "Administrator",
"module": "Stock",
"name": "Shipment Parcel",
Expand All @@ -61,5 +58,6 @@
"quick_entry": 1,
"sort_field": "modified",
"sort_order": "DESC",
"states": [],
"track_changes": 1
}

0 comments on commit b29e70a

Please sign in to comment.