Update accounts_controller.py

Updating Bin quantity based on doctype to optimize running efficiency.
This commit is contained in:
Andy Zhu 2020-10-27 14:57:59 +13:00 committed by GitHub
parent 1062d7eee0
commit b44af32628
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1238,10 +1238,15 @@ def validate_and_delete_children(parent, data):
d.delete()
from erpnext.stock.stock_balance import update_bin_qty, get_reserved_qty, get_ordered_qty
update_bin_qty(d.item_code, d.warehouse, {
"reserved_qty": get_reserved_qty(d.item_code, d.warehouse),
"ordered_qty": get_ordered_qty(d.item_code, d.warehouse)
})
# updating both will be time consuming, update it based on the doctype. reserved qty if sales order, otherwise ordered qty
if parent.doctype == "Sales Order":
update_bin_qty(d.item_code, d.warehouse, {
"reserved_qty": get_reserved_qty(d.item_code, d.warehouse)
})
else:
update_bin_qty(d.item_code, d.warehouse, {
"ordered_qty": get_ordered_qty(d.item_code, d.warehouse)
})
@frappe.whitelist()
def update_child_qty_rate(parent_doctype, trans_items, parent_doctype_name, child_docname="items"):