[MERGE] merge bzr saas-4 web branch
[odoo/odoo.git] / addons / mrp_byproduct / mrp_byproduct.py
1 # -*- coding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution
5 #    Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>).
6 #
7 #    This program is free software: you can redistribute it and/or modify
8 #    it under the terms of the GNU Affero General Public License as
9 #    published by the Free Software Foundation, either version 3 of the
10 #    License, or (at your option) any later version.
11 #
12 #    This program is distributed in the hope that it will be useful,
13 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
14 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 #    GNU Affero General Public License for more details.
16 #
17 #    You should have received a copy of the GNU Affero General Public License
18 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 #
20 ##############################################################################
21
22 from openerp.osv import fields
23 from openerp.osv import osv
24 import openerp.addons.decimal_precision as dp
25 from openerp.tools.translate import _
26
27 class mrp_subproduct(osv.osv):
28     _name = 'mrp.subproduct'
29     _description = 'Byproduct'
30     _columns={
31         'product_id': fields.many2one('product.product', 'Product', required=True),
32         'product_qty': fields.float('Product Qty', digits_compute=dp.get_precision('Product Unit of Measure'), required=True),
33         'product_uom': fields.many2one('product.uom', 'Product Unit of Measure', required=True),
34         'subproduct_type': fields.selection([('fixed','Fixed'),('variable','Variable')], 'Quantity Type', required=True, help="Define how the quantity of byproducts will be set on the production orders using this BoM.\
35   'Fixed' depicts a situation where the quantity of created byproduct is always equal to the quantity set on the BoM, regardless of how many are created in the production order.\
36   By opposition, 'Variable' means that the quantity will be computed as\
37     '(quantity of byproduct set on the BoM / quantity of manufactured product set on the BoM * quantity of manufactured product in the production order.)'"),
38         'bom_id': fields.many2one('mrp.bom', 'BoM'),
39     }
40     _defaults={
41         'subproduct_type': 'variable',
42         'product_qty': lambda *a: 1.0,
43     }
44
45     def onchange_product_id(self, cr, uid, ids, product_id, context=None):
46         """ Changes UoM if product_id changes.
47         @param product_id: Changed product_id
48         @return: Dictionary of changed values
49         """
50         if product_id:
51             prod = self.pool.get('product.product').browse(cr, uid, product_id, context=context)
52             v = {'product_uom': prod.uom_id.id}
53             return {'value': v}
54         return {}
55
56     def onchange_uom(self, cr, uid, ids, product_id, product_uom, context=None):
57         res = {'value':{}}
58         if not product_uom or not product_id:
59             return res
60         product = self.pool.get('product.product').browse(cr, uid, product_id, context=context)
61         uom = self.pool.get('product.uom').browse(cr, uid, product_uom, context=context)
62         if uom.category_id.id != product.uom_id.category_id.id:
63             res['warning'] = {'title': _('Warning'), 'message': _('The Product Unit of Measure you chose has a different category than in the product form.')}
64             res['value'].update({'product_uom': product.uom_id.id})
65         return res
66
67
68 class mrp_bom(osv.osv):
69     _name = 'mrp.bom'
70     _description = 'Bill of Material'
71     _inherit='mrp.bom'
72
73     _columns={
74         'sub_products':fields.one2many('mrp.subproduct', 'bom_id', 'Byproducts'),
75     }
76
77
78 class mrp_production(osv.osv):
79     _description = 'Production'
80     _inherit= 'mrp.production'
81
82
83     def action_confirm(self, cr, uid, ids, context=None):
84         """ Confirms production order and calculates quantity based on subproduct_type.
85         @return: Newly generated picking Id.
86         """
87         picking_id = super(mrp_production,self).action_confirm(cr, uid, ids, context=context)
88         product_uom_obj = self.pool.get('product.uom')
89         for production in self.browse(cr, uid, ids):
90             source = production.product_id.property_stock_production.id
91             if not production.bom_id:
92                 continue
93             for sub_product in production.bom_id.sub_products:
94                 product_uom_factor = product_uom_obj._compute_qty(cr, uid, production.product_uom.id, production.product_qty, production.bom_id.product_uom.id)
95                 qty1 = sub_product.product_qty
96                 qty2 = production.product_uos and production.product_uos_qty or False
97                 product_uos_factor = 0.0
98                 if qty2 and production.bom_id.product_uos.id:
99                     product_uos_factor = product_uom_obj._compute_qty(cr, uid, production.product_uos.id, production.product_uos_qty, production.bom_id.product_uos.id)
100                 if sub_product.subproduct_type == 'variable':
101                     if production.product_qty:
102                         qty1 *= product_uom_factor / (production.bom_id.product_qty or 1.0)
103                     if production.product_uos_qty:
104                         qty2 *= product_uos_factor / (production.bom_id.product_uos_qty or 1.0)
105                 data = {
106                     'name': 'PROD:'+production.name,
107                     'date': production.date_planned,
108                     'product_id': sub_product.product_id.id,
109                     'product_qty': qty1,
110                     'product_uom': sub_product.product_uom.id,
111                     'product_uos_qty': qty2,
112                     'product_uos': production.product_uos and production.product_uos.id or False,
113                     'location_id': source,
114                     'location_dest_id': production.location_dest_id.id,
115                     'move_dest_id': production.move_prod_id.id,
116                     'state': 'waiting',
117                     'production_id': production.id
118                 }
119                 self.pool.get('stock.move').create(cr, uid, data)
120         return picking_id
121
122     def _get_subproduct_factor(self, cr, uid, production_id, move_id=None, context=None):
123         """Compute the factor to compute the qty of procucts to produce for the given production_id. By default, 
124             it's always equal to the quantity encoded in the production order or the production wizard, but with 
125             the module mrp_byproduct installed it can differ for byproducts having type 'variable'.
126         :param production_id: ID of the mrp.order
127         :param move_id: ID of the stock move that needs to be produced. Identify the product to produce.
128         :return: The factor to apply to the quantity that we should produce for the given production order and stock move.
129         """
130         sub_obj = self.pool.get('mrp.subproduct')
131         move_obj = self.pool.get('stock.move')
132         production_obj = self.pool.get('mrp.production')
133         production_browse = production_obj.browse(cr, uid, production_id, context=context)
134         move_browse = move_obj.browse(cr, uid, move_id, context=context)
135         subproduct_factor = 1
136         sub_id = sub_obj.search(cr, uid,[('product_id', '=', move_browse.product_id.id),('bom_id', '=', production_browse.bom_id.id), ('subproduct_type', '=', 'variable')], context=context)
137         if sub_id:
138             subproduct_record = sub_obj.browse(cr ,uid, sub_id[0], context=context)
139             if subproduct_record.bom_id.product_qty:
140                 subproduct_factor = subproduct_record.product_qty / subproduct_record.bom_id.product_qty
141                 return subproduct_factor
142         return super(mrp_production, self)._get_subproduct_factor(cr, uid, production_id, move_id, context=context)
143
144
145 class change_production_qty(osv.osv_memory):
146     _inherit = 'change.production.qty'
147
148     def _update_product_to_produce(self, cr, uid, prod, qty, context=None):
149         bom_obj = self.pool.get('mrp.bom')
150         move_lines_obj = self.pool.get('stock.move')
151         prod_obj = self.pool.get('mrp.production')
152         for m in prod.move_created_ids:
153             if m.product_id.id == prod.product_id.id:
154                 move_lines_obj.write(cr, uid, [m.id], {'product_qty': qty})
155             else:
156                 for sub_product_line in prod.bom_id.sub_products:
157                     if sub_product_line.product_id.id == m.product_id.id:
158                         factor = prod_obj._get_subproduct_factor(cr, uid, prod.id, m.id, context=context)
159                         subproduct_qty = sub_product_line.subproduct_type == 'variable' and qty * factor or sub_product_line.product_qty
160                         move_lines_obj.write(cr, uid, [m.id], {'product_qty': subproduct_qty})
161
162 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: