[IMP] nfu_sale_order_batch_packing,nfu_product_bnn_attributes: enable packaging and uom on installation
This commit is contained in:
parent
4dbf7678bb
commit
5c04eda4cb
10 changed files with 25 additions and 5 deletions
|
|
@ -38,6 +38,7 @@ Changelog
|
||||||
- 16.0.1.1.1: inherit package company if from product
|
- 16.0.1.1.1: inherit package company if from product
|
||||||
- 16.0.1.2.0: Add Multi company to packaging
|
- 16.0.1.2.0: Add Multi company to packaging
|
||||||
- 16.0.1.2.1: Always write the company in the product packaging
|
- 16.0.1.2.1: Always write the company in the product packaging
|
||||||
|
- 16.0.1.2.2: Enable Unit of Measure on installation
|
||||||
|
|
||||||
Bug Tracker
|
Bug Tracker
|
||||||
===========
|
===========
|
||||||
|
|
|
||||||
|
|
@ -4,9 +4,9 @@
|
||||||
"author": "BAKEUP",
|
"author": "BAKEUP",
|
||||||
"website": "https://www.bakeup.org",
|
"website": "https://www.bakeup.org",
|
||||||
"category": "Product",
|
"category": "Product",
|
||||||
"version": "16.0.1.2.1",
|
"version": "16.0.1.2.2",
|
||||||
"depends": ["nfu_product"],
|
"depends": ["nfu_product"],
|
||||||
"data": ["views/product_bnn_views.xml"],
|
"data": ["data/ir_config_parameter.xml", "views/product_bnn_views.xml"],
|
||||||
"assets": {},
|
"assets": {},
|
||||||
"license": "LGPL-3",
|
"license": "LGPL-3",
|
||||||
"installable": True,
|
"installable": True,
|
||||||
|
|
|
||||||
6
nfu_product_bnn_attributes/data/ir_config_parameter.xml
Normal file
6
nfu_product_bnn_attributes/data/ir_config_parameter.xml
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<odoo noupdate="1">
|
||||||
|
<record id="group_uom" model="res.groups">
|
||||||
|
<field name="users" eval="[(4, ref('base.group_user'))]"/>
|
||||||
|
</record>
|
||||||
|
</odoo>
|
||||||
|
|
@ -4,3 +4,4 @@
|
||||||
- 16.0.1.1.1: inherit package company if from product
|
- 16.0.1.1.1: inherit package company if from product
|
||||||
- 16.0.1.2.0: Add Multi company to packaging
|
- 16.0.1.2.0: Add Multi company to packaging
|
||||||
- 16.0.1.2.1: Always write the company in the product packaging
|
- 16.0.1.2.1: Always write the company in the product packaging
|
||||||
|
- 16.0.1.2.2: Enable Unit of Measure on installation
|
||||||
|
|
@ -392,6 +392,7 @@ ul.auto-toc {
|
||||||
<li>16.0.1.1.1: inherit package company if from product</li>
|
<li>16.0.1.1.1: inherit package company if from product</li>
|
||||||
<li>16.0.1.2.0: Add Multi company to packaging</li>
|
<li>16.0.1.2.0: Add Multi company to packaging</li>
|
||||||
<li>16.0.1.2.1: Always write the company in the product packaging</li>
|
<li>16.0.1.2.1: Always write the company in the product packaging</li>
|
||||||
|
<li>16.0.1.2.2: Enable Unit of Measure on installation</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div class="section" id="bug-tracker">
|
<div class="section" id="bug-tracker">
|
||||||
|
|
|
||||||
|
|
@ -41,6 +41,7 @@ Changelog
|
||||||
:1.3.0: add packaging states
|
:1.3.0: add packaging states
|
||||||
:1.3.1: add open_max_qty
|
:1.3.1: add open_max_qty
|
||||||
:1.3.2: fix color indicator
|
:1.3.2: fix color indicator
|
||||||
|
:1.3.3: Enable packagings on installation
|
||||||
|
|
||||||
Bug Tracker
|
Bug Tracker
|
||||||
===========
|
===========
|
||||||
|
|
|
||||||
|
|
@ -4,9 +4,10 @@
|
||||||
"author": "BAKEUP",
|
"author": "BAKEUP",
|
||||||
"website": "https://www.bakeup.org",
|
"website": "https://www.bakeup.org",
|
||||||
"category": "Sale",
|
"category": "Sale",
|
||||||
"version": "16.0.1.3.2",
|
"version": "16.0.1.3.3",
|
||||||
"depends": ["sale", "sale_order_batch"],
|
"depends": ["sale", "sale_order_batch"],
|
||||||
"data": [
|
"data": [
|
||||||
|
"data/ir_config_parameter.xml",
|
||||||
"views/sale_order_views.xml",
|
"views/sale_order_views.xml",
|
||||||
"views/sale_order_batch_views.xml",
|
"views/sale_order_batch_views.xml",
|
||||||
"views/sale_order_batch_product_views.xml",
|
"views/sale_order_batch_product_views.xml",
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,6 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<odoo noupdate="1">
|
||||||
|
<record id="group_stock_packaging" model="res.groups">
|
||||||
|
<field name="users" eval="[(4, ref('base.group_user'))]"/>
|
||||||
|
</record>
|
||||||
|
</odoo>
|
||||||
|
|
@ -6,3 +6,4 @@
|
||||||
:1.3.0: add packaging states
|
:1.3.0: add packaging states
|
||||||
:1.3.1: add open_max_qty
|
:1.3.1: add open_max_qty
|
||||||
:1.3.2: fix color indicator
|
:1.3.2: fix color indicator
|
||||||
|
:1.3.3: Enable packagings on installation
|
||||||
|
|
@ -407,6 +407,8 @@ and adds a packaging default to sale order batch.</p>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="field"><th class="field-name">1.3.2:</th><td class="field-body">fix color indicator</td>
|
<tr class="field"><th class="field-name">1.3.2:</th><td class="field-body">fix color indicator</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr class="field"><th class="field-name">1.3.3:</th><td class="field-body">Enable packagings on installation</td>
|
||||||
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue