Skip to content

Commit

Permalink
Merge commit 'refs/pull/104/head' of https://github.com/oca/product-pack
Browse files Browse the repository at this point in the history
 into 16.0-1104
  • Loading branch information
docker-odoo committed Jan 13, 2023
2 parents 8478fc5 + 6e0be31 commit e7c80e9
Show file tree
Hide file tree
Showing 80 changed files with 7,221 additions and 0 deletions.
140 changes: 140 additions & 0 deletions product_pack/README.rst
@@ -0,0 +1,140 @@
============
Product Pack
============

.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! 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%2Fproduct--pack-lightgray.png?logo=github
:target: https://github.com/OCA/product-pack/tree/15.0/product_pack
:alt: OCA/product-pack
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/product-pack-15-0/product-pack-15-0-product_pack
:alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png
:target: https://runbot.odoo-community.org/runbot/286/15.0
:alt: Try me on Runbot

|badge1| |badge2| |badge3| |badge4| |badge5|

This module allows you to define a product as a *Product Pack*. Each
*Product Pack* has a list of products that are part of this pack.

**Table of contents**

.. contents::
:local:

Usage
=====

To use this module, you need to:

#. Go to *Sales > Products > Products*, create a product and set "Is Pack?".
#. Set *Pack Type* and *Pack component price*.
#. Then choose the products to include in the pack.

`Product pack` is a base module for `sale_product_pack` and other modules that
needs to use packs. `Pack type` and `Pack component price` are used to define
the behavior that the packs will have when it is selected in the sales order
lines (if `sale_product_pack` module is installed).
The options of this field are the followings:

`Pack type`:

* Detailed: It allows you to select an option defined in
`Pack component price` field.
* Non Detailed: Will not show the components information,
only the pack product and the price will be the its price plus the sum of
all the components prices.

`Pack component price`:

* Detailed per component: will show each components and its prices,
including the pack product itself with its price.
* Totalized in main product: will show each component but will not show
components prices. The pack product will be the only one that has price
and this one will be its price plus the sum of all the components prices.
* Ignored: will show each components but will not show
components prices. The pack product will be the only one that has price
and this one will be the price set in the pack product.

Known issues / Roadmap
======================

* It could add another *Pack Type* called maybe *merged* in *Packs*, in which
the calculation of the related sale order line *Unit Price* is equal to
*main product Pack price* + *sum of all its component*
* Make *product.pack.line* multi-company

Bug Tracker
===========

Bugs are tracked on `GitHub Issues <https://github.com/OCA/product-pack/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/product-pack/issues/new?body=module:%20product_pack%0Aversion:%2015.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
~~~~~~~

* NaN·tic
* ADHOC SA
* Tecnativa

Contributors
~~~~~~~~~~~~

* `ADHOC SA <https://www.adhoc.com.ar>`_:

* Juan José Scarafía
* Nicolas Mac Rouillon
* Katherine Zaoral
* `NaN·TIC <http://www.nan-tic.com>`_
* `Tecnativa <https://www.tecnativa.com>`_:

* Ernesto Tejeda
* Pedro M. Baeza
* Jairo Llopis
* Sergio Teruel
* `Sygel <https://www.sygel.es>`_:

* Manuel Regidor

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.

.. |maintainer-ernestotejeda| image:: https://github.com/ernestotejeda.png?size=40px
:target: https://github.com/ernestotejeda
:alt: ernestotejeda

Current `maintainer <https://odoo-community.org/page/maintainer-role>`__:

|maintainer-ernestotejeda|

This module is part of the `OCA/product-pack <https://github.com/OCA/product-pack/tree/15.0/product_pack>`_ project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
2 changes: 2 additions & 0 deletions product_pack/__init__.py
@@ -0,0 +1,2 @@
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
from . import models
23 changes: 23 additions & 0 deletions product_pack/__manifest__.py
@@ -0,0 +1,23 @@
# Copyright 2019 NaN (http://www.nan-tic.com) - Àngel Àlvarez
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
{
"name": "Product Pack",
"version": "16.0.1.0.0",
"category": "Product",
"summary": "This module allows you to set a product as a Pack",
"website": "https://github.com/OCA/product-pack",
"author": "NaN·tic, ADHOC SA, Tecnativa, Odoo Community Association (OCA)",
"maintainers": ["ernestotejeda"],
"license": "AGPL-3",
"depends": ["product"],
"data": [
"security/ir.model.access.csv",
"views/product_pack_line_views.xml",
"views/product_template_views.xml",
"views/product_product_views.xml",
],
"demo": ["demo/product_product_demo.xml", "demo/product_pack_line_demo.xml"],
"installable": True,
"auto_install": False,
"application": False,
}
95 changes: 95 additions & 0 deletions product_pack/demo/product_pack_line_demo.xml
@@ -0,0 +1,95 @@
<?xml version="1.0" encoding="utf-8" ?>
<!-- Copyright 2019 Tecnativa - Ernesto Tejeda
License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). -->
<odoo noupdate="1">
<record id="pack_cpu_detailed_components_1" model="product.pack.line">
<field name="parent_product_id" ref="product_pack_cpu_detailed_components" />
<field name="product_id" ref="product.product_product_20" />
<field name="quantity" eval="1.0" />
</record>
<record id="pack_cpu_detailed_components_3" model="product.pack.line">
<field name="parent_product_id" ref="product_pack_cpu_detailed_components" />
<field name="product_id" ref="product.product_product_16" />
<field name="quantity" eval="1.0" />
</record>
<record id="pack_cpu_detailed_components_4" model="product.pack.line">
<field name="parent_product_id" ref="product_pack_cpu_detailed_components" />
<field name="product_id" ref="product.product_product_24" />
<field name="quantity" eval="1.0" />
</record>
<record id="pack_cpu_detailed_totalized_1" model="product.pack.line">
<field name="parent_product_id" ref="product_pack_cpu_detailed_totalized" />
<field name="product_id" ref="product.product_product_20" />
<field name="quantity" eval="1.0" />
</record>
<record id="pack_cpu_detailed_totalized_3" model="product.pack.line">
<field name="parent_product_id" ref="product_pack_cpu_detailed_totalized" />
<field name="product_id" ref="product.product_product_16" />
<field name="quantity" eval="1.0" />
</record>
<record id="pack_cpu_detailed_totalized_4" model="product.pack.line">
<field name="parent_product_id" ref="product_pack_cpu_detailed_totalized" />
<field name="product_id" ref="product.product_product_24" />
<field name="quantity" eval="1.0" />
</record>
<record id="pack_cpu_detailed_ignored_1" model="product.pack.line">
<field name="parent_product_id" ref="product_pack_cpu_detailed_ignored" />
<field name="product_id" ref="product.product_product_20" />
<field name="quantity" eval="1.0" />
</record>
<record id="pack_cpu_detailed_ignored_3" model="product.pack.line">
<field name="parent_product_id" ref="product_pack_cpu_detailed_ignored" />
<field name="product_id" ref="product.product_product_16" />
<field name="quantity" eval="1.0" />
</record>
<record id="pack_cpu_detailed_ignored_4" model="product.pack.line">
<field name="parent_product_id" ref="product_pack_cpu_detailed_ignored" />
<field name="product_id" ref="product.product_product_24" />
<field name="quantity" eval="1.0" />
</record>
<record id="pack_cpu_non_detailed_1" model="product.pack.line">
<field name="parent_product_id" ref="product_pack_cpu_non_detailed" />
<field name="product_id" ref="product.product_product_20" />
<field name="quantity" eval="1.0" />
</record>
<record id="pack_cpu_non_detailed_3" model="product.pack.line">
<field name="parent_product_id" ref="product_pack_cpu_non_detailed" />
<field name="product_id" ref="product.product_product_16" />
<field name="quantity" eval="1.0" />
</record>
<record id="pack_cpu_non_detailed_4" model="product.pack.line">
<field name="parent_product_id" ref="product_pack_cpu_non_detailed" />
<field name="product_id" ref="product.product_product_24" />
<field name="quantity" eval="1.0" />
</record>
<record id="pack_pc_detailed_components_1" model="product.pack.line">
<field name="parent_product_id" ref="product_pack_pc_detailed_components" />
<field name="product_id" ref="product.product_product_12" />
<field name="quantity" eval="1.0" />
</record>
<record id="pack_pc_detailed_components_3" model="product.pack.line">
<field name="parent_product_id" ref="product_pack_pc_detailed_components" />
<field name="product_id" ref="product_pack_cpu_detailed_components" />
<field name="quantity" eval="1.0" />
</record>
<record id="pack_pc_detailed_totalized_1" model="product.pack.line">
<field name="parent_product_id" ref="product_pack_pc_detailed_totalized" />
<field name="product_id" ref="product.product_product_12" />
<field name="quantity" eval="1.0" />
</record>
<record id="pack_pc_detailed_totalized_3" model="product.pack.line">
<field name="parent_product_id" ref="product_pack_pc_detailed_totalized" />
<field name="product_id" ref="product_pack_cpu_detailed_totalized" />
<field name="quantity" eval="1.0" />
</record>
<record id="pack_pc_detailed_ignored_1" model="product.pack.line">
<field name="parent_product_id" ref="product_pack_pc_detailed_ignored" />
<field name="product_id" ref="product.product_product_12" />
<field name="quantity" eval="1.0" />
</record>
<record id="pack_pc_detailed_ignored_3" model="product.pack.line">
<field name="parent_product_id" ref="product_pack_pc_detailed_ignored" />
<field name="product_id" ref="product_pack_cpu_detailed_ignored" />
<field name="quantity" eval="1.0" />
</record>
</odoo>
74 changes: 74 additions & 0 deletions product_pack/demo/product_product_demo.xml
@@ -0,0 +1,74 @@
<?xml version="1.0" encoding="utf-8" ?>
<!-- Copyright 2019 Tecnativa - Ernesto Tejeda
License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). -->
<odoo noupdate="1">
<record id="product_pack_cpu_detailed_components" model="product.product">
<field name="name">Pack CPU (Detailed - Displayed Components Price)</field>
<field name="categ_id" ref="product.product_category_4" />
<field name="pack_ok" eval="True" />
<field name="pack_type">detailed</field>
<field name="pack_component_price">detailed</field>
<field name="standard_price">20.5</field>
<field name="list_price">30.75</field>
<field name="type">service</field>
</record>
<record id="product_pack_cpu_detailed_totalized" model="product.product">
<field name="name">Pack CPU (Detailed - Totalized Components Price)</field>
<field name="categ_id" ref="product.product_category_4" />
<field name="pack_ok" eval="True" />
<field name="pack_type">detailed</field>
<field name="pack_component_price">totalized</field>
<field name="standard_price">20.5</field>
<field name="list_price">30.75</field>
<field name="type">service</field>
</record>
<record id="product_pack_cpu_detailed_ignored" model="product.product">
<field name="name">Pack CPU (Detailed - Ignored Components Price)</field>
<field name="categ_id" ref="product.product_category_4" />
<field name="pack_ok" eval="True" />
<field name="pack_type">detailed</field>
<field name="pack_component_price">ignored</field>
<field name="standard_price">20.5</field>
<field name="list_price">30.75</field>
<field name="type">service</field>
</record>
<record id="product_pack_cpu_non_detailed" model="product.product">
<field name="name">Pack CPU (Non Detailed - Totalized Components Price)</field>
<field name="categ_id" ref="product.product_category_4" />
<field name="pack_ok" eval="True" />
<field name="pack_type">non_detailed</field>
<field name="standard_price">20.5</field>
<field name="list_price">30.75</field>
<field name="type">service</field>
</record>
<record id="product_pack_pc_detailed_components" model="product.product">
<field name="name">Pack PC (Detailed - Displayed Components Price)</field>
<field name="categ_id" ref="product.product_category_4" />
<field name="pack_ok" eval="True" />
<field name="pack_type">detailed</field>
<field name="pack_component_price">detailed</field>
<field name="standard_price">20.5</field>
<field name="list_price">30.75</field>
<field name="type">service</field>
</record>
<record id="product_pack_pc_detailed_totalized" model="product.product">
<field name="name">Pack PC (Detailed - Totalized Components Price)</field>
<field name="categ_id" ref="product.product_category_4" />
<field name="pack_ok" eval="True" />
<field name="pack_type">detailed</field>
<field name="pack_component_price">totalized</field>
<field name="standard_price">20.5</field>
<field name="list_price">30.75</field>
<field name="type">service</field>
</record>
<record id="product_pack_pc_detailed_ignored" model="product.product">
<field name="name">Pack PC (Detailed - Ignored Components Price)</field>
<field name="categ_id" ref="product.product_category_4" />
<field name="pack_ok" eval="True" />
<field name="pack_type">detailed</field>
<field name="pack_component_price">ignored</field>
<field name="standard_price">20.5</field>
<field name="list_price">30.75</field>
<field name="type">service</field>
</record>
</odoo>

0 comments on commit e7c80e9

Please sign in to comment.