clinic/netforce_clinic/models/account_payment_line.py

14 lines
371 B
Python
Raw Normal View History

2015-02-04 08:51:14 +00:00
import time
from netforce.model import Model, fields, get_model
class AccountPaymentLine(Model):
_inherit="account.payment.line"
_fields={
'ar_credit_id': fields.Many2One("account.account","Account Credit"), # no long use
"ar_debit_id": fields.Many2One("account.account","Account Debit"), # no long use
}
AccountPaymentLine.register()