commit | a67ae3ad31891da024c8f8e8f567e26757a06ba6 | [log] [tgz] |
---|---|---|
author | abhijitkumbharIND <abhijit.k@indictranstech.com> | Tue Feb 11 15:16:45 2020 +0530 |
committer | abhijitkumbharIND <abhijit.k@indictranstech.com> | Tue Feb 11 16:45:59 2020 +0530 |
tree | 3f3796ae77099b6ae9eda4d9616c471786b85cbd | |
parent | 65a53ba86c88ab3e284b0f39cad22cc94a0c1c9b [diff] |
fix: Production Plan | Get items from Sales Order not fetching grand total value. #20568
diff --git a/erpnext/manufacturing/doctype/production_plan/production_plan.py b/erpnext/manufacturing/doctype/production_plan/production_plan.py index 848c53c..a79ea0e 100644 --- a/erpnext/manufacturing/doctype/production_plan/production_plan.py +++ b/erpnext/manufacturing/doctype/production_plan/production_plan.py
@@ -47,7 +47,7 @@ 'sales_order': data.name, 'sales_order_date': data.transaction_date, 'customer': data.customer, - 'grand_total': data.grand_total + 'grand_total': data.base_grand_total }) def get_pending_material_requests(self):