mirror of
https://github.com/OCA/bank-payment.git
synced 2025-02-02 10:37:31 +02:00
69 lines
2.8 KiB
Python
69 lines
2.8 KiB
Python
# -*- coding: utf-8 -*-
|
|
##############################################################################
|
|
#
|
|
# Copyright (C) 2013 Therp BV (<http://therp.nl>).
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU Affero General Public License as
|
|
# published by the Free Software Foundation, either version 3 of the
|
|
# License, or (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU Affero General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
##############################################################################
|
|
|
|
from openerp.osv import orm, fields
|
|
|
|
|
|
class ResPartner(orm.Model):
|
|
_inherit = 'res.partner'
|
|
|
|
_columns = {
|
|
'property_account_payable_bank_id': fields.property(
|
|
'account.account',
|
|
type='many2one',
|
|
relation='account.account',
|
|
string='Default bank credit account',
|
|
help=('Optional default journal account on bank statements for '
|
|
'credits from this partner. Overrides the default credit '
|
|
'account.'),
|
|
domain=[('type', '!=', 'view')]),
|
|
'property_account_receivable_bank_id': fields.property(
|
|
'account.account',
|
|
type='many2one',
|
|
relation='account.account',
|
|
string='Default bank debit account',
|
|
help=('Optional default journal account on bank statements for '
|
|
'debits from this partner. Overrides the default debit '
|
|
'account.'),
|
|
domain=[('type', '!=', 'view')]),
|
|
}
|
|
|
|
def def_journal_account_bank_decr(
|
|
self, cr, uid, ids, context=None):
|
|
if not ids:
|
|
return {}
|
|
res = super(ResPartner, self).def_journal_account_bank_decr(
|
|
cr, uid, ids, context=context)
|
|
for partner in self.browse(cr, uid, ids, context=context):
|
|
if partner.property_account_payable_bank_id:
|
|
res[partner.id] = partner.property_account_payable_bank_id.id
|
|
return res
|
|
|
|
def def_journal_account_bank_incr(
|
|
self, cr, uid, ids, context=None):
|
|
if not ids:
|
|
return {}
|
|
res = super(ResPartner, self).def_journal_account_bank_incr(
|
|
cr, uid, ids, context=context)
|
|
for partner in self.browse(cr, uid, ids, context=context):
|
|
if partner.property_account_receivable_bank_id:
|
|
res[partner.id] = partner.property_account_receivable_bank_id.id
|
|
return res
|