Hello,
I would like to customize with an app the Quotation statuses.
After some search I understand the main file to alter status is erpnext/erpnext/controllers/status_updater.py
with the status_map variable.
My idea is to override the status_map to add a new status in Quotation part :
...
"Quotation": [
["Draft", None],
["Open", "eval:self.docstatus==1"],
["Lost", "eval:self.status=='Lost'"],
["Won", "eval:self.status=='Won'"],
["Ordered", "has_sales_order"],
["Cancelled", "eval:self.docstatus==2"],
],
....
Could it be possible to override this status_updater.py or only the status_map in custom frappe app ?
Regards.