7 lines
181 B
Python
Executable File
7 lines
181 B
Python
Executable File
from odoo import fields, models
|
|
|
|
|
|
class PackageType(models.Model):
|
|
_inherit = "stock.package.type"
|
|
|
|
package_carrier_type = fields.Selection([('canada_post', 'Canada Post')]) |