diff options
| author | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
|---|---|---|
| committer | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
| commit | 3751379f1e9a4c215fb6eb898b4ccc67659b9ace (patch) | |
| tree | a44932296ef4a9b71d5f010906253d8c53727726 /addons/point_of_sale/models/account_bank_statement.py | |
| parent | 0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff) | |
initial commit 2
Diffstat (limited to 'addons/point_of_sale/models/account_bank_statement.py')
| -rw-r--r-- | addons/point_of_sale/models/account_bank_statement.py | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/addons/point_of_sale/models/account_bank_statement.py b/addons/point_of_sale/models/account_bank_statement.py new file mode 100644 index 00000000..d32d756c --- /dev/null +++ b/addons/point_of_sale/models/account_bank_statement.py @@ -0,0 +1,30 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. +# Copyright (C) 2004-2008 PC Solutions (<http://pcsol.be>). All Rights Reserved +from odoo import fields, models, api, _ +from odoo.exceptions import UserError + + +class AccountBankStatement(models.Model): + _inherit = 'account.bank.statement' + + pos_session_id = fields.Many2one('pos.session', string="Session", copy=False) + account_id = fields.Many2one('account.account', related='journal_id.default_account_id', readonly=True) + + def button_validate_or_action(self): + # OVERRIDE to check the consistency of the statement's state regarding the session's state. + for statement in self: + if statement.pos_session_id.state in ('opened', 'closing_control') and statement.state == 'open': + raise UserError(_("You can't validate a bank statement that is used in an opened Session of a Point of Sale.")) + return super(AccountBankStatement, self).button_validate_or_action() + + def unlink(self): + for bs in self: + if bs.pos_session_id: + raise UserError(_("You cannot delete a bank statement linked to Point of Sale session.")) + return super( AccountBankStatement, self).unlink() + +class AccountBankStatementLine(models.Model): + _inherit = 'account.bank.statement.line' + + pos_statement_id = fields.Many2one('pos.order', string="POS statement", ondelete='cascade') |
