fix: timeout error in the Purchase Invoice

This commit is contained in:
Rohit Waghchaure 2023-01-09 14:53:54 +05:30
parent 525f054c45
commit 7249657d15

View File

@ -274,6 +274,11 @@ class BuyingController(SubcontractingController):
if self.doctype not in ("Purchase Receipt", "Purchase Invoice", "Purchase Order"):
return
if (
self.doctype == "Purchase Invoice" and not self.update_stock and not self.is_internal_transfer()
):
return
ref_doctype_map = {
"Purchase Order": "Sales Order Item",
"Purchase Receipt": "Delivery Note Item",