fix: set conversion factor while creating RFQ from Opportunity

This commit is contained in:
Rucha Mahabal 2020-09-02 11:52:59 +05:30
parent efd1ac5840
commit d2881ba4dd

View File

@ -267,6 +267,12 @@ def make_quotation(source_name, target_doc=None):
@frappe.whitelist()
def make_request_for_quotation(source_name, target_doc=None):
def set_missing_values(source, target):
rfq = frappe.get_doc(target)
for item in rfq.items:
# opportunity item is not multi-uom
item.conversion_factor = 1.0
doclist = get_mapped_doc("Opportunity", source_name, {
"Opportunity": {
"doctype": "Request for Quotation"
@ -279,7 +285,7 @@ def make_request_for_quotation(source_name, target_doc=None):
["uom", "uom"]
]
}
}, target_doc)
}, target_doc, set_missing_values)
return doclist