fix: not able to submit stock entry with 350 items (#27523)

This commit is contained in:
rohitwaghchaure 2021-09-15 20:42:47 +05:30 committed by GitHub
parent 70c203d19e
commit e6a1ad8016
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -407,7 +407,8 @@ class update_entries_after(object):
return return
# Get dynamic incoming/outgoing rate # Get dynamic incoming/outgoing rate
self.get_dynamic_incoming_outgoing_rate(sle) if not self.args.get("sle_id"):
self.get_dynamic_incoming_outgoing_rate(sle)
if sle.serial_no: if sle.serial_no:
self.get_serialized_values(sle) self.get_serialized_values(sle)
@ -447,7 +448,8 @@ class update_entries_after(object):
sle.doctype="Stock Ledger Entry" sle.doctype="Stock Ledger Entry"
frappe.get_doc(sle).db_update() frappe.get_doc(sle).db_update()
self.update_outgoing_rate_on_transaction(sle) if not self.args.get("sle_id"):
self.update_outgoing_rate_on_transaction(sle)
def validate_negative_stock(self, sle): def validate_negative_stock(self, sle):
""" """