14 lines
371 B
Python
14 lines
371 B
Python
|
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()
|