Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
118 changes: 118 additions & 0 deletions mrp_subcontracting_serial_mass_produce/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,118 @@
.. image:: https://odoo-community.org/readme-banner-image
:target: https://odoo-community.org/get-involved?utm_source=readme
:alt: Odoo Community Association

======================================
MRP Subcontracting Serial Mass Produce
======================================

..
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:174af8f3b1fadbca323b2d7546a18edd5b1efcacad8d90d2d9c77a32f02319b1
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

.. |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/license-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%2Fmanufacture-lightgray.png?logo=github
:target: https://github.com/OCA/manufacture/tree/16.0/mrp_subcontracting_serial_mass_produce
:alt: OCA/manufacture
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/manufacture-16-0/manufacture-16-0-mrp_subcontracting_serial_mass_produce
: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/manufacture&target_branch=16.0
:alt: Try me on Runboat

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

This module automatically records subcontracted components when using
the **Mass Produce** wizard to assign serial numbers to subcontracting
manufacturing orders with serial-tracked finished products. It also adds
a convenient **Mass Produce** button to the subcontracting "Record
Components" form for easier access.

**Table of contents**

.. contents::
:local:

Use Cases / Context
===================

With Odoo's standard workflow, when using the subcontracting operation
type and assigning serial numbers via **Mass Produce** on a
subcontracting MO with serial-tracked finished products, the system
assigns serials but does not automatically record components.

This is problematic because when receiving multiple quantities, users
need to assign serials at once to reduce operation time. Without
automatic component recording, users must manually open and record
components for each individual MO, which is time-consuming.

This module solves this by:

- Automatically recording components for all MOs when Mass Produce is
used
- Adding a **Mass Produce** button to the "Record Components" form for
easier access

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

Bugs are tracked on `GitHub Issues <https://github.com/OCA/manufacture/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/manufacture/issues/new?body=module:%20mrp_subcontracting_serial_mass_produce%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
-------

* Quartile

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

- ``Quartile <https://www.quartile.co>``\ \_:

- Toshikimi Shigenobu
- Aung Ko Ko Lin

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-aungkokolin1997| image:: https://github.com/aungkokolin1997.png?size=40px
:target: https://github.com/aungkokolin1997
:alt: aungkokolin1997
.. |maintainer-nobuQuartile| image:: https://github.com/nobuQuartile.png?size=40px
:target: https://github.com/nobuQuartile
:alt: nobuQuartile

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

|maintainer-aungkokolin1997| |maintainer-nobuQuartile|

This module is part of the `OCA/manufacture <https://github.com/OCA/manufacture/tree/16.0/mrp_subcontracting_serial_mass_produce>`_ project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
1 change: 1 addition & 0 deletions mrp_subcontracting_serial_mass_produce/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import wizard
16 changes: 16 additions & 0 deletions mrp_subcontracting_serial_mass_produce/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Copyright 2026 Quartile (https://www.quartile.co)
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).

{
"name": "MRP Subcontracting Serial Mass Produce",
"summary": "Auto-record components via Mass Produce for serial subcontracting",
"version": "16.0.1.0.0",
"author": "Quartile, Odoo Community Association (OCA)",
"category": "Manufacturing",
"website": "https://github.com/OCA/manufacture",
"depends": ["mrp_subcontracting"],
"data": ["views/mrp_production_views.xml"],
"license": "AGPL-3",
"maintainers": ["aungkokolin1997", "nobuQuartile"],
"installable": True,
}
14 changes: 14 additions & 0 deletions mrp_subcontracting_serial_mass_produce/readme/CONTEXT.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
With Odoo's standard workflow, when using the subcontracting operation
type and assigning serial numbers via **Mass Produce** on a subcontracting
MO with serial-tracked finished products, the system assigns serials but
does not automatically record components.

This is problematic because when receiving multiple quantities, users
need to assign serials at once to reduce operation time. Without
automatic component recording, users must manually open and record
components for each individual MO, which is time-consuming.

This module solves this by:

* Automatically recording components for all MOs when Mass Produce is used
* Adding a **Mass Produce** button to the "Record Components" form for easier access
4 changes: 4 additions & 0 deletions mrp_subcontracting_serial_mass_produce/readme/CONTRIBUTORS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
* `Quartile <https://www.quartile.co>`_:

* Toshikimi Shigenobu
* Aung Ko Ko Lin
5 changes: 5 additions & 0 deletions mrp_subcontracting_serial_mass_produce/readme/DESCRIPTION.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
This module automatically records subcontracted components when using
the **Mass Produce** wizard to assign serial numbers to subcontracting
manufacturing orders with serial-tracked finished products. It also adds
a convenient **Mass Produce** button to the subcontracting "Record Components"
form for easier access.
Loading
Loading