Skip to content
Snippets Groups Projects
Unverified Commit 07cbde54 authored by Olivier Dony's avatar Olivier Dony
Browse files

[FIX] account_asset: typos in field names (swapped)

parent 8b1cd809
Branches
Tags
No related merge requests found
......@@ -28,8 +28,8 @@ class AccountInvoiceLine(models.Model):
_inherit = 'account.invoice.line'
asset_category_id = fields.Many2one('account.asset.category', string='Asset Category')
asset_start_date = fields.Date(string='Asset End Date', compute='_get_asset_date', readonly=True, store=True)
asset_end_date = fields.Date(string='Asset Start Date', compute='_get_asset_date', readonly=True, store=True)
asset_start_date = fields.Date(string='Asset Start Date', compute='_get_asset_date', readonly=True, store=True)
asset_end_date = fields.Date(string='Asset End Date', compute='_get_asset_date', readonly=True, store=True)
asset_mrr = fields.Float(string='Monthly Recurring Revenue', compute='_get_asset_date', readonly=True, digits=dp.get_precision('Account'), store=True)
@api.one
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment