We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 18e29de commit 65a80cfCopy full SHA for 65a80cf
1 file changed
erpnext/public/js/utils/party.js
@@ -17,7 +17,7 @@ erpnext.utils.get_party_details = function (frm, method, args, callback) {
17
(frm.doc.party_name && ["Quotation", "Opportunity"].includes(frm.doc.doctype))
18
) {
19
let party_type = "Customer";
20
- if (frm.doc.quotation_to && ["Lead", "Prospect"].includes(frm.doc.quotation_to)) {
+ if (frm.doc.quotation_to && ["Lead", "Prospect", "CRM Deal"].includes(frm.doc.quotation_to)) {
21
party_type = frm.doc.quotation_to;
22
}
23
0 commit comments