mirror of
https://gitlab.com/hibou-io/hibou-odoo/suite.git
synced 2025-01-20 12:37:31 +02:00
8 lines
245 B
Python
8 lines
245 B
Python
from odoo import fields, models
|
|
|
|
|
|
class PartnerShippingAccount(models.Model):
|
|
_inherit = 'partner.shipping.account'
|
|
|
|
delivery_type = fields.Selection(selection_add=[('purolator', 'Purolator')], ondelete={'purolator': 'set default'})
|