Missing data from quotation PDFs

Thanks. Ok will do.

I managed to temporarily workaround the issue by creating two new hidden fields in quotation: “customer” and “lead”. I wrote a custom script to duplicate the value of “party_name” field whenever a new customer/lead was selected.

Custom Script:

frappe.ui.form.on(“Quotation”, {party_name: function(frm) {
if(frm.doc.quotation_to == “Customer”){
frm.doc.customer = frm.doc.party_name;
refresh_field(‘customer’);
frm.doc.lead = “”;
refresh_field(‘lead’);}
else if(frm.doc.quotation_to == “Lead”){
frm.doc.lead = frm.doc.party_name;
refresh_field(‘lead’);
frm.doc.customer = “”;
refresh_field(‘customer’);}
}
});

I am facing this issue as well after updating 3 days back! Old quotations are showing customer information on print format without issues However in new quotations the customer information is not showing on print format.

hi guys,

can anyone tell me exact step to replicate this issue? im new and want to try this replicating thing