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