Stepan Savelyev 299e8f7c3e [STYLE] black
2019-12-17 09:53:47 +05:00

12 lines
243 B
Python

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",
)