fix: Use full name instead of abbreviation (#41738)

This commit is contained in:
Nabin Hait
2024-06-03 18:34:27 +05:30
committed by GitHub
parent d30c797d24
commit 9a3569ff15
7 changed files with 26 additions and 21 deletions

View File

@@ -591,13 +591,13 @@
"default": "0",
"fieldname": "fg_based_operating_cost",
"fieldtype": "Check",
"label": "FG based Operating Cost"
"label": "Finished Goods based Operating Cost"
},
{
"depends_on": "fg_based_operating_cost",
"fieldname": "fg_based_section_section",
"fieldtype": "Section Break",
"label": "FG Based Operating Cost Section"
"label": "Finished Goods Based Operating Cost"
},
{
"depends_on": "fg_based_operating_cost",
@@ -663,7 +663,7 @@
"image_field": "image",
"is_submittable": 1,
"links": [],
"modified": "2024-04-02 16:24:47.518411",
"modified": "2024-06-03 16:24:47.518411",
"modified_by": "Administrator",
"module": "Manufacturing",
"name": "BOM",

View File

@@ -83,7 +83,7 @@
"fieldname": "fg_item",
"fieldtype": "Link",
"in_list_view": 1,
"label": "FG Item",
"label": "Finished Goods Item",
"options": "Item",
"reqd": 1
},
@@ -218,7 +218,7 @@
{
"fieldname": "fg_reference_id",
"fieldtype": "Data",
"label": "FG Reference",
"label": "Finished Goods Reference",
"no_copy": 1,
"read_only": 1
},
@@ -320,7 +320,7 @@
"index_web_pages_for_search": 1,
"istable": 1,
"links": [],
"modified": "2024-06-01 18:45:24.339532",
"modified": "2024-06-03 18:45:24.339532",
"modified_by": "Administrator",
"module": "Manufacturing",
"name": "BOM Creator Item",

View File

@@ -202,7 +202,7 @@
"fieldname": "finished_good",
"fieldtype": "Link",
"in_list_view": 1,
"label": "FG / Semi FG Item",
"label": "Finished Goods / Semi Finished Goods Item",
"options": "Item"
},
{
@@ -219,7 +219,7 @@
"fieldname": "finished_good_qty",
"fieldtype": "Float",
"in_list_view": 1,
"label": "FG Qty"
"label": "Finished Goods Qty"
},
{
"default": "0",
@@ -236,7 +236,7 @@
"depends_on": "eval:!doc.skip_material_transfer || doc.backflush_from_wip_warehouse",
"fieldname": "wip_warehouse",
"fieldtype": "Link",
"label": "WIP WH",
"label": "WIP Warehouse",
"options": "Warehouse"
},
{
@@ -248,7 +248,7 @@
"fieldname": "fg_warehouse",
"fieldtype": "Link",
"in_list_view": 1,
"label": "FG WH",
"label": "Finished Goods Warehouse",
"options": "Warehouse"
},
{
@@ -257,7 +257,7 @@
"fieldname": "source_warehouse",
"fieldtype": "Link",
"in_list_view": 1,
"label": "Source WH",
"label": "Source Warehouse",
"options": "Warehouse"
},
{
@@ -290,7 +290,7 @@
"index_web_pages_for_search": 1,
"istable": 1,
"links": [],
"modified": "2024-05-26 15:46:49.404875",
"modified": "2024-06-03 15:46:49.404875",
"modified_by": "Administrator",
"module": "Manufacturing",
"name": "BOM Operation",

View File

@@ -555,7 +555,7 @@
{
"fieldname": "semi_fg_bom",
"fieldtype": "Link",
"label": "Semi FG BOM",
"label": "Semi Finished Goods BOM",
"options": "BOM",
"read_only": 1
},
@@ -614,7 +614,7 @@
],
"is_submittable": 1,
"links": [],
"modified": "2024-05-26 17:44:18.324743",
"modified": "2024-06-03 17:44:18.324743",
"modified_by": "Administrator",
"module": "Manufacturing",
"name": "Job Card",

View File

@@ -85,7 +85,7 @@
"fieldname": "warehouse",
"fieldtype": "Link",
"in_list_view": 1,
"label": "FG Warehouse",
"label": "Finished Goods Warehouse",
"options": "Warehouse"
},
{
@@ -220,7 +220,7 @@
"idx": 1,
"istable": 1,
"links": [],
"modified": "2024-03-27 13:10:20.252166",
"modified": "2024-06-03 13:10:20.252166",
"modified_by": "Administrator",
"module": "Manufacturing",
"name": "Production Plan Item",

View File

@@ -233,7 +233,7 @@
{
"fieldname": "bom_no",
"fieldtype": "Link",
"label": "BOM No (For Semi-FG)",
"label": "BOM No (For Semi-Finished Goods)",
"options": "BOM",
"read_only": 1
},
@@ -245,7 +245,7 @@
"fieldname": "finished_good",
"fieldtype": "Link",
"in_list_view": 1,
"label": "Semi FG / FG",
"label": "Semi Finished Goods / Finished Goods",
"options": "Item",
"read_only": 1
},
@@ -261,7 +261,7 @@
"fieldname": "fg_warehouse",
"fieldtype": "Link",
"in_list_view": 1,
"label": "FG Warehouse",
"label": "Finished Goods Warehouse",
"options": "Warehouse"
},
{
@@ -297,7 +297,7 @@
"index_web_pages_for_search": 1,
"istable": 1,
"links": [],
"modified": "2024-05-26 15:57:17.958543",
"modified": "2024-06-03 15:57:17.958543",
"modified_by": "Administrator",
"module": "Manufacturing",
"name": "Work Order Operation",

View File

@@ -102,7 +102,12 @@ def get_columns() -> Columns:
"fieldtype": "Float",
"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"),
"fieldname": "total_rm_value",