12 lines
242 B
Python
Raw Normal View History

2019-11-12 16:16:14 +05:00
from odoo import fields, models
class SaleOrder(models.Model):
_inherit = 'sale.order'
contract_id = fields.Many2one(
'res.partner.contract',
string='Contract',
help='Contract, assigned to this order'
)