fix: resetting lost reason in opportunity and quotation (#22378)
This commit is contained in:
parent
be4fc1a78e
commit
71da90034d
@ -96,6 +96,7 @@ frappe.ui.form.on("Opportunity", {
|
|||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
frm.add_custom_button(__("Reopen"), function() {
|
frm.add_custom_button(__("Reopen"), function() {
|
||||||
|
frm.set_value("lost_reasons",[])
|
||||||
frm.set_value("status", "Open");
|
frm.set_value("status", "Open");
|
||||||
frm.save();
|
frm.save();
|
||||||
});
|
});
|
||||||
|
@ -99,6 +99,8 @@ class Quotation(SellingController):
|
|||||||
self.update_lead()
|
self.update_lead()
|
||||||
|
|
||||||
def on_cancel(self):
|
def on_cancel(self):
|
||||||
|
if self.lost_reasons:
|
||||||
|
self.lost_reasons = []
|
||||||
super(Quotation, self).on_cancel()
|
super(Quotation, self).on_cancel()
|
||||||
|
|
||||||
#update enquiry status
|
#update enquiry status
|
||||||
|
Loading…
Reference in New Issue
Block a user