diff --git a/rma_put_away/README.rst b/rma_put_away/README.rst new file mode 100644 index 00000000..3cda8398 --- /dev/null +++ b/rma_put_away/README.rst @@ -0,0 +1,45 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :alt: License LGPL-3 + +============ +RMA Put Away +============ + +This module allows you to put away the products after you have received them. + +Configuration +============= + +Go to *RMA / Configuration / Customer Operations* and define there the route +that you wish to use to put away the products, and the default destination +location (optional). + +Usage +===== + +#. Go to a Customer RMA. +#. Click on *Put Away*. +#. Indicate the quantity that you want to put away and destination location. + +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. + +Credits +======= + +Contributors +------------ + +* Jordi Ballester Alomar +* David Jimenez + + +Maintainer +---------- + +This module is maintained by ForgeFlow diff --git a/rma_put_away/__init__.py b/rma_put_away/__init__.py index 7851bb74..976591c9 100644 --- a/rma_put_away/__init__.py +++ b/rma_put_away/__init__.py @@ -1,3 +1,2 @@ from . import wizards from . import models - diff --git a/rma_put_away/models/rma_operation.py b/rma_put_away/models/rma_operation.py index 234be369..81bee26a 100644 --- a/rma_put_away/models/rma_operation.py +++ b/rma_put_away/models/rma_operation.py @@ -1,5 +1,5 @@ # Copyright 2022 ForgeFlow S.L. -# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). +# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl-3.0.html). from odoo import fields, models diff --git a/rma_put_away/models/rma_order_line.py b/rma_put_away/models/rma_order_line.py index 377c297e..d4a5e4e4 100644 --- a/rma_put_away/models/rma_order_line.py +++ b/rma_put_away/models/rma_order_line.py @@ -1,3 +1,6 @@ +# Copyright 2022 ForgeFlow S.L. +# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl-3.0.html). + from odoo import api, fields, models diff --git a/rma_put_away/wizards/rma_make_put_away.py b/rma_put_away/wizards/rma_make_put_away.py index 0a21eaba..c114290a 100644 --- a/rma_put_away/wizards/rma_make_put_away.py +++ b/rma_put_away/wizards/rma_make_put_away.py @@ -1,3 +1,6 @@ +# Copyright 2022 ForgeFlow S.L. +# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl-3.0.html). + import time from odoo import _, api, fields, models