Metadata-Version: 2.1
Name: trytond-production
Version: 5.2.1
Summary: Tryton module for production
Home-page: http://www.tryton.org/
Author: Tryton
Author-email: bugs@tryton.org
License: GPL-3
Download-URL: http://downloads.tryton.org/5.2/
Project-URL: Bug Tracker, https://bugs.tryton.org/
Project-URL: Documentation, https://docs.tryton.org/
Project-URL: Forum, https://www.tryton.org/forum
Project-URL: Source Code, https://hg.tryton.org/modules/production
Keywords: tryton production
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Plugins
Classifier: Framework :: Tryton
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Financial and Insurance Industry
Classifier: Intended Audience :: Legal Industry
Classifier: Intended Audience :: Manufacturing
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Natural Language :: Bulgarian
Classifier: Natural Language :: Catalan
Classifier: Natural Language :: Chinese (Simplified)
Classifier: Natural Language :: Czech
Classifier: Natural Language :: Dutch
Classifier: Natural Language :: English
Classifier: Natural Language :: Finnish
Classifier: Natural Language :: French
Classifier: Natural Language :: German
Classifier: Natural Language :: Hungarian
Classifier: Natural Language :: Italian
Classifier: Natural Language :: Persian
Classifier: Natural Language :: Polish
Classifier: Natural Language :: Portuguese (Brazilian)
Classifier: Natural Language :: Russian
Classifier: Natural Language :: Slovenian
Classifier: Natural Language :: Spanish
Classifier: Natural Language :: Turkish
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Office/Business
Requires-Python: >=3.5
License-File: LICENSE

Production Module
#################

The production module defines basics for production management: Bill of
material and production order.


Bill of Material
****************

Bills of Material are list of products and quantities needed to produce a
product. It is often shorten with BOM.

Production
**********

A Production is mainly defined by a product, a BOM, a location, a quantity and
two lists of moves:

* Inputs

  The moves between the storage location and the production location (as
  defined on the warehouse) for products used for production.

* Outputs

  The moves between the production location and the storage location for
  products produced.

The production can be in one of this states:

* Request

  The production is requested by the system.

* Draft

  Input and output moves are in draft.

* Waiting

  The production is waiting for action and all moves are still in draft.

* Assigned

  The input moves are assigned.

* Running

  The input moves are in state done.

* Done

  The output moves are in state done.

* Cancel

  All moves are cancelled.

The cost of the production is computed with the sum of the cost price of all
incoming products. If a product is selected, it will have the cost as unit
price. The production verify that all the cost is spread on the unit price of
output moves.


