diff options
Diffstat (limited to 'fixco_custom/models/account_move_reversal.py')
| -rw-r--r-- | fixco_custom/models/account_move_reversal.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fixco_custom/models/account_move_reversal.py b/fixco_custom/models/account_move_reversal.py index c3cc5cf..128809f 100644 --- a/fixco_custom/models/account_move_reversal.py +++ b/fixco_custom/models/account_move_reversal.py @@ -6,6 +6,8 @@ from odoo.exceptions import UserError class AccountMoveReversal(models.TransientModel): _inherit = 'account.move.reversal' + + picking_id = fields.Many2one('stock.picking', string='Picking') def reverse_moves(self): self.ensure_one() |
