Odoo v18.0 has new view on inovice form.
invoice_currency_rate field is readonly=True.
When i make it readonly=False and change the rate and save, the value recompute.
I want to set the value and save it as is.
But insertation process runs precompute attiributes.
account move py:
invoice_currency_rate = fields.Float(
string='Currency Rate', compute='_compute_invoice_currency_rate', store=True, precompute=True, copy=False, digits=0, help="Currency rate from company currency to document currency.",
)
Is it possible to change this?
Any ideas?
Thank you very much Rakesh.