[FIX] rename et_ET.po to et_EE.po
[odoo/odoo.git] / addons / mrp_subproduct / mrp_subproduct.py
1 # -*- encoding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution   
5 #    Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). All Rights Reserved
6 #    $Id$
7 #
8 #    This program is free software: you can redistribute it and/or modify
9 #    it under the terms of the GNU General Public License as published by
10 #    the Free Software Foundation, either version 3 of the License, or
11 #    (at your option) any later version.
12 #
13 #    This program is distributed in the hope that it will be useful,
14 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
15 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 #    GNU General Public License for more details.
17 #
18 #    You should have received a copy of the GNU General Public License
19 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
20 #
21 ##############################################################################
22
23 from osv import fields
24 from osv import osv
25
26 class mrp_subproduct(osv.osv):
27     _name = 'mrp.subproduct'
28     _description = 'Mrp Sub Product'
29     _columns={
30               'product_id': fields.many2one('product.product', 'Product', required=True),
31               'product_qty': fields.float('Product Qty', required=True),
32               'product_uom': fields.many2one('product.uom', 'Product UOM', required=True),
33               'bom_id': fields.many2one('mrp.bom', 'BoM'),
34               }
35     def onchange_product_id(self, cr, uid, ids, product_id,context={}):
36          if product_id:
37             prod=self.pool.get('product.product').browse(cr,uid,product_id)
38             v = {'product_uom':prod.uom_id.id}
39             return {'value': v}
40          return {}
41
42 mrp_subproduct()
43
44 class mrp_bom(osv.osv):
45     _name = 'mrp.bom'
46     _description = 'Bill of Material'
47     _inherit='mrp.bom'
48     _columns={
49               'sub_products':fields.one2many('mrp.subproduct', 'bom_id', 'sub_products'),
50               }
51
52
53 mrp_bom()
54
55 class mrp_production(osv.osv):
56     _name = 'mrp.production'
57     _description = 'Production'
58     _inherit= 'mrp.production'   
59
60     def action_confirm(self, cr, uid, ids):
61          picking_id=super(mrp_production,self).action_confirm(cr, uid, ids)
62          for production in self.browse(cr, uid, ids):
63              source = production.product_id.product_tmpl_id.property_stock_production.id
64              for sub_product in production.bom_id.sub_products:               
65
66                  data = {
67                     'name':'PROD:'+production.name,
68                     'date_planned': production.date_planned,
69                     'product_id': sub_product.product_id.id,
70                     'product_qty': sub_product.product_qty,
71                     'product_uom': sub_product.product_uom.id,
72                     'product_uos_qty': production.product_uos and production.product_uos_qty or False,
73                     'product_uos': production.product_uos and production.product_uos.id or False,
74                     'location_id': source,
75                     'location_dest_id': production.location_dest_id.id,
76                     'move_dest_id': production.move_prod_id.id,
77                     'state': 'waiting',
78                     'production_id':production.id
79                  }
80                  sub_prod_ids=self.pool.get('stock.move').create(cr, uid,data)
81          return picking_id
82
83 mrp_production()