mirror of
https://github.com/OCA/contract.git
synced 2025-02-13 17:57:24 +02:00
12 lines
230 B
Python
12 lines
230 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from openerp import models, fields
|
|
|
|
|
|
class AccountInvoice(models.Model):
|
|
_inherit = 'account.invoice'
|
|
|
|
contract_id = fields.Many2one(
|
|
'account.analytic.account',
|
|
string='Contract')
|