769eafb483
Flectra is Forked from Odoo v11 commit : (6135e82d73
)
23 lines
933 B
Python
23 lines
933 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import models, fields
|
|
|
|
|
|
class ProductPackaging(models.Model):
|
|
_inherit = 'product.packaging'
|
|
|
|
height = fields.Integer('Height')
|
|
width = fields.Integer('Width')
|
|
length = fields.Integer('Length')
|
|
max_weight = fields.Float('Max Weight', help='Maximum weight shippable in this packaging')
|
|
shipper_package_code = fields.Char('Package Code')
|
|
package_carrier_type = fields.Selection([('none', 'No carrier integration')], string='Carrier', default='none')
|
|
|
|
_sql_constraints = [
|
|
('positive_height', 'CHECK(height>=0)', 'Height must be positive'),
|
|
('positive_width', 'CHECK(width>=0)', 'Width must be positive'),
|
|
('positive_length', 'CHECK(length>=0)', 'Length must be positive'),
|
|
('positive_max_weight', 'CHECK(max_weight>=0.0)', 'Max Weight must be positive'),
|
|
]
|