9af65a473a30de5472db4e797e97567a3129d76c
[odoo/odoo.git] / addons / mrp / procurement.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 mx import DateTime
23 from osv import fields
24 from osv import osv
25 from tools.translate import _
26 import ir
27 import netsvc
28 import time
29
30 class procurement_order(osv.osv):
31     _inherit = 'procurement.order'
32     _columns = {
33         'bom_id': fields.many2one('mrp.bom', 'BoM', ondelete='cascade', select=True),
34         'property_ids': fields.many2many('mrp.property', 'procurement_property_rel', 'procurement_id','property_id', 'Properties'),
35     }
36     
37     def check_produce_product(self, cr, uid, procurement, context=[]):
38         """ Finds the bill of material for the product from procurement order.
39         @return: True or False
40         """
41         properties = [x.id for x in procurement.property_ids]
42         bom_id = self.pool.get('mrp.bom')._bom_find(cr, uid, procurement.product_id.id, procurement.product_uom.id, properties)
43         if not bom_id:
44             cr.execute('update procurement_order set message=%s where id=%s', (_('No BoM defined for this product !'), procurement.id))
45             for (id, name) in self.name_get(cr, uid, procurement.id):
46                 message = _("Procurement '%s' has an exception: 'No BoM defined for this product !'") % name
47                 self.log(cr, uid, id, message)
48             return False
49         return True
50     
51     def get_phantom_bom_id(self, cr, uid, ids, context=None):
52         for procurement in self.browse(cr, uid, ids, context=context):
53             if procurement.move_id and procurement.move_id.product_id.supply_method=='produce' \
54                  and procurement.move_id.product_id.procure_method=='make_to_order':
55                     phantom_bom_id = self.pool.get('mrp.bom').search(cr, uid, [
56                         ('product_id', '=', procurement.move_id.product_id.id),
57                         ('bom_id', '=', False),
58                         ('type', '=', 'phantom')]) 
59                     return phantom_bom_id 
60         return False
61     
62     def action_produce_assign_product(self, cr, uid, ids, context={}):
63         """ This is action which call from workflow to assign production order to procurements
64         @return: True
65         """
66         procurement_obj = self.pool.get('procurement.order')
67         res = procurement_obj.make_mo(cr, uid, ids, context=context)
68         res = res.values()
69         return len(res) and res[0] or 0
70     
71     def make_mo(self, cr, uid, ids, context={}):
72         """ Make Manufacturing(production) order from procurement
73         @return: New created Production Orders procurement wise 
74         """
75         res = {}
76         company = self.pool.get('res.users').browse(cr, uid, uid, context).company_id
77         production_obj = self.pool.get('mrp.production')
78         move_obj = self.pool.get('stock.move')
79         wf_service = netsvc.LocalService("workflow")
80         procurement_obj = self.pool.get('procurement.order')
81         for procurement in procurement_obj.browse(cr, uid, ids):
82             res_id = procurement.move_id.id
83             loc_id = procurement.location_id.id
84             newdate = DateTime.strptime(procurement.date_planned, '%Y-%m-%d %H:%M:%S') - DateTime.RelativeDateTime(days=procurement.product_id.product_tmpl_id.produce_delay or 0.0)
85             newdate = newdate - DateTime.RelativeDateTime(days=company.manufacturing_lead)
86             produce_id = production_obj.create(cr, uid, {
87                 'origin': procurement.origin,
88                 'product_id': procurement.product_id.id,
89                 'product_qty': procurement.product_qty,
90                 'product_uom': procurement.product_uom.id,
91                 'product_uos_qty': procurement.product_uos and procurement.product_uos_qty or False,
92                 'product_uos': procurement.product_uos and procurement.product_uos.id or False,
93                 'location_src_id': procurement.location_id.id,
94                 'location_dest_id': procurement.location_id.id,
95                 'bom_id': procurement.bom_id and procurement.bom_id.id or False,
96                 'date_planned': newdate.strftime('%Y-%m-%d %H:%M:%S'),
97                 'move_prod_id': res_id,
98                 'company_id': procurement.company_id.id,
99             })
100             res[procurement.id] = produce_id
101             self.write(cr, uid, [procurement.id], {'state': 'running'})
102             bom_result = production_obj.action_compute(cr, uid,
103                     [produce_id], properties=[x.id for x in procurement.property_ids])
104             wf_service.trg_validate(uid, 'mrp.production', produce_id, 'button_confirm', cr)
105             move_obj.write(cr, uid, [res_id],
106                     {'location_id': procurement.location_id.id})
107         return res
108     
109 procurement_order()
110
111 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: