mirror of
https://github.com/frappe/erpnext.git
synced 2026-03-20 15:32:14 +00:00
fix: Use full name instead of abbreviation (#41759)
This commit is contained in:
@@ -591,13 +591,13 @@
|
|||||||
"default": "0",
|
"default": "0",
|
||||||
"fieldname": "fg_based_operating_cost",
|
"fieldname": "fg_based_operating_cost",
|
||||||
"fieldtype": "Check",
|
"fieldtype": "Check",
|
||||||
"label": "FG based Operating Cost"
|
"label": "Finished Goods based Operating Cost"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"depends_on": "fg_based_operating_cost",
|
"depends_on": "fg_based_operating_cost",
|
||||||
"fieldname": "fg_based_section_section",
|
"fieldname": "fg_based_section_section",
|
||||||
"fieldtype": "Section Break",
|
"fieldtype": "Section Break",
|
||||||
"label": "FG Based Operating Cost Section"
|
"label": "Finished Goods Based Operating Cost"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"depends_on": "fg_based_operating_cost",
|
"depends_on": "fg_based_operating_cost",
|
||||||
@@ -637,7 +637,7 @@
|
|||||||
"image_field": "image",
|
"image_field": "image",
|
||||||
"is_submittable": 1,
|
"is_submittable": 1,
|
||||||
"links": [],
|
"links": [],
|
||||||
"modified": "2024-04-02 16:22:47.518411",
|
"modified": "2024-06-03 16:24:47.518411",
|
||||||
"modified_by": "Administrator",
|
"modified_by": "Administrator",
|
||||||
"module": "Manufacturing",
|
"module": "Manufacturing",
|
||||||
"name": "BOM",
|
"name": "BOM",
|
||||||
|
|||||||
@@ -70,7 +70,7 @@
|
|||||||
"fieldname": "fg_item",
|
"fieldname": "fg_item",
|
||||||
"fieldtype": "Link",
|
"fieldtype": "Link",
|
||||||
"in_list_view": 1,
|
"in_list_view": 1,
|
||||||
"label": "FG Item",
|
"label": "Finished Goods Item",
|
||||||
"options": "Item",
|
"options": "Item",
|
||||||
"reqd": 1
|
"reqd": 1
|
||||||
},
|
},
|
||||||
@@ -203,7 +203,7 @@
|
|||||||
{
|
{
|
||||||
"fieldname": "fg_reference_id",
|
"fieldname": "fg_reference_id",
|
||||||
"fieldtype": "Data",
|
"fieldtype": "Data",
|
||||||
"label": "FG Reference",
|
"label": "Finished Goods Reference",
|
||||||
"no_copy": 1,
|
"no_copy": 1,
|
||||||
"read_only": 1
|
"read_only": 1
|
||||||
},
|
},
|
||||||
@@ -230,7 +230,7 @@
|
|||||||
"index_web_pages_for_search": 1,
|
"index_web_pages_for_search": 1,
|
||||||
"istable": 1,
|
"istable": 1,
|
||||||
"links": [],
|
"links": [],
|
||||||
"modified": "2023-11-16 13:34:06.321061",
|
"modified": "2024-06-03 18:45:24.339532",
|
||||||
"modified_by": "Administrator",
|
"modified_by": "Administrator",
|
||||||
"module": "Manufacturing",
|
"module": "Manufacturing",
|
||||||
"name": "BOM Creator Item",
|
"name": "BOM Creator Item",
|
||||||
|
|||||||
@@ -85,7 +85,7 @@
|
|||||||
"fieldname": "warehouse",
|
"fieldname": "warehouse",
|
||||||
"fieldtype": "Link",
|
"fieldtype": "Link",
|
||||||
"in_list_view": 1,
|
"in_list_view": 1,
|
||||||
"label": "FG Warehouse",
|
"label": "Finished Goods Warehouse",
|
||||||
"options": "Warehouse"
|
"options": "Warehouse"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -220,7 +220,7 @@
|
|||||||
"idx": 1,
|
"idx": 1,
|
||||||
"istable": 1,
|
"istable": 1,
|
||||||
"links": [],
|
"links": [],
|
||||||
"modified": "2024-02-27 13:24:43.571844",
|
"modified": "2024-06-03 13:10:20.252166",
|
||||||
"modified_by": "Administrator",
|
"modified_by": "Administrator",
|
||||||
"module": "Manufacturing",
|
"module": "Manufacturing",
|
||||||
"name": "Production Plan Item",
|
"name": "Production Plan Item",
|
||||||
|
|||||||
@@ -102,7 +102,12 @@ def get_columns() -> Columns:
|
|||||||
"fieldtype": "Float",
|
"fieldtype": "Float",
|
||||||
"width": "150",
|
"width": "150",
|
||||||
},
|
},
|
||||||
{"label": _("FG Value"), "fieldname": "total_fg_value", "fieldtype": "Float", "width": "150"},
|
{
|
||||||
|
"label": _("Finished Goods Value"),
|
||||||
|
"fieldname": "total_fg_value",
|
||||||
|
"fieldtype": "Float",
|
||||||
|
"width": "150",
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"label": _("Raw Material Value"),
|
"label": _("Raw Material Value"),
|
||||||
"fieldname": "total_rm_value",
|
"fieldname": "total_rm_value",
|
||||||
|
|||||||
Reference in New Issue
Block a user