diff --git a/stock_picking_product_kit_helper/README.rst b/stock_picking_product_kit_helper/README.rst index 59edc52b4..89dd3ece7 100644 --- a/stock_picking_product_kit_helper/README.rst +++ b/stock_picking_product_kit_helper/README.rst @@ -14,13 +14,13 @@ Stock Picking Product Kit Helper :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html :alt: License: AGPL-3 .. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fmanufacture-lightgray.png?logo=github - :target: https://github.com/OCA/manufacture/tree/12.0/stock_picking_product_kit_helper + :target: https://github.com/OCA/manufacture/tree/13.0/stock_picking_product_kit_helper :alt: OCA/manufacture .. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png - :target: https://translation.odoo-community.org/projects/manufacture-12-0/manufacture-12-0-stock_picking_product_kit_helper + :target: https://translation.odoo-community.org/projects/manufacture-13-0/manufacture-13-0-stock_picking_product_kit_helper :alt: Translate me on Weblate .. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png - :target: https://runbot.odoo-community.org/runbot/129/12.0 + :target: https://runbot.odoo-community.org/runbot/129/13.0 :alt: Try me on Runbot |badge1| |badge2| |badge3| |badge4| |badge5| @@ -50,13 +50,26 @@ To use the helper, go to the "Product Kit Helper" tab, #. Click Assign Operation Quantity #. Check result in Operations tab +Changelog +========= + +13.0.1.0.0 (2020-01-09) +~~~~~~~~~~~~~~~~~~~~~~~ + +Migrated to odoo 13. + +12.0.1.0.0 (2019-06-17) +~~~~~~~~~~~~~~~~~~~~~~~ + +First version. + Bug Tracker =========== Bugs are tracked on `GitHub 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 `_. +`feedback `_. Do not contact contributors directly about support or help with technical issues. @@ -71,7 +84,10 @@ Authors Contributors ~~~~~~~~~~~~ -* Kitti Upariphutthiphong +* `Ecosoft `__: + + * Kitti Upariphutthiphong + * Pimolnat Suntian Maintainers ~~~~~~~~~~~ @@ -94,6 +110,6 @@ Current `maintainer `__: |maintainer-kittiu| -This module is part of the `OCA/manufacture `_ project on GitHub. +This module is part of the `OCA/manufacture `_ project on GitHub. You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/stock_picking_product_kit_helper/models/stock_picking.py b/stock_picking_product_kit_helper/models/stock_picking.py index 9da66163b..2ac8b30fd 100644 --- a/stock_picking_product_kit_helper/models/stock_picking.py +++ b/stock_picking_product_kit_helper/models/stock_picking.py @@ -27,7 +27,6 @@ class StockPicking(models.Model): bom = BOM._bom_find(product=product, company_id=company.id) return bom and bom.type == "phantom" - @api.multi def _compute_has_product_kit(self): for picking in self: if any( @@ -36,7 +35,6 @@ class StockPicking(models.Model): ): picking.has_product_kit = True - @api.multi def show_product_kit(self): """Find move_lines with product kit to create helper line.""" self.ensure_one() @@ -61,7 +59,6 @@ class StockPicking(models.Model): self.product_kit_helper_ids.unlink() self.write({"product_kit_helper_ids": helpers}) - @api.multi def action_product_kit_helper(self): """Assign product kit's quantity to stock move.""" self.ensure_one() @@ -101,7 +98,6 @@ class StockPickingProductKitHelper(models.Model): readonly=True, ) - @api.multi def action_explode_helper(self): """Explodes product kit quantity to detailed product in stock move.""" self.ensure_one() diff --git a/stock_picking_product_kit_helper/readme/CONTRIBUTORS.rst b/stock_picking_product_kit_helper/readme/CONTRIBUTORS.rst index 033e67f43..00cf217c1 100644 --- a/stock_picking_product_kit_helper/readme/CONTRIBUTORS.rst +++ b/stock_picking_product_kit_helper/readme/CONTRIBUTORS.rst @@ -1 +1,4 @@ -* Kitti Upariphutthiphong +* `Ecosoft `__: + + * Kitti Upariphutthiphong + * Pimolnat Suntian diff --git a/stock_picking_product_kit_helper/readme/HISTORY.rst b/stock_picking_product_kit_helper/readme/HISTORY.rst new file mode 100644 index 000000000..11e654b98 --- /dev/null +++ b/stock_picking_product_kit_helper/readme/HISTORY.rst @@ -0,0 +1,9 @@ +13.0.1.0.0 (2020-01-09) +~~~~~~~~~~~~~~~~~~~~~~~ + +Migrated to odoo 13. + +12.0.1.0.0 (2019-06-17) +~~~~~~~~~~~~~~~~~~~~~~~ + +First version. diff --git a/stock_picking_product_kit_helper/static/description/index.html b/stock_picking_product_kit_helper/static/description/index.html index 7501821ce..b7d862f1a 100644 --- a/stock_picking_product_kit_helper/static/description/index.html +++ b/stock_picking_product_kit_helper/static/description/index.html @@ -367,7 +367,7 @@ ul.auto-toc { !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! --> -

Beta License: AGPL-3 OCA/manufacture Translate me on Weblate Try me on Runbot

+

Beta License: AGPL-3 OCA/manufacture Translate me on Weblate Try me on Runbot

When sales order contain product kits (product with BOM of type kit), the delivery order (stock.move) created by it will be exploded to multiple product lines.

Normally, to partially deliver, user will calculate manually the quantity of each product lines to delivery.

@@ -375,18 +375,23 @@ the delivery order (stock.move) created by it will be exploded to multiple produ

Table of contents

-

Usage

+

Usage

When origin sales order of the underlining delivery order contains at least 1 product kit, the tab “Product Kit Helper” will appear.

To use the helper, go to the “Product Kit Helper” tab,

@@ -397,30 +402,45 @@ the tab “Product Kit Helper” will appear.

  • Check result in Operations tab
  • +
    +

    Changelog

    +
    +

    13.0.1.0.0 (2020-01-09)

    +

    Migrated to odoo 13.

    +
    +
    +

    12.0.1.0.0 (2019-06-17)

    +

    First version.

    +
    +
    -

    Bug Tracker

    +

    Bug Tracker

    Bugs are tracked on GitHub 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.

    +feedback.

    Do not contact contributors directly about support or help with technical issues.

    -

    Credits

    +

    Credits

    -

    Authors

    +

    Authors

    • Ecosoft
    -

    Contributors

    +

    Contributors

    -

    Maintainers

    +

    Maintainers

    This module is maintained by the OCA.

    Odoo Community Association

    OCA, or the Odoo Community Association, is a nonprofit organization whose @@ -428,7 +448,7 @@ mission is to support the collaborative development of Odoo features and promote its widespread use.

    Current maintainer:

    kittiu

    -

    This module is part of the OCA/manufacture project on GitHub.

    +

    This module is part of the OCA/manufacture project on GitHub.

    You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.