mirror of
https://github.com/OCA/stock-logistics-warehouse.git
synced 2025-01-21 14:27:28 +02:00
12 lines
367 B
Python
12 lines
367 B
Python
from odoo import fields, models
|
|
|
|
|
|
class TestProductQtyByPackagingMixin(models.Model):
|
|
_name = "test.product.qty_by_packaging.mixin"
|
|
_description = "Test ProductQtyByPackagingMixin"
|
|
_inherit = ["product.qty_by_packaging.mixin"]
|
|
_qty_by_pkg__qty_field_name = "quantity"
|
|
|
|
product_id = fields.Many2one("product.product")
|
|
quantity = fields.Float()
|