You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

14 lines
434 B

# Copyright 2020 ForgeFlow, S.L.
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
from odoo import fields, models
class AccountJournal(models.Model):
_inherit = 'account.journal'
pos_control_ending_balance = fields.Boolean(
'Control ending balance in POS')
pos_move_reason_id = fields.Many2one(
string='Default reason POS adjustments',
comodel_name='pos.move.reason',
)