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

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