Files
Odoo-Modules/delivery_canadapost/models/product_packaging.py
gsinghpal f81e0cd918 changes
2026-03-09 23:45:00 -04:00

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')])