-
-
Notifications
You must be signed in to change notification settings - Fork 484
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[IMP] mrp_production_estimated_cost: Adaptation to OCA
- Loading branch information
1 parent
d8078c7
commit dca2533
Showing
35 changed files
with
675 additions
and
691 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg | ||
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html | ||
:alt: License: AGPL-3 | ||
|
||
======================================= | ||
Estimated costs in manufacturing orders | ||
======================================= | ||
|
||
Thanks to this module, you can estimate the cost of your manufacturing orders | ||
order, split as followed: | ||
|
||
* Raw Material cost: an analytic line is generated for each material to | ||
be consumed in the order with the product cost. | ||
* Operators time: one line will be generated for the time recorded by the | ||
operators on each operation, so that the number of lines will be equal to | ||
the number of operators in the operation. | ||
* Machine time: one analytic line for each operation will be created in the | ||
associated routing, taking the hourly cost or if missing, the cost per cycle. | ||
|
||
This module also allows to create a virtual manufacturing order for estimating | ||
costs of a manufactured product. | ||
|
||
Installation | ||
============ | ||
|
||
This module depends on the module *product_variant_cost_price*, that is | ||
available in: | ||
|
||
https://github.com/OCA/product-variant | ||
|
||
Usage | ||
===== | ||
|
||
When the manufacturing order is confirmed, analytic lines | ||
are automatically generated in order to estimate the costs of the production | ||
|
||
A new menu is available "Virtual Manufacturing Orders for cost estimation" | ||
where the user can managed virtual MO: | ||
|
||
* When a new MO is created and the new field "active" is false, the MO will be | ||
considered virtual. It is only used for cost estimation and can not be | ||
confirmed. | ||
* To estimate the cost of the MO, the user has to press the button "Compute | ||
data" in the tab "Work Orders". | ||
* These virtual MO have a separate sequence number. | ||
* The user can create a virtual MO directly from the product form. | ||
|
||
|
||
.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas | ||
:alt: Try me on Runbot | ||
:target: https://runbot.odoo-community.org/runbot/129/8.0 | ||
|
||
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 smashing it by providing a detailed and welcomed `feedback | ||
<https://github.com/OCA/ | ||
manufacture/issues/new?body=module:%20 | ||
mrp_production_estimated_cost%0Aversion:%20 | ||
8.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_. | ||
|
||
Credits | ||
======= | ||
|
||
Contributors | ||
------------ | ||
|
||
* Alfredo de la Fuente <alfredodelafuente@avanzosc.es> | ||
* Pedro M. Baeza <pedro.baeza@serviciosbaeza.com> | ||
* Ana Juaristi <ajuaristio@gmail.com> | ||
* Oihane Crucelaegui <oihanecrucelaegi@avanzosc.es> | ||
* Ainara Galdona <agaldona@avanzosc.es> | ||
|
||
Images | ||
------ | ||
|
||
* Original Odoo MRP icon | ||
* Thanks to https://openclipart.org/detail/120511/budget | ||
|
||
Maintainer | ||
---------- | ||
|
||
.. image:: https://odoo-community.org/logo.png | ||
:alt: Odoo Community Association | ||
:target: https://odoo-community.org | ||
|
||
This module is maintained by the OCA. | ||
|
||
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. | ||
|
||
To contribute to this module, please visit https://odoo-community.org. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# -*- coding: utf-8 -*- | ||
# (c) 2014-2015 Avanzosc | ||
# (c) 2014-2015 Pedro M. Baeza | ||
# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html | ||
|
||
from . import models | ||
from . import wizard |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# -*- coding: utf-8 -*- | ||
# (c) 2014-2015 Avanzosc | ||
# (c) 2014-2015 Pedro M. Baeza | ||
# (c) 2015 Antiun Ingeniería | ||
# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html | ||
|
||
{ | ||
"name": "Estimated costs in manufacturing orders", | ||
"version": "8.0.1.0.0", | ||
"category": "Manufacturing", | ||
"author": "OdooMRP team, " | ||
"AvanzOSC, " | ||
"Serv. Tecnol. Avanzados - Pedro M. Baeza, " | ||
"Antiun Ingenería S.L.," | ||
"Odoo Community Association (OCA)", | ||
"website": "http://www.odoomrp.com", | ||
"contributors": [ | ||
"Alfredo de la Fuente <alfredodelafuente@avanzosc.es>", | ||
"Pedro M. Baeza <pedro.baeza@serviciosbaeza.com>", | ||
"Ana Juaristi <ajuaristio@gmail.com>", | ||
"Oihane Crucelaegui <oihanecrucelaegi@avanzosc.es>", | ||
], | ||
"depends": [ | ||
"mrp_project", | ||
"product_variant_cost_price", | ||
], | ||
"data": [ | ||
"data/analytic_journal_data.xml", | ||
"data/fictitious_mrp_production_sequence.xml", | ||
"wizard/wiz_create_fictitious_of_view.xml", | ||
"views/account_analytic_line_view.xml", | ||
"views/mrp_production_view.xml", | ||
"views/product_view.xml", | ||
], | ||
"installable": True, | ||
"license": "AGPL-3", | ||
} |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# -*- coding: utf-8 -*- | ||
# (c) 2014-2015 Avanzosc | ||
# (c) 2014-2015 Pedro M. Baeza | ||
# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html | ||
|
||
from . import account_analytic_line | ||
from . import mrp_production | ||
from . import product |
16 changes: 16 additions & 0 deletions
16
mrp_production_estimated_cost/models/account_analytic_line.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# -*- coding: utf-8 -*- | ||
# (c) 2014-2015 Avanzosc | ||
# (c) 2014-2015 Pedro M. Baeza | ||
# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html | ||
|
||
from openerp import models, fields | ||
import openerp.addons.decimal_precision as dp | ||
|
||
|
||
class AccountAnalyticLine(models.Model): | ||
_inherit = 'account.analytic.line' | ||
|
||
estim_std_cost = fields.Float(string='Estimated Standard Cost', | ||
digits=dp.get_precision('Product Price')) | ||
estim_avg_cost = fields.Float(string='Estimated Average Cost', | ||
digits=dp.get_precision('Product Price')) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# -*- coding: utf-8 -*- | ||
# (c) 2014-2015 Avanzosc | ||
# (c) 2014-2015 Pedro M. Baeza | ||
# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html | ||
|
||
from openerp import models, fields | ||
import openerp.addons.decimal_precision as dp | ||
|
||
|
||
class ProductTemplate(models.Model): | ||
_inherit = 'product.template' | ||
|
||
manual_standard_cost = fields.Float( | ||
string='Manual Standard Cost', digits=dp.get_precision('Product Price') | ||
) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.