[MIG] beta migration of account_usability

This commit is contained in:
Alexis de Lattre
2020-12-07 23:48:29 +01:00
parent d72872eb90
commit 17549ca457
36 changed files with 1110 additions and 812 deletions

View File

@@ -1,4 +1,4 @@
# Copyright 2018-2019 Akretion France (https://akretion.com/)
# Copyright 2018-2020 Akretion France (https://akretion.com/)
# @author: Alexis de Lattre <alexis.delattre@akretion.com>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
@@ -16,9 +16,7 @@ class AccountMoveReversal(models.TransientModel):
self._context.get('active_model') == 'account.move' and
self._context.get('active_id')):
move = self.env['account.move'].browse(self._context['active_id'])
date_dt = fields.Date.from_string(move.date) +\
relativedelta(days=1)
date = fields.Date.to_string(date_dt)
return date
date_dt = move.date + relativedelta(days=1)
return date_dt
date = fields.Date(default=_default_date)