added document type in args
This commit is contained in:
parent
5738dd473c
commit
c97becbd15
@ -138,6 +138,10 @@ class AccountsController(TransactionBase):
|
|||||||
for fieldname in self.meta.get_valid_columns():
|
for fieldname in self.meta.get_valid_columns():
|
||||||
parent_dict[fieldname] = self.get(fieldname)
|
parent_dict[fieldname] = self.get(fieldname)
|
||||||
|
|
||||||
|
if self.doctype in ["Quotation", "Sales Order"]:
|
||||||
|
document_type = "Quotation Item" if self.doctype == "Quotation" else "Sales Order Item"
|
||||||
|
parent_dict.update({"document_type": document_type})
|
||||||
|
|
||||||
for item in self.get("items"):
|
for item in self.get("items"):
|
||||||
if item.get("item_code"):
|
if item.get("item_code"):
|
||||||
args = parent_dict.copy()
|
args = parent_dict.copy()
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user