Fix operating CRM monetary currency
This commit is contained in:
parent
a11795f9da
commit
61f1465d81
@ -16,10 +16,14 @@ class CrmLead(models.Model):
|
|||||||
tracking=True,
|
tracking=True,
|
||||||
)
|
)
|
||||||
mcs_expected_monthly_revenue = fields.Monetary(
|
mcs_expected_monthly_revenue = fields.Monetary(
|
||||||
string="Expected Monthly Revenue", tracking=True
|
string="Expected Monthly Revenue",
|
||||||
|
currency_field="company_currency",
|
||||||
|
tracking=True,
|
||||||
)
|
)
|
||||||
mcs_one_time_project_value = fields.Monetary(
|
mcs_one_time_project_value = fields.Monetary(
|
||||||
string="One-Time Project Value", tracking=True
|
string="One-Time Project Value",
|
||||||
|
currency_field="company_currency",
|
||||||
|
tracking=True,
|
||||||
)
|
)
|
||||||
mcs_proposal_sent_date = fields.Date(string="Proposal Sent Date", tracking=True)
|
mcs_proposal_sent_date = fields.Date(string="Proposal Sent Date", tracking=True)
|
||||||
mcs_last_contact_date = fields.Date(string="Last Contact Date", tracking=True)
|
mcs_last_contact_date = fields.Date(string="Last Contact Date", tracking=True)
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user