8 lines
189 B
Python
8 lines
189 B
Python
from odoo import fields, models
|
|
|
|
|
|
class PackageType(models.Model):
|
|
_inherit = "stock.package.type"
|
|
|
|
package_carrier_type = fields.Selection([('fusion_canada_post', 'Canada Post')])
|