From e5f0d68de79c02677b46bde7459d2052618762a4 Mon Sep 17 00:00:00 2001 From: Dorin Hongu Date: Mon, 28 Oct 2024 23:08:35 +0200 Subject: [PATCH] update --- README.md | 1 + deltatech_warehouse_arrangement/README.rst | 55 +++ deltatech_warehouse_arrangement/__init__.py | 6 + .../__manifest__.py | 27 ++ deltatech_warehouse_arrangement/i18n/ro.po | 280 ++++++++++++ .../models/__init__.py | 9 + .../models/product_template.py | 16 + .../models/stock_lot.py | 57 +++ .../models/stock_move_line.py | 33 ++ .../models/stock_quant.py | 18 + .../models/warehouse_location.py | 178 ++++++++ .../readme/DESCRIPTION.rst | 2 + .../security/ir.model.access.csv | 12 + .../security/security.xml | 9 + .../static/description/index.html | 414 ++++++++++++++++++ .../views/product_template.xml | 23 + .../views/stock_lot.xml | 23 + .../views/stock_quant.xml | 44 ++ .../views/warehouse_location.xml | 203 +++++++++ .../wizard/__init__.py | 5 + .../wizard/lot_set_location.py | 54 +++ .../wizard/lot_set_location.xml | 39 ++ 22 files changed, 1508 insertions(+) create mode 100644 deltatech_warehouse_arrangement/README.rst create mode 100644 deltatech_warehouse_arrangement/__init__.py create mode 100644 deltatech_warehouse_arrangement/__manifest__.py create mode 100644 deltatech_warehouse_arrangement/i18n/ro.po create mode 100644 deltatech_warehouse_arrangement/models/__init__.py create mode 100644 deltatech_warehouse_arrangement/models/product_template.py create mode 100644 deltatech_warehouse_arrangement/models/stock_lot.py create mode 100644 deltatech_warehouse_arrangement/models/stock_move_line.py create mode 100644 deltatech_warehouse_arrangement/models/stock_quant.py create mode 100644 deltatech_warehouse_arrangement/models/warehouse_location.py create mode 100644 deltatech_warehouse_arrangement/readme/DESCRIPTION.rst create mode 100644 deltatech_warehouse_arrangement/security/ir.model.access.csv create mode 100644 deltatech_warehouse_arrangement/security/security.xml create mode 100644 deltatech_warehouse_arrangement/static/description/index.html create mode 100644 deltatech_warehouse_arrangement/views/product_template.xml create mode 100644 deltatech_warehouse_arrangement/views/stock_lot.xml create mode 100644 deltatech_warehouse_arrangement/views/stock_quant.xml create mode 100644 deltatech_warehouse_arrangement/views/warehouse_location.xml create mode 100644 deltatech_warehouse_arrangement/wizard/__init__.py create mode 100644 deltatech_warehouse_arrangement/wizard/lot_set_location.py create mode 100644 deltatech_warehouse_arrangement/wizard/lot_set_location.xml diff --git a/README.md b/README.md index 6c37383c6..ef9f2d5e9 100644 --- a/README.md +++ b/README.md @@ -174,6 +174,7 @@ addon | version | maintainers | summary | price [deltatech_vendor_stock](deltatech_vendor_stock/) | 15.0.1.0.5 | [![dhongu](https://github.com/dhongu.png?size=30px)](https://github.com/dhongu) | Vendor stock availability | Free [deltatech_warehouse](deltatech_warehouse/) | 15.0.1.0.0 | [![dhongu](https://github.com/dhongu.png?size=30px)](https://github.com/dhongu) | MRP Warehouse | Free [deltatech_warehouse_access](deltatech_warehouse_access/) | 15.0.1.0.0 | [![dhongu](https://github.com/dhongu.png?size=30px)](https://github.com/dhongu) | Warehouse Access | Free +[deltatech_warehouse_arrangement](deltatech_warehouse_arrangement/) | 15.0.0.1.1 | | Manages warehouse locations, parallel to standard Odoo locations | Free [deltatech_warranty](deltatech_warranty/) | 15.0.1.0.0 | [![danila12](https://github.com/danila12.png?size=30px)](https://github.com/danila12) | Warranty field in product, report for sale order | Free [deltatech_watermark](deltatech_watermark/) | 15.0.3.0.0 | [![dhongu](https://github.com/dhongu.png?size=30px)](https://github.com/dhongu) | Watermark field | Free [deltatech_watermark_report](deltatech_watermark_report/) | 15.0.1.0.0 | [![dhongu](https://github.com/dhongu.png?size=30px)](https://github.com/dhongu) | Watermark in report | Free diff --git a/deltatech_warehouse_arrangement/README.rst b/deltatech_warehouse_arrangement/README.rst new file mode 100644 index 000000000..122b040ca --- /dev/null +++ b/deltatech_warehouse_arrangement/README.rst @@ -0,0 +1,55 @@ +=============================== +Deltatech Warehouse Arrangement +=============================== + +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:c4d71d9d767e6d9c4100145117f6ad3ff9c17e9083c6d093fc1350408110fca8 + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |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-OPL--1-blue.png + :target: https://www.odoo.com/documentation/master/legal/licenses.html + :alt: License: OPL-1 +.. |badge3| image:: https://img.shields.io/badge/github-dhongu%2Fdeltatech-lightgray.png?logo=github + :target: https://github.com/dhongu/deltatech/tree/15.0/deltatech_warehouse_arrangement + :alt: dhongu/deltatech + +|badge1| |badge2| |badge3| + +Features: + - Manages warehouse locations, parallel to standard Odoo locations + +**Table of contents** + +.. contents:: + :local: + +Bug Tracker +=========== + +Bugs are tracked on `Terrabit Issues `_. +In case of trouble, please check there if your issue has already been reported. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +~~~~~~~ + +* Terrabit +* Dan Stoica + +Maintainers +~~~~~~~~~~~ + +This module is part of the `dhongu/deltatech `_ project on GitHub. + +You are welcome to contribute. diff --git a/deltatech_warehouse_arrangement/__init__.py b/deltatech_warehouse_arrangement/__init__.py new file mode 100644 index 000000000..964be6e1b --- /dev/null +++ b/deltatech_warehouse_arrangement/__init__.py @@ -0,0 +1,6 @@ +# © 2024 Terrabit +# Dan Stoica + + + + Warehouse Locations manager + + + + diff --git a/deltatech_warehouse_arrangement/static/description/index.html b/deltatech_warehouse_arrangement/static/description/index.html new file mode 100644 index 000000000..879731cf1 --- /dev/null +++ b/deltatech_warehouse_arrangement/static/description/index.html @@ -0,0 +1,414 @@ + + + + + +Deltatech Warehouse Arrangement + + + +
+

Deltatech Warehouse Arrangement

+ + +

Beta License: OPL-1 dhongu/deltatech

+
+
Features:
+
    +
  • Manages warehouse locations, parallel to standard Odoo locations
  • +
+
+
+

Table of contents

+ +
+

Bug Tracker

+

Bugs are tracked on Terrabit Issues. +In case of trouble, please check there if your issue has already been reported.

+

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

+
+
+

Credits

+
+

Authors

+
    +
  • Terrabit
  • +
  • Dan Stoica
  • +
+
+
+

Maintainers

+

This module is part of the dhongu/deltatech project on GitHub.

+

You are welcome to contribute.

+
+
+
+ + diff --git a/deltatech_warehouse_arrangement/views/product_template.xml b/deltatech_warehouse_arrangement/views/product_template.xml new file mode 100644 index 000000000..8b9da6170 --- /dev/null +++ b/deltatech_warehouse_arrangement/views/product_template.xml @@ -0,0 +1,23 @@ + + + + + product.template.common.form.location + product.template + + + + + + + + + + + + + + + + + diff --git a/deltatech_warehouse_arrangement/views/stock_lot.xml b/deltatech_warehouse_arrangement/views/stock_lot.xml new file mode 100644 index 000000000..ae0e71a63 --- /dev/null +++ b/deltatech_warehouse_arrangement/views/stock_lot.xml @@ -0,0 +1,23 @@ + + + + + stock.production.lot.form.location + stock.production.lot + + + + + + + + + + + + + + + + + diff --git a/deltatech_warehouse_arrangement/views/stock_quant.xml b/deltatech_warehouse_arrangement/views/stock_quant.xml new file mode 100644 index 000000000..4eac9fa28 --- /dev/null +++ b/deltatech_warehouse_arrangement/views/stock_quant.xml @@ -0,0 +1,44 @@ + + + + stock.quant.tree.editable + stock.quant + + + + + + + + + + + + + + stock.quant.search.location + stock.quant + + + + + + + + + + + + + + + + + + + diff --git a/deltatech_warehouse_arrangement/views/warehouse_location.xml b/deltatech_warehouse_arrangement/views/warehouse_location.xml new file mode 100644 index 000000000..6d103859f --- /dev/null +++ b/deltatech_warehouse_arrangement/views/warehouse_location.xml @@ -0,0 +1,203 @@ + + + + + view.storehouse.tree + warehouse.location.storehouse + + + + + + + + + + + + view.storehouse.form + warehouse.location.storehouse + +
+
+
+ + + + + + + +
+
+
+ + + Storehouse + warehouse.location.storehouse + tree,form + + + + + view.zone.tree + warehouse.location.zone + + + + + + + + + + + view.zone.form + warehouse.location.zone + +
+
+
+ + + + + + + +
+
+
+ + + Zone + warehouse.location.zone + tree,form + + + + + view.shelf.tree + warehouse.location.shelf + + + + + + + + + + + view.shelf.form + warehouse.location.shelf + +
+
+
+ + + + + + + +
+
+
+ + + Shelf + warehouse.location.shelf + tree,form + + + + + view.section.tree + warehouse.location.section + + + + + + + + + + + view.section.form + warehouse.location.section + +
+
+
+ + + + + + + +
+
+
+ + + Section + warehouse.location.section + tree,form + + + + + view.rack.tree + warehouse.location.rack + + + + + + + + + + + view.rack.form + warehouse.location.rack + +
+
+
+ + + + + + + + +
+
+
+ + + Rack + warehouse.location.rack + tree,form + + + + + + + + +
+
diff --git a/deltatech_warehouse_arrangement/wizard/__init__.py b/deltatech_warehouse_arrangement/wizard/__init__.py new file mode 100644 index 000000000..b69a8448d --- /dev/null +++ b/deltatech_warehouse_arrangement/wizard/__init__.py @@ -0,0 +1,5 @@ +# © 2024 Terrabit +# Dan Stoica + + + + Change lot location + lot.change.location + +
+ + + + + + +
+
+
+
+
+ + + + Change Lot Location + lot.change.location + + + form + + + + + + +