summaryrefslogtreecommitdiff
path: root/fixco_custom/models/sale.py
blob: b266d6a4fb86c6010bca98099480261e3760844d (plain)
1
2
3
4
5
6
7
8
from odoo import api, fields, models, _
from odoo.exceptions import UserError


class SaleOrder(models.Model):
    _inherit = "sale.order"

    carrier_id = fields.Many2one('delivery.carrier', string='Shipping Method')