[FIx] Convert # to %23 in url for twitter
[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 openerp.osv import fields
25 from openerp.osv import osv
26 from openerp.tools.translate import _
27
28 class procurement_order(osv.osv):
29     _inherit = 'procurement.order'
30     _columns = {
31         'bom_id': fields.many2one('mrp.bom', 'BoM', ondelete='cascade', select=True),
32         'property_ids': fields.many2many('mrp.property', 'procurement_property_rel', 'procurement_id','property_id', 'Properties'),
33         'production_id': fields.many2one('mrp.production', 'Manufacturing Order'),
34     }
35
36     def check_produce_product(self, cr, uid, procurement, context=None):
37         ''' Depict the capacity of the procurement workflow to produce products (not services)'''
38         return True
39
40     def check_bom_exists(self, cr, uid, ids, context=None):
41         """ Finds the bill of material for the product from procurement order.
42         @return: True or False
43         """
44         for procurement in self.browse(cr, uid, ids, context=context):
45             product = procurement.product_id
46             properties = [x.id for x in procurement.property_ids]
47             bom_id = self.pool.get('mrp.bom')._bom_find(cr, uid, procurement.product_id.id, procurement.product_uom.id, properties)
48             if not bom_id:
49                 cr.execute('update procurement_order set message=%s where id=%s', (_('No BoM defined for this product !'), procurement.id))
50                 for (id, name) in self.name_get(cr, uid, procurement.id):
51                     message = _("Procurement '%s' has an exception: 'No BoM defined for this product !'") % name
52                     self.message_post(cr, uid, [procurement.id], body=message, context=context)
53                 return False
54         return True
55
56     def check_conditions_confirm2wait(self, cr, uid, ids):
57         """ condition on the transition to go from 'confirm' activity to 'confirm_wait' activity """
58         res = super(procurement_order, self).check_conditions_confirm2wait(cr, uid, ids)
59         return res and not self.get_phantom_bom_id(cr, uid, ids)
60
61     def get_phantom_bom_id(self, cr, uid, ids, context=None):
62         for procurement in self.browse(cr, uid, ids, context=context):
63             if procurement.move_id and procurement.move_id.product_id.supply_method=='produce' \
64                  and procurement.move_id.product_id.procure_method=='make_to_order':
65                     phantom_bom_id = self.pool.get('mrp.bom').search(cr, uid, [
66                         ('product_id', '=', procurement.move_id.product_id.id),
67                         ('bom_id', '=', False),
68                         ('type', '=', 'phantom')]) 
69                     return phantom_bom_id 
70         return False
71     
72     def action_produce_assign_product(self, cr, uid, ids, context=None):
73         """ This is action which call from workflow to assign production order to procurements
74         @return: True
75         """
76         procurement_obj = self.pool.get('procurement.order')
77         res = procurement_obj.make_mo(cr, uid, ids, context=context)
78         res = res.values()
79         return len(res) and res[0] or 0
80     
81     def make_mo(self, cr, uid, ids, context=None):
82         """ Make Manufacturing(production) order from procurement
83         @return: New created Production Orders procurement wise 
84         """
85         res = {}
86         company = self.pool.get('res.users').browse(cr, uid, uid, context).company_id
87         production_obj = self.pool.get('mrp.production')
88         move_obj = self.pool.get('stock.move')
89         procurement_obj = self.pool.get('procurement.order')
90         for procurement in procurement_obj.browse(cr, uid, ids, context=context):
91             res_id = procurement.move_id.id
92             newdate = datetime.strptime(procurement.date_planned, '%Y-%m-%d %H:%M:%S') - relativedelta(days=procurement.product_id.produce_delay or 0.0)
93             newdate = newdate - relativedelta(days=company.manufacturing_lead)
94             produce_id = production_obj.create(cr, uid, {
95                 'origin': procurement.origin,
96                 'product_id': procurement.product_id.id,
97                 'product_qty': procurement.product_qty,
98                 'product_uom': procurement.product_uom.id,
99                 'product_uos_qty': procurement.product_uos and procurement.product_uos_qty or False,
100                 'product_uos': procurement.product_uos and procurement.product_uos.id or False,
101                 'location_src_id': procurement.location_id.id,
102                 'location_dest_id': procurement.location_id.id,
103                 'bom_id': procurement.bom_id and procurement.bom_id.id or False,
104                 'date_planned': newdate.strftime('%Y-%m-%d %H:%M:%S'),
105                 'move_prod_id': res_id,
106                 'company_id': procurement.company_id.id,
107             })
108             
109             res[procurement.id] = produce_id
110             self.write(cr, uid, [procurement.id], {'state': 'running', 'production_id': produce_id})   
111             bom_result = production_obj.action_compute(cr, uid,
112                     [produce_id], properties=[x.id for x in procurement.property_ids])
113             production_obj.signal_button_confirm(cr, uid, [produce_id])
114             if res_id:
115                 move_obj.write(cr, uid, [res_id],
116                         {'location_id': procurement.location_id.id})
117         self.production_order_create_note(cr, uid, ids, context=context)
118         return res
119
120     def production_order_create_note(self, cr, uid, ids, context=None):
121         for procurement in self.browse(cr, uid, ids, context=context):
122             body = _("Manufacturing Order <em>%s</em> created.") % ( procurement.production_id.name,)
123             self.message_post(cr, uid, [procurement.id], body=body, context=context)