Skip to content

Commit

Permalink
[ADD] add rma_lot
Browse files Browse the repository at this point in the history
  • Loading branch information
sbejaoui committed Aug 22, 2024
1 parent bffd817 commit e8d5554
Show file tree
Hide file tree
Showing 17 changed files with 734 additions and 0 deletions.
1 change: 1 addition & 0 deletions rma/views/rma_views.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
<search>
<field name="name" />
<field name="user_id" />
<field name="product_id" />
<field name="tag_ids" />
<filter
name="draft_filter"
Expand Down
93 changes: 93 additions & 0 deletions rma_lot/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,93 @@
=======
Rma Lot
=======

..
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:179ae979736d64a8afa520769acb7d060690a304e812587c70bf43b4542d2ea6
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |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%2Frma-lightgray.png?logo=github
:target: https://github.com/OCA/rma/tree/16.0/rma_lot
:alt: OCA/rma
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/rma-16-0/rma-16-0-rma_lot
:alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
:target: https://runboat.odoo-community.org/builds?repo=OCA/rma&target_branch=16.0
:alt: Try me on Runboat

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

Tracking returned products by lot or serial number is crucial for
businesses that require precise monitoring, especially in industries
where quality control, compliance, and inventory accuracy are critical.
By enabling returns to be tracked by lot or serial numbers, this module
ensures that each returned item is handled correctly, reducing the risk
of errors, fraud, or compliance issues.

This level of detail is essential for maintaining the integrity of
inventory records, meeting regulatory requirements, and providing
excellent customer service.

The module extends the existing RMA functionality by adding a lot field
to the RMA model, allowing users to associate returns with specific lot
or serial numbers. This enhancement enforces stricter controls over
return processes, ensuring that only the correct items are accepted
during a return and that inventory records remain accurate.

**Table of contents**

.. contents::
:local:

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

Bugs are tracked on `GitHub Issues <https://github.com/OCA/rma/issues>`_.
In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us to smash it by providing a detailed and welcomed
`feedback <https://github.com/OCA/rma/issues/new?body=module:%20rma_lot%0Aversion:%2016.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
-------

* ACSONE SA/NV
* BCIM

Contributors
------------

- Jacques-Etienne Baudoux - BCIM [email protected]
- Souheil Bejaoui - ACSONE SA/NV [email protected]

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.

This module is part of the `OCA/rma <https://github.com/OCA/rma/tree/16.0/rma_lot>`_ 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 rma_lot/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
from . import models
from . import wizards
15 changes: 15 additions & 0 deletions rma_lot/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Copyright 2024 ACSONE SA/NV
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).

{
"name": "Rma Lot",
"summary": """
Manage lot in RMA""",
"version": "16.0.1.0.0",
"license": "AGPL-3",
"author": "ACSONE SA/NV,BCIM,Odoo Community Association (OCA)",
"website": "https://github.com/OCA/rma",
"depends": ["rma", "stock_picking_return_lot"],
"data": ["views/rma.xml"],
"demo": [],
}
1 change: 1 addition & 0 deletions rma_lot/models/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import rma
16 changes: 16 additions & 0 deletions rma_lot/models/rma.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Copyright 2024 ACSONE SA/NV
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).

from odoo import fields, models


class Rma(models.Model):

_inherit = "rma"

lot_id = fields.Many2one(comodel_name="stock.lot", string="Lot/Serial Number")

def _prepare_reception_procurement_vals(self, group=None):
vals = super()._prepare_reception_procurement_vals(group=group)
vals["restrict_lot_id"] = self.lot_id.id
return vals
2 changes: 2 additions & 0 deletions rma_lot/readme/CONTRIBUTORS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- Jacques-Etienne Baudoux - BCIM <[email protected]>
- Souheil Bejaoui - ACSONE SA/NV <[email protected]>
15 changes: 15 additions & 0 deletions rma_lot/readme/DESCRIPTION.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
Tracking returned products by lot or serial number is crucial for businesses
that require precise monitoring, especially in industries where quality control,
compliance, and inventory accuracy are critical.
By enabling returns to be tracked by lot or serial numbers, this module ensures
that each returned item is handled correctly, reducing the risk of errors,
fraud, or compliance issues.

This level of detail is essential for maintaining the integrity of inventory
records, meeting regulatory requirements, and providing excellent customer service.

The module extends the existing RMA functionality by adding a lot field to the
RMA model, allowing users to associate returns with specific lot or serial numbers.
This enhancement enforces stricter controls over return processes,
ensuring that only the correct items are accepted during a return and that
inventory records remain accurate.
Binary file added rma_lot/static/description/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit e8d5554

Please sign in to comment.