From 630882787a6091a41a825f95e21cb2d1612cb9be Mon Sep 17 00:00:00 2001 From: bcornwellmott Date: Thu, 9 Feb 2017 20:41:12 -0800 Subject: [PATCH] Added buildable qty The field indicates how many can be built. --- .../production_order_stock_report.py | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/erpnext/manufacturing/report/production_order_stock_report/production_order_stock_report.py b/erpnext/manufacturing/report/production_order_stock_report/production_order_stock_report.py index eff01687edd..5c3bd787f9d 100644 --- a/erpnext/manufacturing/report/production_order_stock_report/production_order_stock_report.py +++ b/erpnext/manufacturing/report/production_order_stock_report/production_order_stock_report.py @@ -116,11 +116,17 @@ def get_columns(): "options": "", "width": 135 }, { - "fieldname": "ready_to_build", - "label": "Can Start?", + "fieldname": "buildable_qty", + "label": "Buildable Qty", "fieldtype": "Data", "options": "", - "width": 75 + "width": 100 + }, { + "fieldname": "ready_to_build", + "label": "Can Build All", + "fieldtype": "Data", + "options": "", + "width": 90 }] return columns