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