mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-03 13:38:27 +00:00
fix: allow bulk edit for bill of material items
This commit is contained in:
@@ -282,6 +282,7 @@
|
||||
"oldfieldtype": "Section Break"
|
||||
},
|
||||
{
|
||||
"allow_bulk_edit": 1,
|
||||
"fieldname": "items",
|
||||
"fieldtype": "Table",
|
||||
"label": "Items",
|
||||
@@ -590,6 +591,7 @@
|
||||
},
|
||||
{
|
||||
"default": "0",
|
||||
"depends_on": "eval:doc.track_semi_finished_goods === 0",
|
||||
"fieldname": "fg_based_operating_cost",
|
||||
"fieldtype": "Check",
|
||||
"label": "Finished Goods based Operating Cost"
|
||||
@@ -664,7 +666,7 @@
|
||||
"image_field": "image",
|
||||
"is_submittable": 1,
|
||||
"links": [],
|
||||
"modified": "2025-06-16 16:13:22.497695",
|
||||
"modified": "2025-10-29 17:43:12.966753",
|
||||
"modified_by": "Administrator",
|
||||
"module": "Manufacturing",
|
||||
"name": "BOM",
|
||||
|
||||
@@ -138,7 +138,6 @@ class BOM(WebsiteGenerator):
|
||||
item: DF.Link
|
||||
item_name: DF.Data | None
|
||||
items: DF.Table[BOMItem]
|
||||
track_semi_finished_goods: DF.Check
|
||||
operating_cost: DF.Currency
|
||||
operating_cost_per_bom_quantity: DF.Currency
|
||||
operations: DF.Table[BOMOperation]
|
||||
@@ -161,6 +160,7 @@ class BOM(WebsiteGenerator):
|
||||
show_operations: DF.Check
|
||||
thumbnail: DF.Data | None
|
||||
total_cost: DF.Currency
|
||||
track_semi_finished_goods: DF.Check
|
||||
transfer_material_against: DF.Literal["", "Work Order", "Job Card"]
|
||||
uom: DF.Link | None
|
||||
web_long_description: DF.TextEditor | None
|
||||
|
||||
Reference in New Issue
Block a user