You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I propose the creation of a module that improves the usability of account move reversal:
add a to_be_reversed flag on account.move (we had that in the past in the account_reversal OCA module)
this flag is set to False when a reversal is done (best way to do it to be investigated, it could be on write of the reversed_entry_id field of the reversing entry)
add a "To Be Reversed" search filter (we had that in the past in the account_reversal OCA module)
show the reversal_move_id field in the view as Reversal Entry (it is a o2m, but in practice it is a one2one, and the computed m2o to be displayed could be called reversal_id for compatibility with the old OCA module)
We could then improve some OCA modules that generate entries to be reversed to set this flag (for instance, in OCA/account-closing).
The text was updated successfully, but these errors were encountered:
This commit adds the `reversal_id` field in order to improve
the UX of the move reversal functionality. The field has been
added to the form view close to the `reversed_entry_id` field
already present in the view.
This commit also introduces a constraint preventing the user
to flag a move as to be reversed when a non cancelled reversal
move has already been created. This allows simplifying the domain
used on the `to_be_reversed` filter.
Finally, it also convert the deprecated `SavepointCase` test
into a `TransactionCase` one.
Fixes: OCA#1761
There hasn't been any activity on this issue in the past 6 months, so it has been marked as stale and it will be closed automatically if no further activity occurs in the next 30 days.
If you want this issue to never become stale, please ask a PSC member to apply the "no stale" label.
I propose the creation of a module that improves the usability of account move reversal:
to_be_reversed
flag on account.move (we had that in the past in theaccount_reversal
OCA module)reversed_entry_id
field of the reversing entry)account_reversal
OCA module)reversal_move_id
field in the view asReversal Entry
(it is a o2m, but in practice it is a one2one, and the computed m2o to be displayed could be calledreversal_id
for compatibility with the old OCA module)We could then improve some OCA modules that generate entries to be reversed to set this flag (for instance, in OCA/account-closing).
The text was updated successfully, but these errors were encountered: