2018-01-16 06:58:15 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
2018-01-16 11:34:37 +01:00
|
|
|
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
|
2018-01-16 06:58:15 +01:00
|
|
|
# Copyright (C) 2004-2008 PC Solutions (<http://pcsol.be>). All Rights Reserved
|
2018-01-16 11:34:37 +01:00
|
|
|
from flectra import fields, models
|
2018-01-16 06:58:15 +01:00
|
|
|
|
|
|
|
|
|
|
|
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_debit_account_id', readonly=True)
|
|
|
|
|
|
|
|
|
|
|
|
class AccountBankStatementLine(models.Model):
|
|
|
|
_inherit = 'account.bank.statement.line'
|
|
|
|
|
|
|
|
pos_statement_id = fields.Many2one('pos.order', string="POS statement", ondelete='cascade')
|