mirror of
https://github.com/OCA/bank-payment.git
synced 2025-02-02 10:37:31 +02:00
11 lines
313 B
Python
11 lines
313 B
Python
# -*- coding: utf-8 -*-
|
|
from openerp import models, fields
|
|
|
|
|
|
class PaymentLine(models.Model):
|
|
_inherit = 'payment.line'
|
|
|
|
# The original string is "Destination Bank Account"...
|
|
# but in direct debit this field is the *Source* Bank Account !
|
|
bank_id = fields.Many2one(string='Partner Bank Account')
|