mirror of
https://github.com/OCA/stock-logistics-warehouse.git
synced 2025-01-21 14:27:28 +02:00
[ADD] stock_secondary_unit: New module for getting stock in a secondary unit
This commit is contained in:
87
stock_secondary_unit/README.rst
Normal file
87
stock_secondary_unit/README.rst
Normal file
@@ -0,0 +1,87 @@
|
||||
====================
|
||||
Stock Secondary Unit
|
||||
====================
|
||||
|
||||
.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
!! This file is generated by oca-gen-addon-readme !!
|
||||
!! changes will be overwritten. !!
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
|
||||
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
||||
:target: https://odoo-community.org/page/development-status
|
||||
:alt: Beta
|
||||
.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
|
||||
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
||||
:alt: License: AGPL-3
|
||||
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fstock--logistics--warehouse-lightgray.png?logo=github
|
||||
:target: https://github.com/OCA/stock-logistics-warehouse/tree/11.0/stock_secondary_unit
|
||||
:alt: OCA/stock-logistics-warehouse
|
||||
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
|
||||
:target: https://translation.odoo-community.org/projects/stock-logistics-warehouse-11-0/stock-logistics-warehouse-11-0-stock_secondary_unit
|
||||
:alt: Translate me on Weblate
|
||||
.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png
|
||||
:target: https://runbot.odoo-community.org/runbot/153/11.0
|
||||
:alt: Try me on Runbot
|
||||
|
||||
|badge1| |badge2| |badge3| |badge4| |badge5|
|
||||
|
||||
This module extends the functionality of stock module to allow define
|
||||
other units with their conversion factor.
|
||||
|
||||
**Table of contents**
|
||||
|
||||
.. contents::
|
||||
:local:
|
||||
|
||||
Usage
|
||||
=====
|
||||
|
||||
To use this module you need to:
|
||||
|
||||
#. Go to a *Product > General Information tab*.
|
||||
#. Create any record in "Secondary unit of measure".
|
||||
#. Set the conversion factor.
|
||||
#. Go to *Inventory tab* and set a second unit of measure.
|
||||
#. Push button 'Quantity on hand' and set quantities in stock for this product.
|
||||
#. Go to product list and you can see the secondary unit value.
|
||||
|
||||
Bug Tracker
|
||||
===========
|
||||
|
||||
Bugs are tracked on `GitHub Issues <https://github.com/OCA/stock-logistics-warehouse/issues>`_.
|
||||
In case of trouble, please check there if your issue has already been reported.
|
||||
If you spotted it first, help us smashing it by providing a detailed and welcomed
|
||||
`feedback <https://github.com/OCA/stock-logistics-warehouse/issues/new?body=module:%20stock_secondary_unit%0Aversion:%2011.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
|
||||
|
||||
Do not contact contributors directly about support or help with technical issues.
|
||||
|
||||
Credits
|
||||
=======
|
||||
|
||||
Authors
|
||||
~~~~~~~
|
||||
|
||||
* Tecnativa
|
||||
|
||||
Contributors
|
||||
~~~~~~~~~~~~
|
||||
|
||||
* Carlos Dauden <carlos.dauden@tecnativa.com>
|
||||
* Sergio Teruel <sergio.teruel@tecnativa.com>
|
||||
|
||||
Maintainers
|
||||
~~~~~~~~~~~
|
||||
|
||||
This module is maintained by the OCA.
|
||||
|
||||
.. image:: https://odoo-community.org/logo.png
|
||||
:alt: Odoo Community Association
|
||||
:target: https://odoo-community.org
|
||||
|
||||
OCA, or the Odoo Community Association, is a nonprofit organization whose
|
||||
mission is to support the collaborative development of Odoo features and
|
||||
promote its widespread use.
|
||||
|
||||
This module is part of the `OCA/stock-logistics-warehouse <https://github.com/OCA/stock-logistics-warehouse/tree/11.0/stock_secondary_unit>`_ project on GitHub.
|
||||
|
||||
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
|
||||
2
stock_secondary_unit/__init__.py
Normal file
2
stock_secondary_unit/__init__.py
Normal file
@@ -0,0 +1,2 @@
|
||||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
||||
from . import models
|
||||
24
stock_secondary_unit/__manifest__.py
Normal file
24
stock_secondary_unit/__manifest__.py
Normal file
@@ -0,0 +1,24 @@
|
||||
# Copyright 2018 Tecnativa - Sergio Teruel
|
||||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
||||
{
|
||||
'name': 'Stock Secondary Unit',
|
||||
'summary': 'Get product quantities in a secondary unit',
|
||||
'version': '11.0.1.0.0',
|
||||
'development_status': 'Beta',
|
||||
'category': 'stock',
|
||||
'website': 'https://github.com/OCA/stock-logistics-warehouse',
|
||||
'author': 'Tecnativa, Odoo Community Association (OCA)',
|
||||
'license': 'AGPL-3',
|
||||
'application': False,
|
||||
'installable': True,
|
||||
'depends': [
|
||||
'sale_stock',
|
||||
'product_secondary_unit',
|
||||
],
|
||||
'data': [
|
||||
'views/product_views.xml',
|
||||
'views/stock_move_views.xml',
|
||||
'views/stock_picking_views.xml',
|
||||
'report/report_deliveryslip.xml',
|
||||
],
|
||||
}
|
||||
117
stock_secondary_unit/i18n/es.po
Normal file
117
stock_secondary_unit/i18n/es.po
Normal file
@@ -0,0 +1,117 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_secondary_unit
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-09-11 06:27+0000\n"
|
||||
"PO-Revision-Date: 2018-09-11 08:28+0200\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: es_ES\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Poedit 2.0.6\n"
|
||||
|
||||
#. module: stock_secondary_unit
|
||||
#: model:ir.ui.view,arch_db:stock_secondary_unit.report_delivery_document
|
||||
msgid "<strong>Secondary Qty</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_secondary_unit
|
||||
#: model:ir.model.fields,field_description:stock_secondary_unit.field_stock_product_secondary_unit_display_name
|
||||
#: model:ir.model.fields,field_description:stock_secondary_unit.field_stock_secondary_unit_mixin_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Mostrar Nombre"
|
||||
|
||||
#. module: stock_secondary_unit
|
||||
#: model:ir.model.fields,field_description:stock_secondary_unit.field_stock_product_secondary_unit_id
|
||||
#: model:ir.model.fields,field_description:stock_secondary_unit.field_stock_secondary_unit_mixin_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: stock_secondary_unit
|
||||
#: model:ir.model.fields,field_description:stock_secondary_unit.field_stock_product_secondary_unit___last_update
|
||||
#: model:ir.model.fields,field_description:stock_secondary_unit.field_stock_secondary_unit_mixin___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación en"
|
||||
|
||||
#. module: stock_secondary_unit
|
||||
#: model:ir.model,name:stock_secondary_unit.model_stock_move_line
|
||||
msgid "Packing Operation"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_secondary_unit
|
||||
#: model:ir.model,name:stock_secondary_unit.model_procurement_rule
|
||||
msgid "Procurement Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_secondary_unit
|
||||
#: model:ir.model,name:stock_secondary_unit.model_product_product
|
||||
msgid "Product"
|
||||
msgstr "Producto"
|
||||
|
||||
#. module: stock_secondary_unit
|
||||
#: model:ir.model,name:stock_secondary_unit.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr "Plantilla de producto"
|
||||
|
||||
#. module: stock_secondary_unit
|
||||
#: model:ir.model.fields,field_description:stock_secondary_unit.field_product_product_secondary_unit_qty_available
|
||||
#: model:ir.model.fields,field_description:stock_secondary_unit.field_product_template_secondary_unit_qty_available
|
||||
#: model:ir.model.fields,field_description:stock_secondary_unit.field_stock_product_secondary_unit_secondary_unit_qty_available
|
||||
msgid "Quantity On Hand (2Unit)"
|
||||
msgstr "Cantidad a mano (2Ud.)"
|
||||
|
||||
#. module: stock_secondary_unit
|
||||
#: model:ir.model.fields,field_description:stock_secondary_unit.field_stock_move_line_secondary_uom_id
|
||||
#: model:ir.model.fields,field_description:stock_secondary_unit.field_stock_move_secondary_uom_id
|
||||
#: model:ir.model.fields,field_description:stock_secondary_unit.field_stock_secondary_unit_mixin_secondary_uom_id
|
||||
#, fuzzy
|
||||
msgid "Second unit"
|
||||
msgstr "Unidad Secundaria"
|
||||
|
||||
#. module: stock_secondary_unit
|
||||
#: model:ir.model.fields,field_description:stock_secondary_unit.field_product_product_stock_secondary_uom_id
|
||||
#: model:ir.model.fields,field_description:stock_secondary_unit.field_product_template_stock_secondary_uom_id
|
||||
msgid "Second unit for inventory"
|
||||
msgstr "Segunda unidad de medida para inventario"
|
||||
|
||||
#. module: stock_secondary_unit
|
||||
#: model:ir.model.fields,field_description:stock_secondary_unit.field_stock_move_line_secondary_uom_qty
|
||||
#: model:ir.model.fields,field_description:stock_secondary_unit.field_stock_move_secondary_uom_qty
|
||||
#: model:ir.model.fields,field_description:stock_secondary_unit.field_stock_secondary_unit_mixin_secondary_uom_qty
|
||||
#, fuzzy
|
||||
msgid "Secondary Qty"
|
||||
msgstr "Unidad Secundaria"
|
||||
|
||||
#. module: stock_secondary_unit
|
||||
#: model:ir.ui.view,arch_db:stock_secondary_unit.view_template_property_form
|
||||
msgid "Secondary unit"
|
||||
msgstr "Unidad Secundaria"
|
||||
|
||||
#. module: stock_secondary_unit
|
||||
#: model:ir.model,name:stock_secondary_unit.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_secondary_unit
|
||||
#: model:ir.model,name:stock_secondary_unit.model_stock_product_secondary_unit
|
||||
msgid "stock.product.secondary.unit"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_secondary_unit
|
||||
#: model:ir.model,name:stock_secondary_unit.model_stock_secondary_unit_mixin
|
||||
#, fuzzy
|
||||
msgid "stock.secondary.unit.mixin"
|
||||
msgstr "Unidad Secundaria"
|
||||
|
||||
#~ msgid "On Hand (2unit)"
|
||||
#~ msgstr "A mano (2Ud.)"
|
||||
|
||||
#~ msgid "Second Unit Quantity On Hand"
|
||||
#~ msgstr "Segunda unidad de medida por defecto"
|
||||
105
stock_secondary_unit/i18n/stock_secondary_unit.pot
Normal file
105
stock_secondary_unit/i18n/stock_secondary_unit.pot
Normal file
@@ -0,0 +1,105 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_secondary_unit
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"Last-Translator: <>\n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: stock_secondary_unit
|
||||
#: model:ir.ui.view,arch_db:stock_secondary_unit.report_delivery_document
|
||||
msgid "<strong>Secondary Qty</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_secondary_unit
|
||||
#: model:ir.model.fields,field_description:stock_secondary_unit.field_stock_product_secondary_unit_display_name
|
||||
#: model:ir.model.fields,field_description:stock_secondary_unit.field_stock_secondary_unit_mixin_display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_secondary_unit
|
||||
#: model:ir.model.fields,field_description:stock_secondary_unit.field_stock_product_secondary_unit_id
|
||||
#: model:ir.model.fields,field_description:stock_secondary_unit.field_stock_secondary_unit_mixin_id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_secondary_unit
|
||||
#: model:ir.model.fields,field_description:stock_secondary_unit.field_stock_product_secondary_unit___last_update
|
||||
#: model:ir.model.fields,field_description:stock_secondary_unit.field_stock_secondary_unit_mixin___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_secondary_unit
|
||||
#: model:ir.model,name:stock_secondary_unit.model_stock_move_line
|
||||
msgid "Packing Operation"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_secondary_unit
|
||||
#: model:ir.model,name:stock_secondary_unit.model_procurement_rule
|
||||
msgid "Procurement Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_secondary_unit
|
||||
#: model:ir.model,name:stock_secondary_unit.model_product_product
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_secondary_unit
|
||||
#: model:ir.model,name:stock_secondary_unit.model_product_template
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_secondary_unit
|
||||
#: model:ir.model.fields,field_description:stock_secondary_unit.field_product_product_secondary_unit_qty_available
|
||||
#: model:ir.model.fields,field_description:stock_secondary_unit.field_product_template_secondary_unit_qty_available
|
||||
#: model:ir.model.fields,field_description:stock_secondary_unit.field_stock_product_secondary_unit_secondary_unit_qty_available
|
||||
msgid "Quantity On Hand (2Unit)"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_secondary_unit
|
||||
#: model:ir.model.fields,field_description:stock_secondary_unit.field_stock_move_line_secondary_uom_id
|
||||
#: model:ir.model.fields,field_description:stock_secondary_unit.field_stock_move_secondary_uom_id
|
||||
#: model:ir.model.fields,field_description:stock_secondary_unit.field_stock_secondary_unit_mixin_secondary_uom_id
|
||||
msgid "Second unit"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_secondary_unit
|
||||
#: model:ir.model.fields,field_description:stock_secondary_unit.field_product_product_stock_secondary_uom_id
|
||||
#: model:ir.model.fields,field_description:stock_secondary_unit.field_product_template_stock_secondary_uom_id
|
||||
msgid "Second unit for inventory"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_secondary_unit
|
||||
#: model:ir.model.fields,field_description:stock_secondary_unit.field_stock_move_line_secondary_uom_qty
|
||||
#: model:ir.model.fields,field_description:stock_secondary_unit.field_stock_move_secondary_uom_qty
|
||||
#: model:ir.model.fields,field_description:stock_secondary_unit.field_stock_secondary_unit_mixin_secondary_uom_qty
|
||||
msgid "Secondary Qty"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_secondary_unit
|
||||
#: model:ir.ui.view,arch_db:stock_secondary_unit.view_template_property_form
|
||||
msgid "Secondary unit"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_secondary_unit
|
||||
#: model:ir.model,name:stock_secondary_unit.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_secondary_unit
|
||||
#: model:ir.model,name:stock_secondary_unit.model_stock_product_secondary_unit
|
||||
msgid "stock.product.secondary.unit"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_secondary_unit
|
||||
#: model:ir.model,name:stock_secondary_unit.model_stock_secondary_unit_mixin
|
||||
msgid "stock.secondary.unit.mixin"
|
||||
msgstr ""
|
||||
|
||||
4
stock_secondary_unit/models/__init__.py
Normal file
4
stock_secondary_unit/models/__init__.py
Normal file
@@ -0,0 +1,4 @@
|
||||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
||||
from . import procurement_rule
|
||||
from . import product
|
||||
from . import stock_move
|
||||
23
stock_secondary_unit/models/procurement_rule.py
Normal file
23
stock_secondary_unit/models/procurement_rule.py
Normal file
@@ -0,0 +1,23 @@
|
||||
# Copyright 2018 Tecnativa - Sergio Teruel
|
||||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
||||
from odoo import models
|
||||
|
||||
|
||||
class ProcurementRule(models.Model):
|
||||
_inherit = 'procurement.rule'
|
||||
|
||||
def _get_stock_move_values(self, product_id, product_qty, product_uom,
|
||||
location_id, name, origin, values, group_id):
|
||||
res = super(ProcurementRule, self)._get_stock_move_values(
|
||||
product_id, product_qty, product_uom, location_id, name, origin,
|
||||
values, group_id
|
||||
)
|
||||
if values.get('sale_line_id', False):
|
||||
sale_line = self.env['sale.order.line'].browse(
|
||||
values['sale_line_id'])
|
||||
if sale_line.secondary_uom_id:
|
||||
res.update({
|
||||
'secondary_uom_id': sale_line.secondary_uom_id.id,
|
||||
'secondary_uom_qty': sale_line.secondary_uom_qty,
|
||||
})
|
||||
return res
|
||||
45
stock_secondary_unit/models/product.py
Normal file
45
stock_secondary_unit/models/product.py
Normal file
@@ -0,0 +1,45 @@
|
||||
# Copyright 2018 Tecnativa - Sergio Teruel
|
||||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
||||
from odoo import fields, models
|
||||
from odoo.addons import decimal_precision as dp
|
||||
from odoo.tools.float_utils import float_round
|
||||
|
||||
|
||||
class StockProductSecondaryUnit(models.AbstractModel):
|
||||
_name = 'stock.product.secondary.unit'
|
||||
|
||||
secondary_unit_qty_available = fields.Float(
|
||||
string='Quantity On Hand (2Unit)',
|
||||
compute='_compute_secondary_unit_qty_available',
|
||||
digits=dp.get_precision('Product Unit of Measure'),
|
||||
)
|
||||
|
||||
def _compute_secondary_unit_qty_available(self):
|
||||
for product in self.filtered('stock_secondary_uom_id'):
|
||||
qty = product.qty_available / (
|
||||
product.stock_secondary_uom_id.factor or 1.0)
|
||||
product.secondary_unit_qty_available = float_round(
|
||||
qty, precision_rounding=product.uom_id.rounding)
|
||||
|
||||
|
||||
class ProductTemplate(models.Model):
|
||||
_inherit = ['product.template', 'stock.product.secondary.unit']
|
||||
_name = 'product.template'
|
||||
|
||||
stock_secondary_uom_id = fields.Many2one(
|
||||
comodel_name='product.secondary.unit',
|
||||
string='Second unit for inventory',
|
||||
)
|
||||
|
||||
def _compute_quantities(self):
|
||||
super()._compute_quantities()
|
||||
self._compute_secondary_unit_qty_available()
|
||||
|
||||
|
||||
class ProductProduct(models.Model):
|
||||
_inherit = ['product.product', 'stock.product.secondary.unit']
|
||||
_name = 'product.product'
|
||||
|
||||
def _compute_quantities(self):
|
||||
super()._compute_quantities()
|
||||
self._compute_secondary_unit_qty_available()
|
||||
51
stock_secondary_unit/models/stock_move.py
Normal file
51
stock_secondary_unit/models/stock_move.py
Normal file
@@ -0,0 +1,51 @@
|
||||
# Copyright 2018 Tecnativa - Sergio Teruel
|
||||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
||||
from odoo import api, fields, models
|
||||
from odoo.addons import decimal_precision as dp
|
||||
from odoo.tools.float_utils import float_round
|
||||
|
||||
|
||||
class StockSecondaryUnitMixin(models.AbstractModel):
|
||||
_name = 'stock.secondary.unit.mixin'
|
||||
|
||||
secondary_uom_id = fields.Many2one(
|
||||
comodel_name='product.secondary.unit',
|
||||
string='Second unit',
|
||||
)
|
||||
secondary_uom_qty = fields.Float(
|
||||
string='Secondary Qty',
|
||||
digits=dp.get_precision('Product Unit of Measure'),
|
||||
)
|
||||
|
||||
|
||||
class StockMove(models.Model):
|
||||
_inherit = ['stock.move', 'stock.secondary.unit.mixin']
|
||||
_name = 'stock.move'
|
||||
|
||||
def _merge_moves_fields(self):
|
||||
res = super(StockMove, self)._merge_moves_fields()
|
||||
res['secondary_uom_qty'] = self[-1:].secondary_uom_qty
|
||||
return res
|
||||
|
||||
|
||||
class StockMoveLine(models.Model):
|
||||
_inherit = ['stock.move.line', 'stock.secondary.unit.mixin']
|
||||
_name = 'stock.move.line'
|
||||
|
||||
@api.model
|
||||
def create(self, vals):
|
||||
move = self.env['stock.move'].browse(vals['move_id'])
|
||||
if move.secondary_uom_id:
|
||||
uom = self.env['product.uom'].browse(vals['product_uom_id'])
|
||||
factor = move.secondary_uom_id.factor * uom.factor
|
||||
move_line_qty = vals.get(
|
||||
'product_uom_qty', vals.get('qty_done', 0.0))
|
||||
qty = float_round(
|
||||
move_line_qty / (factor or 1.0),
|
||||
precision_rounding=move.secondary_uom_id.uom_id.factor
|
||||
)
|
||||
vals.update({
|
||||
'secondary_uom_qty': qty,
|
||||
'secondary_uom_id': move.secondary_uom_id.id,
|
||||
})
|
||||
return super().create(vals)
|
||||
2
stock_secondary_unit/readme/CONTRIBUTORS.rst
Normal file
2
stock_secondary_unit/readme/CONTRIBUTORS.rst
Normal file
@@ -0,0 +1,2 @@
|
||||
* Carlos Dauden <carlos.dauden@tecnativa.com>
|
||||
* Sergio Teruel <sergio.teruel@tecnativa.com>
|
||||
2
stock_secondary_unit/readme/DESCRIPTION.rst
Normal file
2
stock_secondary_unit/readme/DESCRIPTION.rst
Normal file
@@ -0,0 +1,2 @@
|
||||
This module extends the functionality of stock module to allow define
|
||||
other units with their conversion factor.
|
||||
8
stock_secondary_unit/readme/USAGE.rst
Normal file
8
stock_secondary_unit/readme/USAGE.rst
Normal file
@@ -0,0 +1,8 @@
|
||||
To use this module you need to:
|
||||
|
||||
#. Go to a *Product > General Information tab*.
|
||||
#. Create any record in "Secondary unit of measure".
|
||||
#. Set the conversion factor.
|
||||
#. Go to *Inventory tab* and set a second unit of measure.
|
||||
#. Push button 'Quantity on hand' and set quantities in stock for this product.
|
||||
#. Go to product list and you can see the secondary unit value.
|
||||
27
stock_secondary_unit/report/report_deliveryslip.xml
Executable file
27
stock_secondary_unit/report/report_deliveryslip.xml
Executable file
@@ -0,0 +1,27 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright 2018 Tecnativa - Sergio Teruel
|
||||
License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). -->
|
||||
<odoo>
|
||||
|
||||
<template id="report_delivery_document" inherit_id="stock.report_delivery_document" priority="8">
|
||||
<xpath expr='//table[@t-if="o.state!='done'"]/thead/tr/th' position="after">
|
||||
<th><strong>Secondary Qty</strong></th>
|
||||
</xpath>
|
||||
<xpath expr="//span[@t-field='move.product_id']/.." position="after">
|
||||
<td>
|
||||
<span t-field="move.secondary_uom_qty"/>
|
||||
<span t-field="move.secondary_uom_id.name"/>
|
||||
</td>
|
||||
</xpath>
|
||||
<xpath expr='//table[@t-if="o.move_line_ids and o.state=='done'"]/thead/tr/th' position="after">
|
||||
<th><strong>Secondary Qty</strong></th>
|
||||
</xpath>
|
||||
<xpath expr="//span[@t-field='move_line.product_id']/.." position="after">
|
||||
<td>
|
||||
<span t-field="move_line.secondary_uom_qty"/>
|
||||
<span t-field="move_line.secondary_uom_id"/>
|
||||
</td>
|
||||
</xpath>
|
||||
</template>
|
||||
|
||||
</odoo>
|
||||
BIN
stock_secondary_unit/static/description/icon.png
Normal file
BIN
stock_secondary_unit/static/description/icon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 9.2 KiB |
434
stock_secondary_unit/static/description/index.html
Normal file
434
stock_secondary_unit/static/description/index.html
Normal file
@@ -0,0 +1,434 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<meta name="generator" content="Docutils 0.14: http://docutils.sourceforge.net/" />
|
||||
<title>Stock Secondary Unit</title>
|
||||
<style type="text/css">
|
||||
|
||||
/*
|
||||
:Author: David Goodger (goodger@python.org)
|
||||
:Id: $Id: html4css1.css 7952 2016-07-26 18:15:59Z milde $
|
||||
:Copyright: This stylesheet has been placed in the public domain.
|
||||
|
||||
Default cascading style sheet for the HTML output of Docutils.
|
||||
|
||||
See http://docutils.sf.net/docs/howto/html-stylesheets.html for how to
|
||||
customize this style sheet.
|
||||
*/
|
||||
|
||||
/* used to remove borders from tables and images */
|
||||
.borderless, table.borderless td, table.borderless th {
|
||||
border: 0 }
|
||||
|
||||
table.borderless td, table.borderless th {
|
||||
/* Override padding for "table.docutils td" with "! important".
|
||||
The right padding separates the table cells. */
|
||||
padding: 0 0.5em 0 0 ! important }
|
||||
|
||||
.first {
|
||||
/* Override more specific margin styles with "! important". */
|
||||
margin-top: 0 ! important }
|
||||
|
||||
.last, .with-subtitle {
|
||||
margin-bottom: 0 ! important }
|
||||
|
||||
.hidden {
|
||||
display: none }
|
||||
|
||||
.subscript {
|
||||
vertical-align: sub;
|
||||
font-size: smaller }
|
||||
|
||||
.superscript {
|
||||
vertical-align: super;
|
||||
font-size: smaller }
|
||||
|
||||
a.toc-backref {
|
||||
text-decoration: none ;
|
||||
color: black }
|
||||
|
||||
blockquote.epigraph {
|
||||
margin: 2em 5em ; }
|
||||
|
||||
dl.docutils dd {
|
||||
margin-bottom: 0.5em }
|
||||
|
||||
object[type="image/svg+xml"], object[type="application/x-shockwave-flash"] {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
/* Uncomment (and remove this text!) to get bold-faced definition list terms
|
||||
dl.docutils dt {
|
||||
font-weight: bold }
|
||||
*/
|
||||
|
||||
div.abstract {
|
||||
margin: 2em 5em }
|
||||
|
||||
div.abstract p.topic-title {
|
||||
font-weight: bold ;
|
||||
text-align: center }
|
||||
|
||||
div.admonition, div.attention, div.caution, div.danger, div.error,
|
||||
div.hint, div.important, div.note, div.tip, div.warning {
|
||||
margin: 2em ;
|
||||
border: medium outset ;
|
||||
padding: 1em }
|
||||
|
||||
div.admonition p.admonition-title, div.hint p.admonition-title,
|
||||
div.important p.admonition-title, div.note p.admonition-title,
|
||||
div.tip p.admonition-title {
|
||||
font-weight: bold ;
|
||||
font-family: sans-serif }
|
||||
|
||||
div.attention p.admonition-title, div.caution p.admonition-title,
|
||||
div.danger p.admonition-title, div.error p.admonition-title,
|
||||
div.warning p.admonition-title, .code .error {
|
||||
color: red ;
|
||||
font-weight: bold ;
|
||||
font-family: sans-serif }
|
||||
|
||||
/* Uncomment (and remove this text!) to get reduced vertical space in
|
||||
compound paragraphs.
|
||||
div.compound .compound-first, div.compound .compound-middle {
|
||||
margin-bottom: 0.5em }
|
||||
|
||||
div.compound .compound-last, div.compound .compound-middle {
|
||||
margin-top: 0.5em }
|
||||
*/
|
||||
|
||||
div.dedication {
|
||||
margin: 2em 5em ;
|
||||
text-align: center ;
|
||||
font-style: italic }
|
||||
|
||||
div.dedication p.topic-title {
|
||||
font-weight: bold ;
|
||||
font-style: normal }
|
||||
|
||||
div.figure {
|
||||
margin-left: 2em ;
|
||||
margin-right: 2em }
|
||||
|
||||
div.footer, div.header {
|
||||
clear: both;
|
||||
font-size: smaller }
|
||||
|
||||
div.line-block {
|
||||
display: block ;
|
||||
margin-top: 1em ;
|
||||
margin-bottom: 1em }
|
||||
|
||||
div.line-block div.line-block {
|
||||
margin-top: 0 ;
|
||||
margin-bottom: 0 ;
|
||||
margin-left: 1.5em }
|
||||
|
||||
div.sidebar {
|
||||
margin: 0 0 0.5em 1em ;
|
||||
border: medium outset ;
|
||||
padding: 1em ;
|
||||
background-color: #ffffee ;
|
||||
width: 40% ;
|
||||
float: right ;
|
||||
clear: right }
|
||||
|
||||
div.sidebar p.rubric {
|
||||
font-family: sans-serif ;
|
||||
font-size: medium }
|
||||
|
||||
div.system-messages {
|
||||
margin: 5em }
|
||||
|
||||
div.system-messages h1 {
|
||||
color: red }
|
||||
|
||||
div.system-message {
|
||||
border: medium outset ;
|
||||
padding: 1em }
|
||||
|
||||
div.system-message p.system-message-title {
|
||||
color: red ;
|
||||
font-weight: bold }
|
||||
|
||||
div.topic {
|
||||
margin: 2em }
|
||||
|
||||
h1.section-subtitle, h2.section-subtitle, h3.section-subtitle,
|
||||
h4.section-subtitle, h5.section-subtitle, h6.section-subtitle {
|
||||
margin-top: 0.4em }
|
||||
|
||||
h1.title {
|
||||
text-align: center }
|
||||
|
||||
h2.subtitle {
|
||||
text-align: center }
|
||||
|
||||
hr.docutils {
|
||||
width: 75% }
|
||||
|
||||
img.align-left, .figure.align-left, object.align-left, table.align-left {
|
||||
clear: left ;
|
||||
float: left ;
|
||||
margin-right: 1em }
|
||||
|
||||
img.align-right, .figure.align-right, object.align-right, table.align-right {
|
||||
clear: right ;
|
||||
float: right ;
|
||||
margin-left: 1em }
|
||||
|
||||
img.align-center, .figure.align-center, object.align-center {
|
||||
display: block;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
table.align-center {
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
.align-left {
|
||||
text-align: left }
|
||||
|
||||
.align-center {
|
||||
clear: both ;
|
||||
text-align: center }
|
||||
|
||||
.align-right {
|
||||
text-align: right }
|
||||
|
||||
/* reset inner alignment in figures */
|
||||
div.align-right {
|
||||
text-align: inherit }
|
||||
|
||||
/* div.align-center * { */
|
||||
/* text-align: left } */
|
||||
|
||||
.align-top {
|
||||
vertical-align: top }
|
||||
|
||||
.align-middle {
|
||||
vertical-align: middle }
|
||||
|
||||
.align-bottom {
|
||||
vertical-align: bottom }
|
||||
|
||||
ol.simple, ul.simple {
|
||||
margin-bottom: 1em }
|
||||
|
||||
ol.arabic {
|
||||
list-style: decimal }
|
||||
|
||||
ol.loweralpha {
|
||||
list-style: lower-alpha }
|
||||
|
||||
ol.upperalpha {
|
||||
list-style: upper-alpha }
|
||||
|
||||
ol.lowerroman {
|
||||
list-style: lower-roman }
|
||||
|
||||
ol.upperroman {
|
||||
list-style: upper-roman }
|
||||
|
||||
p.attribution {
|
||||
text-align: right ;
|
||||
margin-left: 50% }
|
||||
|
||||
p.caption {
|
||||
font-style: italic }
|
||||
|
||||
p.credits {
|
||||
font-style: italic ;
|
||||
font-size: smaller }
|
||||
|
||||
p.label {
|
||||
white-space: nowrap }
|
||||
|
||||
p.rubric {
|
||||
font-weight: bold ;
|
||||
font-size: larger ;
|
||||
color: maroon ;
|
||||
text-align: center }
|
||||
|
||||
p.sidebar-title {
|
||||
font-family: sans-serif ;
|
||||
font-weight: bold ;
|
||||
font-size: larger }
|
||||
|
||||
p.sidebar-subtitle {
|
||||
font-family: sans-serif ;
|
||||
font-weight: bold }
|
||||
|
||||
p.topic-title {
|
||||
font-weight: bold }
|
||||
|
||||
pre.address {
|
||||
margin-bottom: 0 ;
|
||||
margin-top: 0 ;
|
||||
font: inherit }
|
||||
|
||||
pre.literal-block, pre.doctest-block, pre.math, pre.code {
|
||||
margin-left: 2em ;
|
||||
margin-right: 2em }
|
||||
|
||||
pre.code .ln { color: grey; } /* line numbers */
|
||||
pre.code, code { background-color: #eeeeee }
|
||||
pre.code .comment, code .comment { color: #5C6576 }
|
||||
pre.code .keyword, code .keyword { color: #3B0D06; font-weight: bold }
|
||||
pre.code .literal.string, code .literal.string { color: #0C5404 }
|
||||
pre.code .name.builtin, code .name.builtin { color: #352B84 }
|
||||
pre.code .deleted, code .deleted { background-color: #DEB0A1}
|
||||
pre.code .inserted, code .inserted { background-color: #A3D289}
|
||||
|
||||
span.classifier {
|
||||
font-family: sans-serif ;
|
||||
font-style: oblique }
|
||||
|
||||
span.classifier-delimiter {
|
||||
font-family: sans-serif ;
|
||||
font-weight: bold }
|
||||
|
||||
span.interpreted {
|
||||
font-family: sans-serif }
|
||||
|
||||
span.option {
|
||||
white-space: nowrap }
|
||||
|
||||
span.pre {
|
||||
white-space: pre }
|
||||
|
||||
span.problematic {
|
||||
color: red }
|
||||
|
||||
span.section-subtitle {
|
||||
/* font-size relative to parent (h1..h6 element) */
|
||||
font-size: 80% }
|
||||
|
||||
table.citation {
|
||||
border-left: solid 1px gray;
|
||||
margin-left: 1px }
|
||||
|
||||
table.docinfo {
|
||||
margin: 2em 4em }
|
||||
|
||||
table.docutils {
|
||||
margin-top: 0.5em ;
|
||||
margin-bottom: 0.5em }
|
||||
|
||||
table.footnote {
|
||||
border-left: solid 1px black;
|
||||
margin-left: 1px }
|
||||
|
||||
table.docutils td, table.docutils th,
|
||||
table.docinfo td, table.docinfo th {
|
||||
padding-left: 0.5em ;
|
||||
padding-right: 0.5em ;
|
||||
vertical-align: top }
|
||||
|
||||
table.docutils th.field-name, table.docinfo th.docinfo-name {
|
||||
font-weight: bold ;
|
||||
text-align: left ;
|
||||
white-space: nowrap ;
|
||||
padding-left: 0 }
|
||||
|
||||
/* "booktabs" style (no vertical lines) */
|
||||
table.docutils.booktabs {
|
||||
border: 0px;
|
||||
border-top: 2px solid;
|
||||
border-bottom: 2px solid;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
table.docutils.booktabs * {
|
||||
border: 0px;
|
||||
}
|
||||
table.docutils.booktabs th {
|
||||
border-bottom: thin solid;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
h1 tt.docutils, h2 tt.docutils, h3 tt.docutils,
|
||||
h4 tt.docutils, h5 tt.docutils, h6 tt.docutils {
|
||||
font-size: 100% }
|
||||
|
||||
ul.auto-toc {
|
||||
list-style-type: none }
|
||||
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="document" id="stock-secondary-unit">
|
||||
<h1 class="title">Stock Secondary Unit</h1>
|
||||
|
||||
<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
!! This file is generated by oca-gen-addon-readme !!
|
||||
!! changes will be overwritten. !!
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
|
||||
<p><a class="reference external" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external" href="https://github.com/OCA/stock-logistics-warehouse/tree/11.0/stock_secondary_unit"><img alt="OCA/stock-logistics-warehouse" src="https://img.shields.io/badge/github-OCA%2Fstock--logistics--warehouse-lightgray.png?logo=github" /></a> <a class="reference external" href="https://translation.odoo-community.org/projects/stock-logistics-warehouse-11-0/stock-logistics-warehouse-11-0-stock_secondary_unit"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external" href="https://runbot.odoo-community.org/runbot/153/11.0"><img alt="Try me on Runbot" src="https://img.shields.io/badge/runbot-Try%20me-875A7B.png" /></a></p>
|
||||
<p>This module extends the functionality of stock module to allow define
|
||||
other units with their conversion factor.</p>
|
||||
<p><strong>Table of contents</strong></p>
|
||||
<div class="contents local topic" id="contents">
|
||||
<ul class="simple">
|
||||
<li><a class="reference internal" href="#usage" id="id1">Usage</a></li>
|
||||
<li><a class="reference internal" href="#bug-tracker" id="id2">Bug Tracker</a></li>
|
||||
<li><a class="reference internal" href="#credits" id="id3">Credits</a><ul>
|
||||
<li><a class="reference internal" href="#authors" id="id4">Authors</a></li>
|
||||
<li><a class="reference internal" href="#contributors" id="id5">Contributors</a></li>
|
||||
<li><a class="reference internal" href="#maintainers" id="id6">Maintainers</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="usage">
|
||||
<h1><a class="toc-backref" href="#id1">Usage</a></h1>
|
||||
<p>To use this module you need to:</p>
|
||||
<ol class="arabic simple">
|
||||
<li>Go to a <em>Product > General Information tab</em>.</li>
|
||||
<li>Create any record in “Secondary unit of measure”.</li>
|
||||
<li>Set the conversion factor.</li>
|
||||
<li>Go to <em>Inventory tab</em> and set a second unit of measure.</li>
|
||||
<li>Push button ‘Quantity on hand’ and set quantities in stock for this product.</li>
|
||||
<li>Go to product list and you can see the secondary unit value.</li>
|
||||
</ol>
|
||||
</div>
|
||||
<div class="section" id="bug-tracker">
|
||||
<h1><a class="toc-backref" href="#id2">Bug Tracker</a></h1>
|
||||
<p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/stock-logistics-warehouse/issues">GitHub Issues</a>.
|
||||
In case of trouble, please check there if your issue has already been reported.
|
||||
If you spotted it first, help us smashing it by providing a detailed and welcomed
|
||||
<a class="reference external" href="https://github.com/OCA/stock-logistics-warehouse/issues/new?body=module:%20stock_secondary_unit%0Aversion:%2011.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**">feedback</a>.</p>
|
||||
<p>Do not contact contributors directly about support or help with technical issues.</p>
|
||||
</div>
|
||||
<div class="section" id="credits">
|
||||
<h1><a class="toc-backref" href="#id3">Credits</a></h1>
|
||||
<div class="section" id="authors">
|
||||
<h2><a class="toc-backref" href="#id4">Authors</a></h2>
|
||||
<ul class="simple">
|
||||
<li>Tecnativa</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="contributors">
|
||||
<h2><a class="toc-backref" href="#id5">Contributors</a></h2>
|
||||
<ul class="simple">
|
||||
<li>Carlos Dauden <<a class="reference external" href="mailto:carlos.dauden@tecnativa.com">carlos.dauden@tecnativa.com</a>></li>
|
||||
<li>Sergio Teruel <<a class="reference external" href="mailto:sergio.teruel@tecnativa.com">sergio.teruel@tecnativa.com</a>></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="maintainers">
|
||||
<h2><a class="toc-backref" href="#id6">Maintainers</a></h2>
|
||||
<p>This module is maintained by the OCA.</p>
|
||||
<a class="reference external image-reference" href="https://odoo-community.org"><img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" /></a>
|
||||
<p>OCA, or the Odoo Community Association, is a nonprofit organization whose
|
||||
mission is to support the collaborative development of Odoo features and
|
||||
promote its widespread use.</p>
|
||||
<p>This module is part of the <a class="reference external" href="https://github.com/OCA/stock-logistics-warehouse/tree/11.0/stock_secondary_unit">OCA/stock-logistics-warehouse</a> project on GitHub.</p>
|
||||
<p>You are welcome to contribute. To learn how please visit <a class="reference external" href="https://odoo-community.org/page/Contribute">https://odoo-community.org/page/Contribute</a>.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
2
stock_secondary_unit/tests/__init__.py
Normal file
2
stock_secondary_unit/tests/__init__.py
Normal file
@@ -0,0 +1,2 @@
|
||||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
||||
from . import test_stock_secondary_unit
|
||||
85
stock_secondary_unit/tests/test_stock_secondary_unit.py
Normal file
85
stock_secondary_unit/tests/test_stock_secondary_unit.py
Normal file
@@ -0,0 +1,85 @@
|
||||
# Copyright 2018 Tecnativa - Sergio Teruel
|
||||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
||||
from odoo.tests import SavepointCase
|
||||
|
||||
|
||||
class TestProductSecondaryUnit(SavepointCase):
|
||||
at_install = False
|
||||
post_install = True
|
||||
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
super().setUpClass()
|
||||
cls.warehouse = cls.env.ref('stock.warehouse0')
|
||||
cls.product_uom_kg = cls.env.ref('product.product_uom_kgm')
|
||||
cls.product_uom_unit = cls.env.ref('product.product_uom_unit')
|
||||
ProductAttribute = cls.env['product.attribute']
|
||||
ProductAttributeValue = cls.env['product.attribute.value']
|
||||
cls.attribute_color = ProductAttribute.create({'name': 'test_color'})
|
||||
cls.attribute_value_white = ProductAttributeValue.create({
|
||||
'name': 'test_white',
|
||||
'attribute_id': cls.attribute_color.id,
|
||||
})
|
||||
cls.attribute_value_black = ProductAttributeValue.create({
|
||||
'name': 'test_black',
|
||||
'attribute_id': cls.attribute_color.id,
|
||||
})
|
||||
Product = cls.env['product.product']
|
||||
cls.product_template = cls.env['product.template'].create({
|
||||
'name': 'test',
|
||||
'uom_id': cls.product_uom_kg.id,
|
||||
'uom_po_id': cls.product_uom_kg.id,
|
||||
'type': 'product',
|
||||
'secondary_uom_ids': [
|
||||
(0, 0, {
|
||||
'code': 'A',
|
||||
'name': 'unit-700',
|
||||
'uom_id': cls.product_uom_unit.id,
|
||||
'factor': 0.5,
|
||||
}),
|
||||
(0, 0, {
|
||||
'code': 'B',
|
||||
'name': 'unit-900',
|
||||
'uom_id': cls.product_uom_unit.id,
|
||||
'factor': 0.9,
|
||||
}),
|
||||
],
|
||||
'attribute_line_ids': [(0, 0, {
|
||||
'attribute_id': cls.attribute_color.id,
|
||||
})],
|
||||
})
|
||||
cls.product_white = Product.create({
|
||||
'product_tmpl_id': cls.product_template.id,
|
||||
'attribute_value_ids': [(6, 0, [cls.attribute_value_white.id])],
|
||||
})
|
||||
cls.product_black = Product.create({
|
||||
'product_tmpl_id': cls.product_template.id,
|
||||
'attribute_value_ids': [(6, 0, [cls.attribute_value_black.id])],
|
||||
})
|
||||
secondary_unit = cls.env['product.secondary.unit'].search([
|
||||
('product_tmpl_id', '=', cls.product_template.id),
|
||||
], limit=1)
|
||||
cls.product_template.write({
|
||||
'sale_secondary_uom_id': secondary_unit.id,
|
||||
'stock_secondary_uom_id': secondary_unit.id,
|
||||
})
|
||||
StockQuant = cls.env['stock.quant']
|
||||
cls.quant_white = StockQuant.create({
|
||||
'product_id': cls.product_white.id,
|
||||
'location_id': cls.warehouse.lot_stock_id.id,
|
||||
'quantity': 10.0,
|
||||
})
|
||||
cls.quant_black = StockQuant.create({
|
||||
'product_id': cls.product_black.id,
|
||||
'location_id': cls.warehouse.lot_stock_id.id,
|
||||
'quantity': 10.0,
|
||||
})
|
||||
|
||||
def test_stock_secondary_unit_template(self):
|
||||
self.assertEqual(
|
||||
self.product_template.secondary_unit_qty_available, 40.0)
|
||||
|
||||
def test_stock_secondary_unit_variant(self):
|
||||
for variant in self.product_template.product_variant_ids.filtered(
|
||||
'attribute_value_ids'):
|
||||
self.assertEqual(variant.secondary_unit_qty_available, 20)
|
||||
86
stock_secondary_unit/views/product_views.xml
Executable file
86
stock_secondary_unit/views/product_views.xml
Executable file
@@ -0,0 +1,86 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright 2018 Tecnativa - Sergio Teruel
|
||||
License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). -->
|
||||
<odoo>
|
||||
|
||||
<record id="view_template_property_form" model="ir.ui.view">
|
||||
<field name="name">Product template Secondary Unit</field>
|
||||
<field name="model">product.template</field>
|
||||
<field name="inherit_id" ref="stock.view_template_property_form"/>
|
||||
<field name="groups_id" eval="[(4, ref('product.group_uom'))]"/>
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="//group[@name='inventory']" position="inside">
|
||||
<group string="Secondary unit">
|
||||
<field name="stock_secondary_uom_id"
|
||||
domain="[('product_tmpl_id', '=', id)]"
|
||||
options="{'no_create': True}"/>
|
||||
</group>
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="product_template_form_view_procurement_button" model="ir.ui.view">
|
||||
<field name="model">product.template</field>
|
||||
<field name="inherit_id"
|
||||
ref="stock.product_template_form_view_procurement_button"/>
|
||||
<field name="groups_id" eval="[(4, ref('product.group_uom'))]"/>
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="//button[@name='action_open_quants']" position="after">
|
||||
<button type="object"
|
||||
name="action_open_quants"
|
||||
attrs="{'invisible':[('type', '!=', 'product')]}"
|
||||
class="oe_stat_button" icon="fa-building-o">
|
||||
<div class="o_form_field o_stat_info">
|
||||
<span class="o_stat_value"><field name="secondary_unit_qty_available" widget="statinfo" nolabel="1"/></span>
|
||||
<span class="o_stat_text"><field name="stock_secondary_uom_id"/></span>
|
||||
</div>
|
||||
</button>
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="product_form_view_procurement_button" model="ir.ui.view">
|
||||
<field name="model">product.product</field>
|
||||
<field name="inherit_id"
|
||||
ref="stock.product_form_view_procurement_button"/>
|
||||
<field name="groups_id" eval="[(4, ref('product.group_uom'))]"/>
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="//field[@name='qty_available']/.." position="after">
|
||||
<button class="oe_stat_button"
|
||||
name="%(stock.product_open_quants)d"
|
||||
icon="fa-building-o"
|
||||
type="action" attrs="{'invisible':[('type', '!=', 'product')]}">
|
||||
<div class="o_form_field o_stat_info">
|
||||
<span class="o_stat_value"><field name="secondary_unit_qty_available" widget="statinfo" nolabel="1"/></span>
|
||||
<span class="o_stat_text"><field name="stock_secondary_uom_id"/></span>
|
||||
</div>
|
||||
</button>
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="product_template_tree_view" model="ir.ui.view">
|
||||
<field name="model">product.template</field>
|
||||
<field name="inherit_id" ref="product.product_template_tree_view"/>
|
||||
<field name="groups_id" eval="[(4, ref('product.group_uom'))]"/>
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="//field[@name='uom_id']" position="after">
|
||||
<field name="secondary_unit_qty_available"/>
|
||||
<field name="stock_secondary_uom_id" options="{'no_open': True, 'no_create': True}"/>
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="product_product_tree_view" model="ir.ui.view">
|
||||
<field name="model">product.product</field>
|
||||
<field name="inherit_id" ref="product.product_product_tree_view"/>
|
||||
<field name="groups_id" eval="[(4, ref('product.group_uom'))]"/>
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="//field[@name='uom_id']" position="after">
|
||||
<field name="secondary_unit_qty_available"/>
|
||||
<field name="stock_secondary_uom_id" options="{'no_open': True, 'no_create': True}"/>
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
</odoo>
|
||||
21
stock_secondary_unit/views/stock_move_views.xml
Executable file
21
stock_secondary_unit/views/stock_move_views.xml
Executable file
@@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright 2018 Tecnativa - Sergio Teruel
|
||||
License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). -->
|
||||
<odoo>
|
||||
|
||||
<record id="view_stock_move_line_operation_tree" model="ir.ui.view">
|
||||
<field name="name">Stock Move Secondary Unit</field>
|
||||
<field name="model">stock.move.line</field>
|
||||
<field name="inherit_id" ref="stock.view_stock_move_line_operation_tree"/>
|
||||
<field name="groups_id" eval="[(4, ref('product.group_uom'))]"/>
|
||||
<field name="arch" type="xml">
|
||||
<field name="product_uom_qty" position="before">
|
||||
<field name="secondary_uom_qty"/>
|
||||
<field name="secondary_uom_id"
|
||||
domain="[('product_tmpl_id.product_variant_ids', 'in', [product_id])]"
|
||||
options="{'no_create': True}"/>
|
||||
</field>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
</odoo>
|
||||
27
stock_secondary_unit/views/stock_picking_views.xml
Executable file
27
stock_secondary_unit/views/stock_picking_views.xml
Executable file
@@ -0,0 +1,27 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright 2018 Tecnativa - Sergio Teruel
|
||||
License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). -->
|
||||
<odoo>
|
||||
|
||||
<record id="view_picking_form" model="ir.ui.view">
|
||||
<field name="name">Stock Picking Secondary Unit</field>
|
||||
<field name="model">stock.picking</field>
|
||||
<field name="inherit_id" ref="stock.view_picking_form"/>
|
||||
<field name="groups_id" eval="[(4, ref('product.group_uom'))]"/>
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="//field[@name='move_lines']/tree/field[@name='product_uom_qty']" position="before">
|
||||
<field name="secondary_uom_qty"/>
|
||||
<field name="secondary_uom_id"
|
||||
domain="[('product_tmpl_id.product_variant_ids', 'in', [product_id])]"
|
||||
options="{'no_create': True}"/>
|
||||
</xpath>
|
||||
<xpath expr="//field[@name='move_line_ids']/tree/field[@name='product_uom_qty']" position="before">
|
||||
<field name="secondary_uom_qty"/>
|
||||
<field name="secondary_uom_id"
|
||||
domain="[('product_tmpl_id.product_variant_ids', 'in', [product_id])]"
|
||||
options="{'no_create': True}"/>
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
</odoo>
|
||||
Reference in New Issue
Block a user