diff --git a/mrp_production_real_cost/README.rst b/mrp_production_real_cost/README.rst new file mode 100644 index 000000000..1575ef3b4 --- /dev/null +++ b/mrp_production_real_cost/README.rst @@ -0,0 +1,11 @@ +Real costs in manufacturing orders +================================== + +This module allows to manage the control of Manufacturing Orders actual costs, +by creating analytic lines as defined in the MO (from *mrp_project_link*). + +It also updates product standard price when a manufacturing orders is finished +according this formula: + +(Product stock * Product standard price + Production real cost) / +(Product stock + Final product quantity) diff --git a/mrp_production_real_cost/__openerp__.py b/mrp_production_real_cost/__openerp__.py index 70e21c54e..76d843098 100644 --- a/mrp_production_real_cost/__openerp__.py +++ b/mrp_production_real_cost/__openerp__.py @@ -17,7 +17,7 @@ ############################################################################## { - "name": "Mrp Real Costs", + "name": "MRP real costs", "version": "1.0", "depends": ["analytic", "project_timesheet", @@ -29,18 +29,7 @@ "AvanzOSC," "Serv. Tecnol. Avanzados - Pedro M. Baeza", "category": "MRP", - "description": """ - - This module allows to control the real cost of a production order, - creating lines in the analytic account defined in the order that is - created by the module mrp_project_link. - - - Updates product standard price when a production orders final product - is done. - (Product stock * Product standard price + Production real cost) / - (Product stock + Final product quantity) - """, 'data': ["views/mrp_production_view.xml"], - 'demo': [], 'installable': True, 'auto_install': False, }