[IMP] New traceability button instead of down/upstream buttons
[odoo/odoo.git] / addons / stock / stock.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 date, datetime
23 from dateutil import relativedelta
24
25 import time
26
27 from openerp.osv import fields, osv
28 from openerp.tools.translate import _
29 from openerp import tools
30 from openerp.tools import DEFAULT_SERVER_DATETIME_FORMAT, DEFAULT_SERVER_DATE_FORMAT
31 from openerp import SUPERUSER_ID
32 import openerp.addons.decimal_precision as dp
33 import logging
34 _logger = logging.getLogger(__name__)
35
36
37 #----------------------------------------------------------
38 # Incoterms
39 #----------------------------------------------------------
40 class stock_incoterms(osv.osv):
41     _name = "stock.incoterms"
42     _description = "Incoterms"
43     _columns = {
44         'name': fields.char('Name', size=64, required=True, help="Incoterms are series of sales terms. They are used to divide transaction costs and responsibilities between buyer and seller and reflect state-of-the-art transportation practices."),
45         'code': fields.char('Code', size=3, required=True, help="Incoterm Standard Code"),
46         'active': fields.boolean('Active', help="By unchecking the active field, you may hide an INCOTERM you will not use."),
47     }
48     _defaults = {
49         'active': True,
50     }
51
52 #----------------------------------------------------------
53 # Stock Location
54 #----------------------------------------------------------
55
56 class stock_location(osv.osv):
57     _name = "stock.location"
58     _description = "Inventory Locations"
59     _parent_name = "location_id"
60     _parent_store = True
61     _parent_order = 'name'
62     _order = 'parent_left'
63     _rec_name = 'complete_name'
64
65     def _complete_name(self, cr, uid, ids, name, args, context=None):
66         """ Forms complete name of location from parent location to child location.
67         @return: Dictionary of values
68         """
69         res = {}
70         for m in self.browse(cr, uid, ids, context=context):
71             res[m.id] = m.name
72             parent = m.location_id
73             while parent:
74                 res[m.id] = parent.name + ' / ' + res[m.id]
75                 parent = parent.location_id
76         return res
77
78     def _get_sublocations(self, cr, uid, ids, context=None):
79         """ return all sublocations of the given stock locations (included) """
80         if context is None:
81             context = {}
82         context_with_inactive = context.copy()
83         context_with_inactive['active_test'] = False
84         return self.search(cr, uid, [('id', 'child_of', ids)], context=context_with_inactive)
85
86     _columns = {
87         'name': fields.char('Location Name', size=64, required=True, translate=True),
88         'active': fields.boolean('Active', help="By unchecking the active field, you may hide a location without deleting it."),
89         'usage': fields.selection([('supplier', 'Supplier Location'), ('view', 'View'), ('internal', 'Internal Location'), ('customer', 'Customer Location'), ('inventory', 'Inventory'), ('procurement', 'Procurement'), ('production', 'Production'), ('transit', 'Transit Location for Inter-Companies Transfers')], 'Location Type', required=True,
90                  help="""* Supplier Location: Virtual location representing the source location for products coming from your suppliers
91                        \n* View: Virtual location used to create a hierarchical structures for your warehouse, aggregating its child locations ; can't directly contain products
92                        \n* Internal Location: Physical locations inside your own warehouses,
93                        \n* Customer Location: Virtual location representing the destination location for products sent to your customers
94                        \n* Inventory: Virtual location serving as counterpart for inventory operations used to correct stock levels (Physical inventories)
95                        \n* Procurement: Virtual location serving as temporary counterpart for procurement operations when the source (supplier or production) is not known yet. This location should be empty when the procurement scheduler has finished running.
96                        \n* Production: Virtual counterpart location for production operations: this location consumes the raw material and produces finished products
97                       """, select=True),
98
99         'complete_name': fields.function(_complete_name, type='char', string="Location Name",
100                             store={'stock.location': (_get_sublocations, ['name', 'location_id', 'active'], 10)}),
101         'location_id': fields.many2one('stock.location', 'Parent Location', select=True, ondelete='cascade'),
102         'child_ids': fields.one2many('stock.location', 'location_id', 'Contains'),
103
104         'partner_id': fields.many2one('res.partner', 'Owner', help="Owner of the location if not internal"),
105
106         'comment': fields.text('Additional Information'),
107         'posx': fields.integer('Corridor (X)', help="Optional localization details, for information purpose only"),
108         'posy': fields.integer('Shelves (Y)', help="Optional localization details, for information purpose only"),
109         'posz': fields.integer('Height (Z)', help="Optional localization details, for information purpose only"),
110
111         'parent_left': fields.integer('Left Parent', select=1),
112         'parent_right': fields.integer('Right Parent', select=1),
113
114         'company_id': fields.many2one('res.company', 'Company', select=1, help='Let this field empty if this location is shared between all companies'),
115         'scrap_location': fields.boolean('Scrap Location', help='Check this box to allow using this location to put scrapped/damaged goods.'),
116         'removal_strategy_ids': fields.one2many('product.removal', 'location_id', 'Removal Strategies'),
117         'putaway_strategy_ids': fields.one2many('product.putaway', 'location_id', 'Put Away Strategies'),
118     }
119     _defaults = {
120         'active': True,
121         'usage': 'internal',
122         'company_id': lambda self, cr, uid, c: self.pool.get('res.company')._company_default_get(cr, uid, 'stock.location', context=c),
123         'posx': 0,
124         'posy': 0,
125         'posz': 0,
126         'scrap_location': False,
127     }
128
129     def get_putaway_strategy(self, cr, uid, location, product, context=None):
130         pa = self.pool.get('product.putaway')
131         categ = product.categ_id
132         categs = [categ.id, False]
133         while categ.parent_id:
134             categ = categ.parent_id
135             categs.append(categ.id)
136
137         result = pa.search(cr, uid, [('location_id', '=', location.id), ('product_categ_id', 'in', categs)], context=context)
138         if result:
139             return pa.browse(cr, uid, result[0], context=context)
140
141     def get_removal_strategy(self, cr, uid, location, product, context=None):
142         pr = self.pool.get('product.removal')
143         categ = product.categ_id
144         categs = [categ.id, False]
145         while categ.parent_id:
146             categ = categ.parent_id
147             categs.append(categ.id)
148
149         result = pr.search(cr, uid, [('location_id', '=', location.id), ('product_categ_id', 'in', categs)], context=context)
150         if result:
151             return pr.browse(cr, uid, result[0], context=context).method
152
153
154 #----------------------------------------------------------
155 # Routes
156 #----------------------------------------------------------
157
158 class stock_location_route(osv.osv):
159     _name = 'stock.location.route'
160     _description = "Inventory Routes"
161     _order = 'sequence'
162
163     _columns = {
164         'name': fields.char('Route Name', required=True),
165         'sequence': fields.integer('Sequence'),
166         'pull_ids': fields.one2many('procurement.rule', 'route_id', 'Pull Rules'),
167         'active': fields.boolean('Active', help="If the active field is set to False, it will allow you to hide the route without removing it."),
168         'push_ids': fields.one2many('stock.location.path', 'route_id', 'Push Rules'),
169         'product_selectable': fields.boolean('Applicable on Product'),
170         'product_categ_selectable': fields.boolean('Applicable on Product Category'),
171         'warehouse_selectable': fields.boolean('Applicable on Warehouse'),
172         'supplied_wh_id': fields.many2one('stock.warehouse', 'Supplied Warehouse'),
173         'supplier_wh_id': fields.many2one('stock.warehouse', 'Supplier Warehouse'),
174     }
175
176     _defaults = {
177         'sequence': lambda self, cr, uid, ctx: 0,
178         'active': True,
179         'product_selectable': True,
180     }
181
182
183 #----------------------------------------------------------
184 # Quants
185 #----------------------------------------------------------
186
187 class stock_quant(osv.osv):
188     """
189     Quants are the smallest unit of stock physical instances
190     """
191     _name = "stock.quant"
192     _description = "Quants"
193
194     def _get_quant_name(self, cr, uid, ids, name, args, context=None):
195         """ Forms complete name of location from parent location to child location.
196         @return: Dictionary of values
197         """
198         res = {}
199         for q in self.browse(cr, uid, ids, context=context):
200
201             res[q.id] = q.product_id.code or ''
202             if q.lot_id:
203                 res[q.id] = q.lot_id.name
204             res[q.id] += ': ' + str(q.qty) + q.product_id.uom_id.name
205         return res
206
207     def _calc_inventory_value(self, cr, uid, ids, name, attr, context=None):
208         res = {}
209         uid_company_id = self.pool.get('res.users').browse(cr, uid, uid, context=context).company_id.id
210         for quant in self.browse(cr, uid, ids, context=context):
211             context.pop('force_company', None)
212             if quant.company_id.id != uid_company_id:
213                 #if the company of the quant is different than the current user company, force the company in the context
214                 #then re-do a browse to read the property fields for the good company.
215                 context['force_company'] = quant.company_id.id
216                 quant = self.browse(cr, uid, quant.id, context=context)
217             res[quant.id] = self._get_inventory_value(cr, uid, quant, context=context)
218         return res
219
220     def _get_inventory_value(self, cr, uid, quant, context=None):
221         return quant.product_id.standard_price * quant.qty
222
223     _columns = {
224         'name': fields.function(_get_quant_name, type='char', string='Identifier'),
225         'product_id': fields.many2one('product.product', 'Product', required=True),
226         'location_id': fields.many2one('stock.location', 'Location', required=True),
227         'qty': fields.float('Quantity', required=True, help="Quantity of products in this quant, in the default unit of measure of the product"),
228         'package_id': fields.many2one('stock.quant.package', string='Package', help="The package containing this quant"),
229         'packaging_type_id': fields.related('package_id', 'packaging_id', type='many2one', relation='product.packaging', string='Type of packaging', store=True),
230         'reservation_id': fields.many2one('stock.move', 'Reserved for Move', help="The move the quant is reserved for"),
231         'link_move_operation_id': fields.many2one('stock.move.operation.link', 'Reserved for Link between Move and Pack Operation', help="Technical field decpicting for with tuple (move, operation) this quant is reserved for"),
232         'lot_id': fields.many2one('stock.production.lot', 'Lot'),
233         'cost': fields.float('Unit Cost'),
234         'owner_id': fields.many2one('res.partner', 'Owner', help="This is the owner of the quant"),
235
236         'create_date': fields.datetime('Creation Date'),
237         'in_date': fields.datetime('Incoming Date'),
238
239         'history_ids': fields.many2many('stock.move', 'stock_quant_move_rel', 'quant_id', 'move_id', 'Moves', help='Moves that operate(d) on this quant'),
240         'company_id': fields.many2one('res.company', 'Company', help="The company to which the quants belong", required=True),
241
242         # Used for negative quants to reconcile after compensated by a new positive one
243         'propagated_from_id': fields.many2one('stock.quant', 'Linked Quant', help='The negative quant this is coming from'),
244         'negative_dest_location_id': fields.many2one('stock.location', 'Destination Location', help='Technical field used to record the destination location of a move that created a negative quant'),
245         'inventory_value': fields.function(_calc_inventory_value, string="Inventory Value", type='float', readonly=True),
246     }
247
248     _defaults = {
249         'company_id': lambda self, cr, uid, c: self.pool.get('res.company')._company_default_get(cr, uid, 'stock.quant', context=c),
250     }
251
252     def read_group(self, cr, uid, domain, fields, groupby, offset=0, limit=None, context=None, orderby=False):
253         ''' Overwrite the read_group in order to sum the function field 'inventory_value' in group by'''
254         res = super(stock_quant, self).read_group(cr, uid, domain, fields, groupby, offset=offset, limit=limit, context=context, orderby=orderby)
255         if 'inventory_value' in fields:
256             for line in res:
257                 if '__domain' in line:
258                     lines = self.search(cr, uid, line['__domain'], context=context)
259                     inv_value = 0.0
260                     for line2 in self.browse(cr, uid, lines, context=context):
261                         inv_value += line2.inventory_value
262                     line['inventory_value'] = inv_value
263         return res
264
265     def action_view_quant_history(self, cr, uid, ids, context=None):
266         '''
267         This function returns an action that display the history of the quant, which
268         mean all the stock moves that lead to this quant creation with this quant quantity.
269         '''
270         mod_obj = self.pool.get('ir.model.data')
271         act_obj = self.pool.get('ir.actions.act_window')
272
273         result = mod_obj.get_object_reference(cr, uid, 'stock', 'action_move_form2')
274         id = result and result[1] or False
275         result = act_obj.read(cr, uid, [id], context={})[0]
276
277         move_ids = []
278         for quant in self.browse(cr, uid, ids, context=context):
279             move_ids += [move.id for move in quant.history_ids]
280
281         result['domain'] = "[('id','in',[" + ','.join(map(str, move_ids)) + "])]"
282         return result
283
284     def quants_reserve(self, cr, uid, quants, move, link=False, context=None):
285         '''This function reserves quants for the given move (and optionally given link). If the total of quantity reserved is enough, the move's state
286         is also set to 'assigned'
287
288         :param quants: list of tuple(quant browse record or None, qty to reserve). If None is given as first tuple element, the item will be ignored
289         :param move: browse record
290         :param link: browse record (stock.move.operation.link)
291         '''
292         toreserve = []
293         #split quants if needed
294         for quant, qty in quants:
295             if not quant:
296                 continue
297             self._quant_split(cr, uid, quant, qty, context=context)
298             toreserve.append(quant.id)
299         #reserve quants
300         if toreserve:
301             self.write(cr, SUPERUSER_ID, toreserve, {'reservation_id': move.id, 'link_move_operation_id': link and link.id or False}, context=context)
302         #check if move'state needs to be set as 'assigned'
303         move.refresh()
304         if sum([q.qty for q in move.reserved_quant_ids]) == move.product_qty and move.state in ('confirmed', 'waiting'):
305             self.pool.get('stock.move').write(cr, uid, [move.id], {'state': 'assigned'}, context=context)
306
307     def quants_move(self, cr, uid, quants, move, lot_id=False, owner_id=False, src_package_id=False, dest_package_id=False, context=None):
308         """Moves all given stock.quant in the destination location of the given move.
309
310         :param quants: list of tuple(browse record(stock.quant) or None, quantity to move)
311         :param move: browse record (stock.move)
312         :param lot_id: ID of the lot that mus be set on the quants to move
313         :param owner_id: ID of the partner that must own the quants to move
314         :param src_package_id: ID of the package that contains the quants to move
315         :param dest_package_id: ID of the package that must be set on the moved quant
316         """
317         for quant, qty in quants:
318             if not quant:
319                 #If quant is None, we will create a quant to move (and potentially a negative counterpart too)
320                 quant = self._quant_create(cr, uid, qty, move, lot_id=lot_id, owner_id=owner_id, src_package_id=src_package_id, dest_package_id=dest_package_id, context=context)
321             self.move_single_quant_tuple(cr, uid, quant, qty, move, context=context)
322
323     def check_preferred_location(self, cr, uid, move, qty, context=None):
324         '''Checks the preferred location on the move, if any returned by a putaway strategy, and returns a list of
325         tuple(location, qty) where the quant have to be moved
326
327         :param move: browse record (stock.move)
328         :param qty: float
329         :returns: list of tuple build as [(browe record (stock.move), float)]
330         '''
331         if move.putaway_ids:
332             res = []
333             for record in move.putaway_ids:
334                 res.append((record.location_id, record.quantity))
335             return res
336         return [(move.location_dest_id, qty)]
337
338     def move_single_quant(self, cr, uid, quant, location_to, qty, move, context=None):
339         '''Moves the given 'quant' in 'location_to' for the given 'qty', and logs the stock.move that triggered this move in the quant history.
340         If needed, the quant may be split if it's not totally moved.
341
342         :param quant: browse record (stock.quant)
343         :param location_to: browse record (stock.location)
344         :param qty: float
345         :param move: browse record (stock.move)
346         '''
347         new_quant = self._quant_split(cr, uid, quant, qty, context=context)
348         vals = {
349             'location_id': location_to.id,
350             'history_ids': [(4, move.id)],
351         }
352         #if the quant we are moving had been split and was inside a package, it means we unpacked it
353         if new_quant and new_quant.package_id:
354             vals['package_id'] = False
355         self.write(cr, SUPERUSER_ID, [quant.id], vals, context=context)
356         quant.refresh()
357         return new_quant
358
359     def move_single_quant_tuple(self, cr, uid, quant, qty, move, context=None):
360         '''Effectively process the move of a tuple (quant record, qty to move). This may result in several quants moved
361         if the preferred locations on the move say so but by default it will only move the quant record given as argument
362         :param quant: browse record (stock.quant)
363         :param qty: float
364         :param move: browse record (stock.move)
365         '''
366         for location_to, qty in self.check_preferred_location(cr, uid, move, qty, context=context):
367             if not quant:
368                 break
369             new_quant = self.move_single_quant(cr, uid, quant, location_to, qty, move, context=context)
370             self._quant_reconcile_negative(cr, uid, quant, context=context)
371             quant = new_quant
372
373     def quants_get_prefered_domain(self, cr, uid, location, product, qty, domain=None, prefered_domain=False, fallback_domain=False, restrict_lot_id=False, restrict_partner_id=False, context=None):
374         ''' This function tries to find quants in the given location for the given domain, by trying to first limit
375             the choice on the quants that match the prefered_domain as well. But if the qty requested is not reached
376             it tries to find the remaining quantity by using the fallback_domain.
377         '''
378         if prefered_domain and fallback_domain:
379             if domain is None:
380                 domain = []
381             quants = self.quants_get(cr, uid, location, product, qty, domain=domain + prefered_domain, restrict_lot_id=restrict_lot_id, restrict_partner_id=restrict_partner_id, context=context)
382             res_qty = qty
383             quant_ids = []
384             for quant in quants:
385                 if quant[0]:
386                     quant_ids.append(quant[0].id)
387                     res_qty -= quant[1]
388             if res_qty > 0:
389                 #try to replace the last tuple (None, res_qty) with something that wasn't chosen at first because of the prefered order
390                 quants.pop()
391                 #make sure the quants aren't found twice (if the prefered_domain and the fallback_domain aren't orthogonal
392                 domain += [('id', 'not in', quant_ids)]
393                 unprefered_quants = self.quants_get(cr, uid, location, product, res_qty, domain=domain + fallback_domain, restrict_lot_id=restrict_lot_id, restrict_partner_id=restrict_partner_id, context=context)
394                 for quant in unprefered_quants:
395                     quants.append(quant)
396             return quants
397         return self.quants_get(cr, uid, location, product, qty, domain=domain, restrict_lot_id=restrict_lot_id, restrict_partner_id=restrict_partner_id, context=context)
398
399     def quants_get(self, cr, uid, location, product, qty, domain=None, restrict_lot_id=False, restrict_partner_id=False, context=None):
400         """
401         Use the removal strategies of product to search for the correct quants
402         If you inherit, put the super at the end of your method.
403
404         :location: browse record of the parent location where the quants have to be found
405         :product: browse record of the product to find
406         :qty in UoM of product
407         """
408         result = []
409         domain = domain or [('qty', '>', 0.0)]
410         if restrict_partner_id:
411             domain += [('owner_id', '=', restrict_partner_id)]
412         if restrict_lot_id:
413             domain += [('lot_id', '=', restrict_lot_id)]
414         if location:
415             removal_strategy = self.pool.get('stock.location').get_removal_strategy(cr, uid, location, product, context=context) or 'fifo'
416             if removal_strategy == 'fifo':
417                 result += self._quants_get_fifo(cr, uid, location, product, qty, domain, context=context)
418             elif removal_strategy == 'lifo':
419                 result += self._quants_get_lifo(cr, uid, location, product, qty, domain, context=context)
420             else:
421                 raise osv.except_osv(_('Error!'), _('Removal strategy %s not implemented.' % (removal_strategy,)))
422         return result
423
424     def _quant_create(self, cr, uid, qty, move, lot_id=False, owner_id=False, src_package_id=False, dest_package_id=False, force_location=False, context=None):
425         '''Create a quant in the destination location and create a negative quant in the source location if it's an internal location.
426         '''
427         if context is None:
428             context = {}
429         price_unit = self.pool.get('stock.move').get_price_unit(cr, uid, move, context=context)
430         location = force_location or move.location_dest_id
431         vals = {
432             'product_id': move.product_id.id,
433             'location_id': location.id,
434             'qty': qty,
435             'cost': price_unit,
436             'history_ids': [(4, move.id)],
437             'in_date': datetime.now().strftime(DEFAULT_SERVER_DATETIME_FORMAT),
438             'company_id': move.company_id.id,
439             'lot_id': lot_id,
440             'owner_id': owner_id,
441             'package_id': dest_package_id,
442         }
443
444         if move.location_id.usage == 'internal':
445             #if we were trying to move something from an internal location and reach here (quant creation),
446             #it means that a negative quant has to be created as well.
447             negative_vals = vals.copy()
448             negative_vals['location_id'] = move.location_id.id
449             negative_vals['qty'] = -qty
450             negative_vals['cost'] = price_unit
451             negative_vals['negative_dest_location_id'] = move.location_dest_id.id
452             negative_vals['package_id'] = src_package_id
453             negative_quant_id = self.create(cr, SUPERUSER_ID, negative_vals, context=context)
454             vals.update({'propagated_from_id': negative_quant_id})
455
456         #create the quant as superuser, because we want to restrict the creation of quant manually: they should always use this method to create quants
457         quant_id = self.create(cr, SUPERUSER_ID, vals, context=context)
458         return self.browse(cr, uid, quant_id, context=context)
459
460     def _quant_split(self, cr, uid, quant, qty, context=None):
461         context = context or {}
462         if (quant.qty > 0 and quant.qty <= qty) or (quant.qty <= 0 and quant.qty >= qty):
463             return False
464         new_quant = self.copy(cr, SUPERUSER_ID, quant.id, default={'qty': quant.qty - qty}, context=context)
465         self.write(cr, SUPERUSER_ID, quant.id, {'qty': qty}, context=context)
466         quant.refresh()
467         return self.browse(cr, uid, new_quant, context=context)
468
469     def _get_latest_move(self, cr, uid, quant, context=None):
470         move = False
471         for m in quant.history_ids:
472             if not move or m.date > move.date:
473                 move = m
474         return move
475
476     def _quants_merge(self, cr, uid, solved_quant_ids, solving_quant, context=None):
477         path = []
478         for move in solving_quant.history_ids:
479             path.append((4, move.id))
480         self.write(cr, SUPERUSER_ID, solved_quant_ids, {'history_ids': path}, context=context)
481
482     def _quant_reconcile_negative(self, cr, uid, quant, context=None):
483         """
484             When new quant arrive in a location, try to reconcile it with
485             negative quants. If it's possible, apply the cost of the new
486             quant to the conter-part of the negative quant.
487         """
488         if quant.location_id.usage != 'internal':
489             return False
490         solving_quant = quant
491         dom = [('qty', '<', 0)]
492         dom += [('lot_id', '=', quant.lot_id and quant.lot_id.id or False)]
493         dom += [('owner_id', '=', quant.owner_id and quant.owner_id.id or False)]
494         dom += [('package_id', '=', quant.package_id and quant.package_id.id or False)]
495         quants = self.quants_get(cr, uid, quant.location_id, quant.product_id, quant.qty, [('qty', '<', '0')], context=context)
496         for quant_neg, qty in quants:
497             if not quant_neg:
498                 continue
499             to_solve_quant_ids = self.search(cr, uid, [('propagated_from_id', '=', quant_neg.id)], context=context)
500             if not to_solve_quant_ids:
501                 continue
502             solving_qty = qty
503             solved_quant_ids = []
504             for to_solve_quant in self.browse(cr, uid, to_solve_quant_ids, context=context):
505                 if solving_qty <= 0:
506                     continue
507                 solved_quant_ids.append(to_solve_quant.id)
508                 self._quant_split(cr, uid, to_solve_quant, min(solving_qty, to_solve_quant.qty), context=context)
509                 solving_qty -= min(solving_qty, to_solve_quant.qty)
510             remaining_solving_quant = self._quant_split(cr, uid, solving_quant, qty, context=context)
511             remaining_neg_quant = self._quant_split(cr, uid, quant_neg, -qty, context=context)
512             #if the reconciliation was not complete, we need to link together the remaining parts
513             if remaining_neg_quant:
514                 remaining_to_solve_quant_ids = self.search(cr, uid, [('propagated_from_id', '=', quant_neg.id), ('id', 'not in', solved_quant_ids)], context=context)
515                 if remaining_to_solve_quant_ids:
516                     self.write(cr, SUPERUSER_ID, remaining_to_solve_quant_ids, {'propagated_from_id': remaining_neg_quant.id}, context=context)
517             #delete the reconciled quants, as it is replaced by the solved quants
518             self.unlink(cr, SUPERUSER_ID, [quant_neg.id], context=context)
519             #price update + accounting entries adjustments
520             self._price_update(cr, uid, solved_quant_ids, solving_quant.cost, context=context)
521             #merge history (and cost?)
522             self._quants_merge(cr, uid, solved_quant_ids, solving_quant, context=context)
523             self.unlink(cr, SUPERUSER_ID, [solving_quant.id], context=context)
524             solving_quant = remaining_solving_quant
525
526     def _price_update(self, cr, uid, ids, newprice, context=None):
527         self.write(cr, SUPERUSER_ID, ids, {'cost': newprice}, context=context)
528
529     def quants_unreserve(self, cr, uid, move, context=None):
530         related_quants = [x.id for x in move.reserved_quant_ids]
531         return self.write(cr, SUPERUSER_ID, related_quants, {'reservation_id': False, 'link_move_operation_id': False}, context=context)
532
533     def _quants_get_order(self, cr, uid, location, product, quantity, domain=[], orderby='in_date', context=None):
534         ''' Implementation of removal strategies
535             If it can not reserve, it will return a tuple (None, qty)
536         '''
537         domain += location and [('location_id', 'child_of', location.id)] or []
538         domain += [('product_id', '=', product.id)] + domain
539         res = []
540         offset = 0
541         while quantity > 0:
542             quants = self.search(cr, uid, domain, order=orderby, limit=10, offset=offset, context=context)
543             if not quants:
544                 res.append((None, quantity))
545                 break
546             for quant in self.browse(cr, uid, quants, context=context):
547                 if quantity >= abs(quant.qty):
548                     res += [(quant, abs(quant.qty))]
549                     quantity -= abs(quant.qty)
550                 elif quantity != 0:
551                     res += [(quant, quantity)]
552                     quantity = 0
553                     break
554             offset += 10
555         return res
556
557     def _quants_get_fifo(self, cr, uid, location, product, quantity, domain=[], context=None):
558         order = 'in_date'
559         return self._quants_get_order(cr, uid, location, product, quantity, domain, order, context=context)
560
561     def _quants_get_lifo(self, cr, uid, location, product, quantity, domain=[], context=None):
562         order = 'in_date desc'
563         return self._quants_get_order(cr, uid, location, product, quantity, domain, order, context=context)
564
565     def _location_owner(self, cr, uid, quant, location, context=None):
566         ''' Return the company owning the location if any '''
567         return location and (location.usage == 'internal') and location.company_id or False
568
569     def _check_location(self, cr, uid, ids, context=None):
570         for record in self.browse(cr, uid, ids, context=context):
571             if record.location_id.usage == 'view':
572                 raise osv.except_osv(_('Error'), _('You cannot move product %s to a location of type view %s.') % (record.product_id.name, record.location_id.name))
573         return True
574
575     _constraints = [
576         (_check_location, 'You cannot move products to a location of the type view.', ['location_id'])
577     ]
578
579
580 #----------------------------------------------------------
581 # Stock Picking
582 #----------------------------------------------------------
583
584 class stock_picking(osv.osv):
585     _name = "stock.picking"
586     _inherit = ['mail.thread']
587     _description = "Picking List"
588     _order = "priority desc, date desc, id desc"
589
590     def _set_min_date(self, cr, uid, id, field, value, arg, context=None):
591         move_obj = self.pool.get("stock.move")
592         if value:
593             move_ids = [move.id for move in self.browse(cr, uid, id, context=context).move_lines]
594             move_obj.write(cr, uid, move_ids, {'date_expected': value}, context=context)
595
596     def get_min_max_date(self, cr, uid, ids, field_name, arg, context=None):
597         """ Finds minimum and maximum dates for picking.
598         @return: Dictionary of values
599         """
600         res = {}
601         for id in ids:
602             res[id] = {'min_date': False, 'max_date': False}
603         if not ids:
604             return res
605         cr.execute("""select
606                 picking_id,
607                 min(date_expected),
608                 max(date_expected)
609             from
610                 stock_move
611             where
612                 picking_id IN %s
613             group by
614                 picking_id""", (tuple(ids),))
615         for pick, dt1, dt2 in cr.fetchall():
616             res[pick]['min_date'] = dt1
617             res[pick]['max_date'] = dt2
618         return res
619
620     def create(self, cr, user, vals, context=None):
621         context = context or {}
622         if ('name' not in vals) or (vals.get('name') in ('/', False)):
623             ptype_id = vals.get('picking_type_id', context.get('default_picking_type_id', False))
624             sequence_id = self.pool.get('stock.picking.type').browse(cr, user, ptype_id, context=context).sequence_id.id
625             vals['name'] = self.pool.get('ir.sequence').get_id(cr, user, sequence_id, 'id', context=context)
626         return super(stock_picking, self).create(cr, user, vals, context)
627
628     def _state_get(self, cr, uid, ids, field_name, arg, context=None):
629         '''The state of a picking depends on the state of its related stock.move
630             draft: the picking has no line or any one of the lines is draft
631             done, draft, cancel: all lines are done / draft / cancel
632             confirmed, auto, assigned depends on move_type (all at once or direct)
633         '''
634         res = {}
635         for pick in self.browse(cr, uid, ids, context=context):
636             if (not pick.move_lines) or any([x.state == 'draft' for x in pick.move_lines]):
637                 res[pick.id] = 'draft'
638                 continue
639             if all([x.state == 'cancel' for x in pick.move_lines]):
640                 res[pick.id] = 'cancel'
641                 continue
642             if all([x.state in ('cancel', 'done') for x in pick.move_lines]):
643                 res[pick.id] = 'done'
644                 continue
645
646             order = {'confirmed': 0, 'waiting': 1, 'assigned': 2}
647             order_inv = dict(zip(order.values(), order.keys()))
648             lst = [order[x.state] for x in pick.move_lines if x.state not in ('cancel', 'done')]
649             if pick.move_lines == 'one':
650                 res[pick.id] = order_inv[min(lst)]
651             else:
652                 res[pick.id] = order_inv[max(lst)]
653         return res
654
655     def _get_pickings(self, cr, uid, ids, context=None):
656         res = set()
657         for move in self.browse(cr, uid, ids, context=context):
658             if move.picking_id:
659                 res.add(move.picking_id.id)
660         return list(res)
661
662     def _get_pack_operation_exist(self, cr, uid, ids, field_name, arg, context=None):
663         res = {}
664         for pick in self.browse(cr, uid, ids, context=context):
665             res[pick.id] = False
666             if pick.pack_operation_ids:
667                 res[pick.id] = True
668         return res
669
670     def _get_quant_reserved_exist(self, cr, uid, ids, field_name, arg, context=None):
671         res = {}
672         for pick in self.browse(cr, uid, ids, context=context):
673             res[pick.id] = False
674             for move in pick.move_lines:
675                 if move.reserved_quant_ids:
676                     res[pick.id] = True
677                     continue
678         return res
679
680     def action_assign_owner(self, cr, uid, ids, context=None):
681         for picking in self.browse(cr, uid, ids, context=context):
682             packop_ids = [op.id for op in picking.pack_operation_ids]
683             self.pool.get('stock.pack.operation').write(cr, uid, packop_ids, {'owner_id': picking.owner_id.id}, context=context)
684
685     _columns = {
686         'name': fields.char('Reference', size=64, select=True, states={'done': [('readonly', True)], 'cancel': [('readonly', True)]}),
687         'origin': fields.char('Source Document', size=64, states={'done': [('readonly', True)], 'cancel': [('readonly', True)]}, help="Reference of the document", select=True),
688         'backorder_id': fields.many2one('stock.picking', 'Back Order of', states={'done': [('readonly', True)], 'cancel': [('readonly', True)]}, help="If this shipment was split, then this field links to the shipment which contains the already processed part.", select=True),
689         'note': fields.text('Notes', states={'done': [('readonly', True)], 'cancel': [('readonly', True)]}),
690         'move_type': fields.selection([('direct', 'Partial'), ('one', 'All at once')], 'Delivery Method', required=True, states={'done': [('readonly', True)], 'cancel': [('readonly', True)]}, help="It specifies goods to be deliver partially or all at once"),
691         'state': fields.function(_state_get, type="selection", store={
692             'stock.picking': (lambda self, cr, uid, ids, ctx: ids, ['move_type', 'move_lines'], 20),
693             'stock.move': (_get_pickings, ['state', 'picking_id'], 20)}, selection=[
694                 ('draft', 'Draft'),
695                 ('cancel', 'Cancelled'),
696                 ('waiting', 'Waiting Another Operation'),
697                 ('confirmed', 'Waiting Availability'),
698                 ('assigned', 'Ready to Transfer'),
699                 ('done', 'Transferred'),
700                 ], string='Status', readonly=True, select=True, track_visibility='onchange', help="""
701                 * Draft: not confirmed yet and will not be scheduled until confirmed\n
702                 * Waiting Another Operation: waiting for another move to proceed before it becomes automatically available (e.g. in Make-To-Order flows)\n
703                 * Waiting Availability: still waiting for the availability of products\n
704                 * Ready to Transfer: products reserved, simply waiting for confirmation.\n
705                 * Transferred: has been processed, can't be modified or cancelled anymore\n
706                 * Cancelled: has been cancelled, can't be confirmed anymore"""
707         ),
708         'priority': fields.selection([('0', 'Low'), ('1', 'Normal'), ('2', 'High')], string='Priority', required=True),
709         'min_date': fields.function(get_min_max_date, multi="min_max_date", fnct_inv=_set_min_date,
710                  store={'stock.move': (_get_pickings, ['state', 'date_expected'], 20)}, type='datetime', string='Scheduled Date', select=1, help="Scheduled time for the first part of the shipment to be processed. Setting manually a value here would set it as expected date for all the stock moves.", track_visibility='onchange'),
711         'max_date': fields.function(get_min_max_date, multi="min_max_date",
712                  store={'stock.move': (_get_pickings, ['state', 'date_expected'], 20)}, type='datetime', string='Max. Expected Date', select=2, help="Scheduled time for the last part of the shipment to be processed"),
713         'date': fields.datetime('Commitment Date', help="Date promised for the completion of the transfer order, usually set the time of the order and revised later on.", select=True, states={'done': [('readonly', True)], 'cancel': [('readonly', True)]}, track_visibility='onchange'),
714         'date_done': fields.datetime('Date of Transfer', help="Date of Completion", states={'done': [('readonly', True)], 'cancel': [('readonly', True)]}),
715         'move_lines': fields.one2many('stock.move', 'picking_id', 'Internal Moves', states={'done': [('readonly', True)], 'cancel': [('readonly', True)]}),
716         'quant_reserved_exist': fields.function(_get_quant_reserved_exist, type='boolean', string='Quant already reserved ?', help='technical field used to know if there is already at least one quant reserved on moves of a given picking'),
717         'partner_id': fields.many2one('res.partner', 'Partner', states={'done': [('readonly', True)], 'cancel': [('readonly', True)]}),
718         'company_id': fields.many2one('res.company', 'Company', required=True, select=True, states={'done': [('readonly', True)], 'cancel': [('readonly', True)]}),
719         'pack_operation_ids': fields.one2many('stock.pack.operation', 'picking_id', string='Related Packing Operations'),
720         'pack_operation_exist': fields.function(_get_pack_operation_exist, type='boolean', string='Pack Operation Exists?', help='technical field for attrs in view'),
721         'picking_type_id': fields.many2one('stock.picking.type', 'Picking Type', required=True),
722         'picking_type_code': fields.related('picking_type_id', 'code', type='char', string='Picking Type Code', help="Technical field used to display the correct label on print button in the picking view"),
723
724         'owner_id': fields.many2one('res.partner', 'Owner', help="Default Owner"),
725         # Used to search on pickings
726         'product_id': fields.related('move_lines', 'product_id', type='many2one', relation='product.product', string='Product'),
727         'location_id': fields.related('move_lines', 'location_id', type='many2one', relation='stock.location', string='Location', readonly=True),
728         'location_dest_id': fields.related('move_lines', 'location_dest_id', type='many2one', relation='stock.location', string='Destination Location', readonly=True),
729         'group_id': fields.related('move_lines', 'group_id', type='many2one', relation='procurement.group', string='Procurement Group', readonly=True,
730               store={
731                   'stock.picking': (lambda self, cr, uid, ids, ctx: ids, ['move_lines'], 10),
732                   'stock.move': (_get_pickings, ['group_id', 'picking_id'], 10),
733               }),
734     }
735
736     _defaults = {
737         'name': lambda self, cr, uid, context: '/',
738         'state': 'draft',
739         'move_type': 'one',
740         'priority': '1',  # normal
741         'date': fields.datetime.now,
742         'company_id': lambda self, cr, uid, c: self.pool.get('res.company')._company_default_get(cr, uid, 'stock.picking', context=c)
743     }
744     _sql_constraints = [
745         ('name_uniq', 'unique(name, company_id)', 'Reference must be unique per company!'),
746     ]
747
748     def copy(self, cr, uid, id, default=None, context=None):
749         if default is None:
750             default = {}
751         default = default.copy()
752         picking_obj = self.browse(cr, uid, id, context=context)
753         if ('name' not in default) or (picking_obj.name == '/'):
754             default['name'] = '/'
755         if not default.get('backorder_id'):
756             default['backorder_id'] = False
757         default['pack_operation_ids'] = []
758         default['date_done'] = False
759         return super(stock_picking, self).copy(cr, uid, id, default, context)
760
761     def do_print_delivery(self, cr, uid, ids, context=None):
762         '''This function prints the delivery order'''
763         assert len(ids) == 1, 'This option should only be used for a single id at a time'
764         datas = {
765                  'model': 'stock.picking',
766                  'ids': ids,
767         }
768         return {'type': 'ir.actions.report.xml', 'report_name': 'stock.picking.list', 'datas': datas, 'nodestroy': True}
769
770     def do_print_picking(self, cr, uid, ids, context=None):
771         '''This function prints the picking list'''
772         assert len(ids) == 1, 'This option should only be used for a single id at a time'
773         datas = {
774                  'model': 'stock.picking',
775                  'ids': ids,
776         }
777         return {'type': 'ir.actions.report.xml', 'report_name': 'stock.picking.list.internal', 'datas': datas, 'nodestroy': True}
778
779     def action_confirm(self, cr, uid, ids, context=None):
780         todo = []
781         todo_force_assign = []
782         for picking in self.browse(cr, uid, ids, context=context):
783             if picking.picking_type_id.auto_force_assign:
784                 todo_force_assign.append(picking.id)
785             for r in picking.move_lines:
786                 if r.state == 'draft':
787                     todo.append(r.id)
788         if len(todo):
789             self.pool.get('stock.move').action_confirm(cr, uid, todo, context=context)
790
791         if todo_force_assign:
792             self.force_assign(cr, uid, todo_force_assign, context=context)
793         return True
794
795     def action_assign(self, cr, uid, ids, context=None):
796         """ Check availability of picking moves.
797         This has the effect of changing the state and reserve quants on available moves, and may
798         also impact the state of the picking as it is computed based on move's states.
799         @return: True
800         """
801         for pick in self.browse(cr, uid, ids, context=context):
802             if pick.state == 'draft':
803                 self.action_confirm(cr, uid, [pick.id], context=context)
804             #skip the moves that don't need to be checked
805             move_ids = [x.id for x in pick.move_lines if x.state not in ('draft', 'cancel', 'done')]
806             if not move_ids:
807                 raise osv.except_osv(_('Warning!'), _('Nothing to check the availability for.'))
808             self.pool.get('stock.move').action_assign(cr, uid, move_ids, context=context)
809         return True
810
811     def force_assign(self, cr, uid, ids, context=None):
812         """ Changes state of picking to available if moves are confirmed or waiting.
813         @return: True
814         """
815         for pick in self.browse(cr, uid, ids, context=context):
816             move_ids = [x.id for x in pick.move_lines if x.state in ['confirmed', 'waiting']]
817             self.pool.get('stock.move').force_assign(cr, uid, move_ids, context=context)
818         return True
819
820     def cancel_assign(self, cr, uid, ids, context=None):
821         """ Cancels picking and moves.
822         @return: True
823         """
824         for pick in self.browse(cr, uid, ids, context=context):
825             move_ids = [x.id for x in pick.move_lines]
826             self.pool.get('stock.move').cancel_assign(cr, uid, move_ids, context=context)
827         return True
828
829     def action_cancel(self, cr, uid, ids, context=None):
830         for pick in self.browse(cr, uid, ids, context=context):
831             ids2 = [move.id for move in pick.move_lines]
832             self.pool.get('stock.move').action_cancel(cr, uid, ids2, context)
833         return True
834
835     def action_done(self, cr, uid, ids, context=None):
836         """Changes picking state to done by processing the Stock Moves of the Picking
837
838         Normally that happens when the button "Done" is pressed on a Picking view.
839         @return: True
840         """
841         for pick in self.browse(cr, uid, ids, context=context):
842             todo = []
843             for move in pick.move_lines:
844                 if move.state == 'draft':
845                     self.pool.get('stock.move').action_confirm(cr, uid, [move.id],
846                         context=context)
847                     todo.append(move.id)
848                 elif move.state in ('assigned', 'confirmed'):
849                     todo.append(move.id)
850             if len(todo):
851                 self.pool.get('stock.move').action_done(cr, uid, todo, context=context)
852         return True
853
854     def unlink(self, cr, uid, ids, context=None):
855         #on picking deletion, cancel its move then unlink them too
856         move_obj = self.pool.get('stock.move')
857         context = context or {}
858         for pick in self.browse(cr, uid, ids, context=context):
859             move_ids = [move.id for move in pick.move_lines]
860             move_obj.action_cancel(cr, uid, move_ids, context=context)
861             move_obj.unlink(cr, uid, move_ids, context=context)
862         return super(stock_picking, self).unlink(cr, uid, ids, context=context)
863
864     def write(self, cr, uid, ids, vals, context=None):
865         res = super(stock_picking, self).write(cr, uid, ids, vals, context=context)
866         #if we changed the move lines or the pack operations, we need to recompute the remaining quantities of both
867         if 'move_lines' in vals or 'pack_operation_ids' in vals:
868             self.do_recompute_remaining_quantities(cr, uid, ids, context=context)
869         return res
870
871     def _create_backorder(self, cr, uid, picking, backorder_moves=[], context=None):
872         """ Move all non-done lines into a new backorder picking. If the key 'do_only_split' is given in the context, then move all lines not in context.get('split', []) instead of all non-done lines.
873         """
874         if not backorder_moves:
875             backorder_moves = picking.move_lines
876         backorder_move_ids = [x.id for x in backorder_moves if x.state not in ('done', 'cancel')]
877         if 'do_only_split' in context and context['do_only_split']:
878             backorder_move_ids = [x.id for x in backorder_moves if x.id not in context.get('split', [])]
879
880         if backorder_move_ids:
881             backorder_id = self.copy(cr, uid, picking.id, {
882                 'name': '/',
883                 'move_lines': [],
884                 'pack_operation_ids': [],
885                 'backorder_id': picking.id,
886             })
887             back_order_name = self.browse(cr, uid, backorder_id, context=context).name
888             self.message_post(cr, uid, picking.id, body=_("Back order <em>%s</em> <b>created</b>.") % (back_order_name), context=context)
889             move_obj = self.pool.get("stock.move")
890             move_obj.write(cr, uid, backorder_move_ids, {'picking_id': backorder_id}, context=context)
891
892             self.write(cr, uid, [picking.id], {'date_done': time.strftime(DEFAULT_SERVER_DATETIME_FORMAT)}, context=context)
893             self.action_confirm(cr, uid, [backorder_id], context=context)
894             return backorder_id
895         return False
896
897     def do_prepare_partial(self, cr, uid, picking_ids, context=None):
898         #TODO refactore me
899         context = context or {}
900         pack_operation_obj = self.pool.get('stock.pack.operation')
901         pack_obj = self.pool.get("stock.quant.package")
902         quant_obj = self.pool.get("stock.quant")
903         for picking in self.browse(cr, uid, picking_ids, context=context):
904             for move in picking.move_lines:
905                 if move.state != 'assigned':
906                     continue
907                 #Check which of the reserved quants are entirely in packages (can be in separate method)
908                 packages = list(set([x.package_id for x in move.reserved_quant_ids if x.package_id]))
909                 done_packages = []
910                 for pack in packages:
911                     cont = True
912                     good_pack = False
913                     test_pack = pack
914                     while cont:
915                         quants = pack_obj.get_content(cr, uid, [test_pack.id], context=context)
916                         if all([x.reservation_id.id == move.id for x in quant_obj.browse(cr, uid, quants, context=context) if x.reservation_id]):
917                             good_pack = test_pack.id
918                             if test_pack.parent_id:
919                                 test_pack = test_pack.parent_id
920                             else:
921                                 cont = False
922                         else:
923                             cont = False
924                     if good_pack:
925                         done_packages.append(good_pack)
926                 done_packages = list(set(done_packages))
927
928                 #Create package operations
929                 reserved = set([x.id for x in move.reserved_quant_ids])
930                 remaining_qty = move.product_qty
931                 for pack in pack_obj.browse(cr, uid, done_packages, context=context):
932                     quantl = pack_obj.get_content(cr, uid, [pack.id], context=context)
933                     for quant in quant_obj.browse(cr, uid, quantl, context=context):
934                         remaining_qty -= quant.qty
935                     quants = set(pack_obj.get_content(cr, uid, [pack.id], context=context))
936                     reserved -= quants
937                     pack_operation_obj.create(cr, uid, {
938                         'picking_id': picking.id,
939                         'package_id': pack.id,
940                         'product_qty': 1.0,
941                     }, context=context)
942
943                 yet_to_reserve = list(reserved)
944                 #Create operations based on quants
945                 for quant in quant_obj.browse(cr, uid, yet_to_reserve, context=context):
946                     qty = min(quant.qty, move.product_qty)
947                     remaining_qty -= qty
948                     pack_operation_obj.create(cr, uid, {
949                         'picking_id': picking.id,
950                         'product_qty': qty,
951                         'product_id': quant.product_id.id,
952                         'lot_id': quant.lot_id and quant.lot_id.id or False,
953                         'product_uom_id': quant.product_id.uom_id.id,
954                         'owner_id': quant.owner_id and quant.owner_id.id or False,
955                         'cost': quant.cost,
956                         'package_id': quant.package_id and quant.package_id.id or False,
957                     }, context=context)
958                 if remaining_qty > 0:
959                     pack_operation_obj.create(cr, uid, {
960                         'picking_id': picking.id,
961                         'product_qty': remaining_qty,
962                         'product_id': move.product_id.id,
963                         'product_uom_id': move.product_id.uom_id.id,
964                         'cost': move.product_id.standard_price,
965                     }, context=context)
966
967     def do_unreserve(self, cr, uid, picking_ids, context=None):
968         """
969           Will remove all quants for picking in picking_ids
970         """
971         moves_to_unreserve = []
972         for picking in self.browse(cr, uid, picking_ids, context=context):
973             moves_to_unreserve += [m.id for m in picking.move_lines]
974         if moves_to_unreserve:
975             self.pool.get('stock.move').do_unreserve(cr, uid, moves_to_unreserve, context=context)
976
977     def do_recompute_remaining_quantities(self, cr, uid, picking_ids, context=None):
978         def _create_link_for_product(product_id, qty):
979             qty_to_assign = qty
980             for move in picking.move_lines:
981                 if move.product_id.id == product_id and move.state not in ['done', 'cancel']:
982                     qty_on_link = min(move.remaining_qty, qty_to_assign)
983                     link_obj.create(cr, uid, {'move_id': move.id, 'operation_id': op.id, 'qty': qty_on_link}, context=context)
984                     qty_to_assign -= qty_on_link
985                     move.refresh()
986                     if qty_to_assign <= 0:
987                         break
988
989         link_obj = self.pool.get('stock.move.operation.link')
990         uom_obj = self.pool.get('product.uom')
991         package_obj = self.pool.get('stock.quant.package')
992         for picking in self.browse(cr, uid, picking_ids, context=context):
993             for op in picking.pack_operation_ids:
994                 to_unlink_ids = [x.id for x in op.linked_move_operation_ids]
995                 if to_unlink_ids:
996                     link_obj.unlink(cr, uid, to_unlink_ids, context=context)
997                 if op.product_id:
998                     normalized_qty = uom_obj._compute_qty(cr, uid, op.product_uom_id.id, op.product_qty, op.product_id.uom_id.id)
999                     _create_link_for_product(op.product_id.id, normalized_qty)
1000                 elif op.package_id:
1001                     for product_id, qty in package_obj._get_all_products_quantities(cr, uid, op.package_id.id, context=context).items():
1002                         _create_link_for_product(product_id, qty)
1003
1004     def _create_extra_moves(self, cr, uid, picking, context=None):
1005         '''This function creates move lines on a picking, at the time of do_transfer, based on
1006         unexpected product transfers (or exceeding quantities) found in the pack operations.
1007         '''
1008         move_obj = self.pool.get('stock.move')
1009         operation_obj = self.pool.get('stock.pack.operation')
1010         for op in picking.pack_operation_ids:
1011             for product_id, remaining_qty in operation_obj._get_remaining_prod_quantities(cr, uid, op, context=context).items():
1012                 if remaining_qty > 0:
1013                     product = self.pool.get('product.product').browse(cr, uid, product_id, context=context)
1014                     vals = {
1015                         'picking_id': picking.id,
1016                         'location_id': picking.location_id.id,
1017                         'location_dest_id': picking.location_dest_id.id,
1018                         'product_id': product_id,
1019                         'product_uom': product.uom_id.id,
1020                         'product_uom_qty': remaining_qty,
1021                         'name': _('Extra Move: ') + product.name,
1022                         'state': 'confirmed',
1023                     }
1024                     move_obj.create(cr, uid, vals, context=context)
1025         self.do_recompute_remaining_quantities(cr, uid, [picking.id], context=context)
1026
1027     def rereserve_quants(self, cr, uid, picking, move_ids=[], context=None):
1028         """ Unreserve quants then try to reassign quants."""
1029         stock_move_obj = self.pool.get('stock.move')
1030         if not move_ids:
1031             self.do_unreserve(cr, uid, [picking.id], context=context)
1032             self.action_assign(cr, uid, [picking.id], context=context)
1033         else:
1034             stock_move_obj.do_unreserve(cr, uid, move_ids, context=context)
1035             stock_move_obj.action_assign(cr, uid, move_ids, context=context)
1036
1037     def do_transfer(self, cr, uid, picking_ids, context=None):
1038         """
1039             If no pack operation, we do simple action_done of the picking
1040             Otherwise, do the pack operations
1041         """
1042         if not context:
1043             context = {}
1044         stock_move_obj = self.pool.get('stock.move')
1045         for picking in self.browse(cr, uid, picking_ids, context=context):
1046             if not picking.pack_operation_ids:
1047                 self.action_done(cr, uid, [picking.id], context=context)
1048                 continue
1049             else:
1050                 self.do_recompute_remaining_quantities(cr, uid, [picking.id], context=context)
1051                 #create extra moves in the picking (unexpected product moves coming from pack operations)
1052                 self._create_extra_moves(cr, uid, picking, context=context)
1053                 picking.refresh()
1054                 #split move lines eventually
1055                 todo_move_ids = []
1056                 toassign_move_ids = []
1057                 for move in picking.move_lines:
1058                     if move.state in ('done', 'cancel'):
1059                         #ignore stock moves cancelled or already done
1060                         continue
1061                     elif move.state == 'draft':
1062                         toassign_move_ids.append(move.id)
1063                     if move.remaining_qty == 0:
1064                         if move.state in ('draft', 'assigned', 'confirmed'):
1065                             todo_move_ids.append(move.id)
1066                     elif move.remaining_qty > 0:
1067                         new_move = stock_move_obj.split(cr, uid, move, move.remaining_qty, context=context)
1068                         todo_move_ids.append(move.id)
1069                         #Assign move as it was assigned before
1070                         toassign_move_ids.append(new_move)
1071                     elif move.state:
1072                         #this should never happens
1073                         raise
1074                 self.rereserve_quants(cr, uid, picking, move_ids=todo_move_ids, context=context)
1075                 if todo_move_ids and not context.get('do_only_split'):
1076                     self.pool.get('stock.move').action_done(cr, uid, todo_move_ids, context=context)
1077                 elif context.get('do_only_split'):
1078                     context.update({'split': todo_move_ids})
1079             picking.refresh()
1080             self._create_backorder(cr, uid, picking, context=context)
1081             if toassign_move_ids:
1082                 stock_move_obj.action_assign(cr, uid, toassign_move_ids, context=context)
1083         return True
1084
1085     def do_split(self, cr, uid, picking_ids, context=None):
1086         """ just split the picking (create a backorder) without making it 'done' """
1087         if context is None:
1088             context = {}
1089         ctx = context.copy()
1090         ctx['do_only_split'] = True
1091         return self.do_transfer(cr, uid, picking_ids, context=ctx)
1092
1093     def get_next_picking_for_ui(self, cr, uid, context=None):
1094         """ returns the next pickings to process. Used in the barcode scanner UI"""
1095         if context is None:
1096             context = {}
1097         domain = [('state', 'in', ('confirmed', 'assigned'))]
1098         if context.get('default_picking_type_id'):
1099             domain.append(('picking_type_id', '=', context['default_picking_type_id']))
1100         return self.search(cr, uid, domain, context=context)
1101
1102     def action_done_from_ui(self, cr, uid, picking_id, context=None):
1103         """ called when button 'done' in pused in the barcode scanner UI """
1104         self.do_transfer(cr, uid, [picking_id], context=context)
1105         #return id of next picking to work on
1106         return self.get_next_picking_for_ui(cr, uid, context=context)
1107
1108     def action_pack(self, cr, uid, picking_ids, context=None):
1109         """ Create a package with the current pack_operation_ids of the picking that aren't yet in a pack.
1110         Used in the barcode scanner UI and the normal interface as well. """
1111         stock_operation_obj = self.pool.get('stock.pack.operation')
1112         package_obj = self.pool.get('stock.quant.package')
1113         for picking_id in picking_ids:
1114             operation_ids = stock_operation_obj.search(cr, uid, [('picking_id', '=', picking_id), ('result_package_id', '=', False)], context=context)
1115             if operation_ids:
1116                 package_id = package_obj.create(cr, uid, {}, context=context)
1117                 stock_operation_obj.write(cr, uid, operation_ids, {'result_package_id': package_id}, context=context)
1118         return True
1119
1120     def process_product_id_from_ui(self, cr, uid, picking_id, product_id, context=None):
1121         return self.pool.get('stock.pack.operation')._search_and_increment(cr, uid, picking_id, [('product_id', '=', product_id)], context=context)
1122
1123     def process_barcode_from_ui(self, cr, uid, picking_id, barcode_str, context=None):
1124         '''This function is called each time there barcode scanner reads an input'''
1125         lot_obj = self.pool.get('stock.production.lot')
1126         package_obj = self.pool.get('stock.quant.package')
1127         product_obj = self.pool.get('product.product')
1128         stock_operation_obj = self.pool.get('stock.pack.operation')
1129         #check if the barcode correspond to a product
1130         matching_product_ids = product_obj.search(cr, uid, [('ean13', '=', barcode_str)], context=context)
1131         if matching_product_ids:
1132             self.process_product_id_from_ui(cr, uid, picking_id, matching_product_ids[0], context=context)
1133
1134         #check if the barcode correspond to a lot
1135         matching_lot_ids = lot_obj.search(cr, uid, [('name', '=', barcode_str)], context=context)
1136         if matching_lot_ids:
1137             lot = lot_obj.browse(cr, uid, matching_lot_ids[0], context=context)
1138             stock_operation_obj._search_and_increment(cr, uid, picking_id, [('product_id', '=', lot.product_id.id), ('lot_id', '=', lot.id)], context=context)
1139
1140         #check if the barcode correspond to a package
1141         matching_package_ids = package_obj.search(cr, uid, [('name', '=', barcode_str)], context=context)
1142         if matching_package_ids:
1143             stock_operation_obj._search_and_increment(cr, uid, picking_id, [('package_id', '=', matching_package_ids[0])], context=context)
1144
1145
1146 class stock_production_lot(osv.osv):
1147     _name = 'stock.production.lot'
1148     _inherit = ['mail.thread']
1149     _description = 'Lot/Serial'
1150     _columns = {
1151         'name': fields.char('Serial Number', size=64, required=True, help="Unique Serial Number"),
1152         'ref': fields.char('Internal Reference', size=256, help="Internal reference number in case it differs from the manufacturer's serial number"),
1153         'product_id': fields.many2one('product.product', 'Product', required=True, domain=[('type', '<>', 'service')]),
1154         'quant_ids': fields.one2many('stock.quant', 'lot_id', 'Quants'),
1155         'create_date': fields.datetime('Creation Date'),
1156     }
1157     _defaults = {
1158         'name': lambda x, y, z, c: x.pool.get('ir.sequence').get(y, z, 'stock.lot.serial'),
1159         'product_id': lambda x, y, z, c: c.get('product_id', False),
1160     }
1161     _sql_constraints = [
1162         ('name_ref_uniq', 'unique (name, ref)', 'The combination of Serial Number and internal reference must be unique !'),
1163     ]
1164
1165     def action_traceability(self, cr, uid, ids, context=None):
1166         """ It traces the information of a product
1167         @param self: The object pointer.
1168         @param cr: A database cursor
1169         @param uid: ID of the user currently logged in
1170         @param ids: List of IDs selected
1171         @param context: A standard dictionary
1172         @return: A dictionary of values
1173         """
1174         if not ids or len(ids) == 0:
1175             return False #TODO give warning instead
1176         quant_obj = self.pool.get("stock.quant")
1177         move_obj = self.pool.get("stock.move")
1178         quants = quant_obj.search(cr, uid, [('lot_id', 'in', ids)], context=context)
1179         moves = set()
1180         for quant in quant_obj.browse(cr, uid, quants, context=context):
1181             for move in quant.history_ids:
1182                 moves.add(move.id)
1183 #         import pdb
1184 #         pdb.set_trace()
1185         if moves:
1186 #             ir_model_data = self.pool.get('ir.model.data')
1187 #             try: 
1188 #                 template_id = ir_model_data.get_object_reference(cr, uid, 'stock', 'view_move_tree')[1]
1189 #             except:
1190 #                 template_id = False
1191             return { 
1192                 'domain': "[('id','in',["+','.join(map(str, list(moves)))+"])]",
1193                 'name': 'Traceability',
1194                 'view_mode': 'tree, form',
1195                 'view_type': 'tree',
1196                 'res_model': 'stock.move',
1197                 'type': 'ir.actions.act_window',
1198                 'nodestroy':True,
1199                     }
1200         else:
1201             return False
1202         
1203
1204
1205 # ----------------------------------------------------
1206 # Move
1207 # ----------------------------------------------------
1208
1209 class stock_move(osv.osv):
1210     _name = "stock.move"
1211     _description = "Stock Move"
1212     _order = 'date_expected desc, id'
1213     _log_create = False
1214
1215     def get_price_unit(self, cr, uid, move, context=None):
1216         """ Returns the unit price to store on the quant """
1217         return move.price_unit or move.product_id.standard_price
1218
1219     def name_get(self, cr, uid, ids, context=None):
1220         res = []
1221         for line in self.browse(cr, uid, ids, context=context):
1222             name = line.location_id.name + ' > ' + line.location_dest_id.name
1223             if line.product_id.code:
1224                 name = line.product_id.code + ': ' + name
1225             if line.picking_id.origin:
1226                 name = line.picking_id.origin + '/ ' + name
1227             res.append((line.id, name))
1228         return res
1229
1230     def create(self, cr, uid, vals, context=None):
1231         if vals.get('product_id') and not vals.get('price_unit'):
1232             prod_obj = self.pool.get('product.product')
1233             vals['price_unit'] = prod_obj.browse(cr, uid, vals['product_id'], context=context).standard_price
1234         return super(stock_move, self).create(cr, uid, vals, context=context)
1235
1236     def _quantity_normalize(self, cr, uid, ids, name, args, context=None):
1237         uom_obj = self.pool.get('product.uom')
1238         res = {}
1239         for m in self.browse(cr, uid, ids, context=context):
1240             res[m.id] = uom_obj._compute_qty_obj(cr, uid, m.product_uom, m.product_uom_qty, m.product_id.uom_id, round=False)
1241         return res
1242
1243     def _get_remaining_qty(self, cr, uid, ids, field_name, args, context=None):
1244         uom_obj = self.pool.get('product.uom')
1245         res = {}
1246         for move in self.browse(cr, uid, ids, context=context):
1247             qty = move.product_qty
1248             for record in move.linked_move_operation_ids:
1249                 qty -= record.qty
1250             #converting the remaining quantity in the move UoM
1251             res[move.id] = uom_obj._compute_qty(cr, uid, move.product_id.uom_id.id, qty, move.product_uom.id)
1252         return res
1253
1254     def _get_lot_ids(self, cr, uid, ids, field_name, args, context=None):
1255         res = dict.fromkeys(ids, False)
1256         for move in self.browse(cr, uid, ids, context=context):
1257             if move.state == 'done':
1258                 res[move.id] = [q.id for q in move.quant_ids]
1259             else:
1260                 res[move.id] = [q.id for q in move.reserved_quant_ids]
1261         return res
1262
1263     def _get_product_availability(self, cr, uid, ids, field_name, args, context=None):
1264         quant_obj = self.pool.get('stock.quant')
1265         res = dict.fromkeys(ids, False)
1266         for move in self.browse(cr, uid, ids, context=context):
1267             if move.state == 'done':
1268                 res[move.id] = move.product_qty
1269             else:
1270                 sublocation_ids = self.pool.get('stock.location').search(cr, uid, [('id', 'child_of', [move.location_id.id])], context=context)
1271                 quant_ids = quant_obj.search(cr, uid, [('location_id', 'in', sublocation_ids), ('product_id', '=', move.product_id.id), ('reservation_id', '=', False)], context=context)
1272                 availability = 0
1273                 for quant in quant_obj.browse(cr, uid, quant_ids, context=context):
1274                     availability += quant.qty
1275                 res[move.id] = min(move.product_qty, availability)
1276         return res
1277
1278     def _get_move(self, cr, uid, ids, context=None):
1279         res = set()
1280         for quant in self.browse(cr, uid, ids, context=context):
1281             if quant.reservation_id:
1282                 res.add(quant.reservation_id.id)
1283         return list(res)
1284
1285     def _get_move_ids(self, cr, uid, ids, context=None):
1286         res = []
1287         for picking in self.browse(cr, uid, ids, context=context):
1288             res += [x.id for x in picking.move_lines]
1289         return res
1290
1291     _columns = {
1292         'name': fields.char('Description', required=True, select=True),
1293         'priority': fields.selection([('0', 'Not urgent'), ('1', 'Urgent')], 'Priority'),
1294         'create_date': fields.datetime('Creation Date', readonly=True, select=True),
1295         'date': fields.datetime('Date', required=True, select=True, help="Move date: scheduled date until move is done, then date of actual move processing", states={'done': [('readonly', True)]}),
1296         'date_expected': fields.datetime('Expected Date', states={'done': [('readonly', True)]}, required=True, select=True, help="Scheduled date for the processing of this move"),
1297         'product_id': fields.many2one('product.product', 'Product', required=True, select=True, domain=[('type', '<>', 'service')], states={'done': [('readonly', True)]}),
1298         # TODO: improve store to add dependency on product UoM
1299         'product_qty': fields.function(_quantity_normalize, type='float', store=True, string='Quantity',
1300             digits_compute=dp.get_precision('Product Unit of Measure'),
1301             help='Quantity in the default UoM of the product'),
1302         'product_uom_qty': fields.float('Quantity', digits_compute=dp.get_precision('Product Unit of Measure'),
1303             required=True, states={'done': [('readonly', True)]},
1304             help="This is the quantity of products from an inventory "
1305                 "point of view. For moves in the state 'done', this is the "
1306                 "quantity of products that were actually moved. For other "
1307                 "moves, this is the quantity of product that is planned to "
1308                 "be moved. Lowering this quantity does not generate a "
1309                 "backorder. Changing this quantity on assigned moves affects "
1310                 "the product reservation, and should be done with care."
1311         ),
1312         'product_uom': fields.many2one('product.uom', 'Unit of Measure', required=True, states={'done': [('readonly', True)]}),
1313         'product_uos_qty': fields.float('Quantity (UOS)', digits_compute=dp.get_precision('Product Unit of Measure'), states={'done': [('readonly', True)]}),
1314         'product_uos': fields.many2one('product.uom', 'Product UOS', states={'done': [('readonly', True)]}),
1315
1316         'product_packaging': fields.many2one('product.packaging', 'Prefered Packaging', help="It specifies attributes of packaging like type, quantity of packaging,etc."),
1317
1318         'location_id': fields.many2one('stock.location', 'Source Location', required=True, select=True, states={'done': [('readonly', True)]}, help="Sets a location if you produce at a fixed location. This can be a partner location if you subcontract the manufacturing operations."),
1319         'location_dest_id': fields.many2one('stock.location', 'Destination Location', required=True, states={'done': [('readonly', True)]}, select=True, help="Location where the system will stock the finished products."),
1320
1321         # FP Note: should we remove this?
1322         'partner_id': fields.many2one('res.partner', 'Destination Address ', states={'done': [('readonly', True)]}, help="Optional address where goods are to be delivered, specifically used for allotment"),
1323
1324
1325         'move_dest_id': fields.many2one('stock.move', 'Destination Move', help="Optional: next stock move when chaining them", select=True),
1326         'move_orig_ids': fields.one2many('stock.move', 'move_dest_id', 'Original Move', help="Optional: previous stock move when chaining them", select=True),
1327
1328         'picking_id': fields.many2one('stock.picking', 'Reference', select=True, states={'done': [('readonly', True)]}),
1329         'picking_priority': fields.related('picking_id', 'priority', type='selection', selection=[('0', 'Low'), ('1', 'Normal'), ('2', 'High')], string='Picking Priority', store={'stock.picking': (_get_move_ids, ['priority'], 10)}),
1330         'note': fields.text('Notes'),
1331         'state': fields.selection([('draft', 'New'),
1332                                    ('cancel', 'Cancelled'),
1333                                    ('waiting', 'Waiting Another Move'),
1334                                    ('confirmed', 'Waiting Availability'),
1335                                    ('assigned', 'Available'),
1336                                    ('done', 'Done'),
1337                                    ], 'Status', readonly=True, select=True,
1338                  help= "* New: When the stock move is created and not yet confirmed.\n"\
1339                        "* Waiting Another Move: This state can be seen when a move is waiting for another one, for example in a chained flow.\n"\
1340                        "* Waiting Availability: This state is reached when the procurement resolution is not straight forward. It may need the scheduler to run, a component to me manufactured...\n"\
1341                        "* Available: When products are reserved, it is set to \'Available\'.\n"\
1342                        "* Done: When the shipment is processed, the state is \'Done\'."),
1343
1344         'price_unit': fields.float('Unit Price', help="Technical field used to record the product cost set by the user during a picking confirmation (when costing method used is 'average price' or 'real'). Value given in company currency and in product uom."),  # as it's a technical field, we intentionally don't provide the digits attribute
1345
1346         'company_id': fields.many2one('res.company', 'Company', required=True, select=True),
1347         'backorder_id': fields.related('picking_id', 'backorder_id', type='many2one', relation="stock.picking", string="Back Order of", select=True),
1348         'origin': fields.char("Source"),
1349         'procure_method': fields.selection([('make_to_stock', 'Make to Stock'), ('make_to_order', 'Make to Order')], 'Procurement Method', required=True, help="Make to Stock: When needed, the product is taken from the stock or we wait for replenishment. \nMake to Order: When needed, the product is purchased or produced."),
1350
1351         # used for colors in tree views:
1352         'scrapped': fields.related('location_dest_id', 'scrap_location', type='boolean', relation='stock.location', string='Scrapped', readonly=True),
1353
1354         'quant_ids': fields.many2many('stock.quant', 'stock_quant_move_rel', 'move_id', 'quant_id', 'Moved Quants'),
1355         'reserved_quant_ids': fields.one2many('stock.quant', 'reservation_id', 'Reserved quants'),
1356         'linked_move_operation_ids': fields.one2many('stock.move.operation.link', 'move_id', string='Linked Operations', readonly=True, help='Operations that impact this move for the computation of the remaining quantities'),
1357         'remaining_qty': fields.function(_get_remaining_qty, type='float', string='Remaining Quantity',
1358                                          digits_compute=dp.get_precision('Product Unit of Measure'), states={'done': [('readonly', True)]},),
1359         'procurement_id': fields.many2one('procurement.order', 'Procurement'),
1360         'group_id': fields.many2one('procurement.group', 'Procurement Group'),
1361         'rule_id': fields.many2one('procurement.rule', 'Procurement Rule', help='The pull rule that created this stock move'),
1362         'push_rule_id': fields.many2one('stock.location.path', 'Push Rule', help='The push rule that created this stock move'),
1363         'propagate': fields.boolean('Propagate cancel and split', help='If checked, when this move is cancelled, cancel the linked move too'),
1364         'picking_type_id': fields.many2one('stock.picking.type', 'Picking Type'),
1365         'inventory_id': fields.many2one('stock.inventory', 'Inventory'),
1366         'lot_ids': fields.function(_get_lot_ids, type='many2many', relation='stock.quant', string='Lots'),
1367         'origin_returned_move_id': fields.many2one('stock.move', 'Origin return move', help='move that created the return move'),
1368         'returned_move_ids': fields.one2many('stock.move', 'origin_returned_move_id', 'All returned moves', help='Optional: all returned moves created from this move'),
1369         'availability': fields.function(_get_product_availability, type='float', string='Availability'),
1370         'restrict_lot_id': fields.many2one('stock.production.lot', 'Lot', help="Technical field used to depict a restriction on the lot of quants to consider when marking this move as 'done'"),
1371         'restrict_partner_id': fields.many2one('res.partner', 'Owner ', help="Technical field used to depict a restriction on the ownership of quants to consider when marking this move as 'done'"),
1372         'putaway_ids': fields.one2many('stock.move.putaway', 'move_id', 'Put Away Suggestions'),
1373         'route_ids': fields.many2many('stock.location.route', 'stock_location_route_move', 'move_id', 'route_id', 'Destination route', help="Preferred route to be followed by the procurement order"),
1374         'warehouse_id': fields.many2one('stock.warehouse', 'Warehouse', help="Technical field depicting the warehouse to consider for the route selection on the next procurement (if any)."),
1375     }
1376
1377     def _default_location_destination(self, cr, uid, context=None):
1378         context = context or {}
1379         if context.get('default_picking_type_id', False):
1380             pick_type = self.pool.get('stock.picking.type').browse(cr, uid, context['default_picking_type_id'], context=context)
1381             return pick_type.default_location_dest_id and pick_type.default_location_dest_id.id or False
1382         return False
1383
1384     def _default_location_source(self, cr, uid, context=None):
1385         context = context or {}
1386         if context.get('default_picking_type_id', False):
1387             pick_type = self.pool.get('stock.picking.type').browse(cr, uid, context['default_picking_type_id'], context=context)
1388             return pick_type.default_location_src_id and pick_type.default_location_src_id.id or False
1389         return False
1390
1391     def _default_destination_address(self, cr, uid, context=None):
1392         user = self.pool.get('res.users').browse(cr, uid, uid, context=context)
1393         return user.company_id.partner_id.id
1394
1395     _defaults = {
1396         'location_id': _default_location_source,
1397         'location_dest_id': _default_location_destination,
1398         'partner_id': _default_destination_address,
1399         'state': 'draft',
1400         'priority': '1',
1401         'product_qty': 1.0,
1402         'product_uom_qty': 1.0,
1403         'scrapped': False,
1404         'date': fields.datetime.now,
1405         'company_id': lambda self, cr, uid, c: self.pool.get('res.company')._company_default_get(cr, uid, 'stock.move', context=c),
1406         'date_expected': fields.datetime.now,
1407         'procure_method': 'make_to_stock',
1408         'propagate': True,
1409     }
1410
1411     def _check_uom(self, cr, uid, ids, context=None):
1412         for move in self.browse(cr, uid, ids, context=context):
1413             if move.product_id.uom_id.category_id.id != move.product_uom.category_id.id:
1414                 return False
1415         return True
1416
1417     _constraints = [
1418         (_check_uom,
1419             'You try to move a product using a UoM that is not compatible with the UoM of the product moved. Please use an UoM in the same UoM category.',
1420             ['product_uom'])]
1421
1422     def copy_data(self, cr, uid, id, default=None, context=None):
1423         if default is None:
1424             default = {}
1425         default = default.copy()
1426         default['move_orig_ids'] = []
1427         default['quant_ids'] = []
1428         default['reserved_quant_ids'] = []
1429         default['returned_move_ids'] = []
1430         default['linked_move_operation_ids'] = []
1431         default['origin_returned_move_id'] = False
1432         default['state'] = 'draft'
1433         return super(stock_move, self).copy_data(cr, uid, id, default, context)
1434
1435     def do_unreserve(self, cr, uid, move_ids, context=None):
1436         quant_obj = self.pool.get("stock.quant")
1437         for move in self.browse(cr, uid, move_ids, context=context):
1438             quant_obj.quants_unreserve(cr, uid, move, context=context)
1439             putaway_values = []
1440             for putaway_rec in move.putaway_ids:
1441                 putaway_values.append((2, putaway_rec.id))
1442             self.write(cr, uid, [move.id], {'state': 'confirmed', 'putaway_ids': putaway_values}, context=context)
1443
1444     def _prepare_procurement_from_move(self, cr, uid, move, context=None):
1445         origin = (move.group_id and (move.group_id.name + ":") or "") + (move.rule_id and move.rule_id.name or "/")
1446         group_id = move.group_id and move.group_id.id or False
1447         if move.rule_id:
1448             if move.rule_id.group_propagation_option == 'fixed' and move.rule_id.group_id:
1449                 group_id = move.rule_id.group_id.id
1450             elif move.rule_id.group_propagation_option == 'none':
1451                 group_id = False
1452         return {
1453             'name': move.rule_id and move.rule_id.name or "/",
1454             'origin': origin,
1455             'company_id': move.company_id and move.company_id.id or False,
1456             'date_planned': move.date,
1457             'product_id': move.product_id.id,
1458             'product_qty': move.product_qty,
1459             'product_uom': move.product_uom.id,
1460             'product_uos_qty': (move.product_uos and move.product_uos_qty) or move.product_qty,
1461             'product_uos': (move.product_uos and move.product_uos.id) or move.product_uom.id,
1462             'location_id': move.location_id.id,
1463             'move_dest_id': move.id,
1464             'group_id': group_id,
1465             'route_ids': [(4, x.id) for x in move.route_ids],
1466             'warehouse_id': move.warehouse_id and move.warehouse_id.id or False,
1467         }
1468
1469     def _push_apply(self, cr, uid, moves, context=None):
1470         push_obj = self.pool.get("stock.location.path")
1471         for move in moves:
1472             if not move.move_dest_id:
1473                 domain = [('location_from_id', '=', move.location_dest_id.id)]
1474                 if move.warehouse_id:
1475                     domain += ['|', ('warehouse_id', '=', move.warehouse_id.id), ('warehouse_id', '=', False)]
1476                 #priority goes to the route defined on the product and product category
1477                 route_ids = [x.id for x in move.product_id.route_ids + move.product_id.categ_id.total_route_ids]
1478                 rules = push_obj.search(cr, uid, domain + [('route_id', 'in', route_ids)], order='route_sequence, sequence', context=context)
1479                 if not rules:
1480                     #but if there's no rule matching, we try without filtering on routes
1481                     rules = push_obj.search(cr, uid, domain, order='route_sequence, sequence', context=context)
1482                 if rules:
1483                     rule = push_obj.browse(cr, uid, rules[0], context=context)
1484                     push_obj._apply(cr, uid, rule, move, context=context)
1485         return True
1486
1487     # Create the stock.move.putaway records
1488     def _putaway_apply(self, cr, uid, move, putaway, context=None):
1489         # Should call different methods here in later versions
1490         moveputaway_obj = self.pool.get('stock.move.putaway')
1491         quant_obj = self.pool.get('stock.quant')
1492         if putaway.method == 'fixed' and putaway.location_spec_id:
1493             for row in quant_obj.read_group(cr, uid, [('reservation_id', '=', move.id)], ['qty', 'lot_id'], ['lot_id'], context=context):
1494                 vals = {
1495                     'move_id': move.id,
1496                     'location_id': putaway.location_spec_id.id,
1497                     'quantity': row['qty'],
1498                     'lot_id': row.get('lot_id') and row['lot_id'][0] or False,
1499                 }
1500                 moveputaway_obj.create(cr, SUPERUSER_ID, vals, context=context)
1501
1502     def _putaway_check(self, cr, uid, ids, context=None):
1503         for move in self.browse(cr, uid, ids, context=context):
1504             putaway = self.pool.get('stock.location').get_putaway_strategy(cr, uid, move.location_dest_id, move.product_id, context=context)
1505             if putaway:
1506                 self._putaway_apply(cr, uid, move, putaway, context=context)
1507
1508     def _create_procurement(self, cr, uid, move, context=None):
1509         """ This will create a procurement order """
1510         return self.pool.get("procurement.order").create(cr, uid, self._prepare_procurement_from_move(cr, uid, move, context=context))
1511
1512     def write(self, cr, uid, ids, vals, context=None):
1513         if context is None:
1514             context = {}
1515         if isinstance(ids, (int, long)):
1516             ids = [ids]
1517         # Check that we do not modify a stock.move which is done
1518         frozen_fields = set(['product_qty', 'product_uom', 'product_uos_qty', 'product_uos', 'location_id', 'location_dest_id', 'product_id'])
1519         for move in self.browse(cr, uid, ids, context=context):
1520             if move.state == 'done':
1521                 if frozen_fields.intersection(vals):
1522                     raise osv.except_osv(_('Operation Forbidden!'),
1523                         _('Quantities, Units of Measure, Products and Locations cannot be modified on stock moves that have already been processed (except by the Administrator).'))
1524         propagated_changes_dict = {}
1525         #propagation of quantity change
1526         if vals.get('product_uom_qty'):
1527             propagated_changes_dict['product_uom_qty'] = vals['product_uom_qty']
1528         if vals.get('product_uom_id'):
1529             propagated_changes_dict['product_uom_id'] = vals['product_uom_id']
1530         #propagation of expected date:
1531         propagated_date_field = False
1532         if vals.get('date_expected'):
1533             #propagate any manual change of the expected date
1534             propagated_date_field = 'date_expected'
1535         elif (vals.get('state', '') == 'done' and vals.get('date')):
1536             #propagate also any delta observed when setting the move as done
1537             propagated_date_field = 'date'
1538
1539         if not context.get('do_not_propagate', False) and (propagated_date_field or propagated_changes_dict):
1540             #any propagation is (maybe) needed
1541             for move in self.browse(cr, uid, ids, context=context):
1542                 if move.move_dest_id and move.propagate:
1543                     if 'date_expected' in propagated_changes_dict:
1544                         propagated_changes_dict.pop('date_expected')
1545                     if propagated_date_field:
1546                         current_date = datetime.strptime(move.date_expected, DEFAULT_SERVER_DATETIME_FORMAT)
1547                         new_date = datetime.strptime(vals.get(propagated_date_field), DEFAULT_SERVER_DATETIME_FORMAT)
1548                         delta = new_date - current_date
1549                         if abs(delta.days) >= move.company_id.propagation_minimum_delta:
1550                             old_move_date = datetime.strptime(move.move_dest_id.date_expected, DEFAULT_SERVER_DATETIME_FORMAT)
1551                             new_move_date = (old_move_date + relativedelta.relativedelta(days=delta.days or 0)).strftime(DEFAULT_SERVER_DATETIME_FORMAT)
1552                             propagated_changes_dict['date_expected'] = new_move_date
1553                     #For pushed moves as well as for pulled moves, propagate by recursive call of write().
1554                     #Note that, for pulled moves we intentionally don't propagate on the procurement.
1555                     if propagated_changes_dict:
1556                         self.write(cr, uid, [move.move_dest_id.id], propagated_changes_dict, context=context)
1557         return super(stock_move, self).write(cr, uid, ids, vals, context=context)
1558
1559     def onchange_quantity(self, cr, uid, ids, product_id, product_qty, product_uom, product_uos):
1560         """ On change of product quantity finds UoM and UoS quantities
1561         @param product_id: Product id
1562         @param product_qty: Changed Quantity of product
1563         @param product_uom: Unit of measure of product
1564         @param product_uos: Unit of sale of product
1565         @return: Dictionary of values
1566         """
1567         result = {
1568             'product_uos_qty': 0.00
1569         }
1570         warning = {}
1571
1572         if (not product_id) or (product_qty <= 0.0):
1573             result['product_qty'] = 0.0
1574             return {'value': result}
1575
1576         product_obj = self.pool.get('product.product')
1577         uos_coeff = product_obj.read(cr, uid, product_id, ['uos_coeff'])
1578
1579         # Warn if the quantity was decreased
1580         if ids:
1581             for move in self.read(cr, uid, ids, ['product_qty']):
1582                 if product_qty < move['product_qty']:
1583                     warning.update({
1584                         'title': _('Information'),
1585                         'message': _("By changing this quantity here, you accept the "
1586                                 "new quantity as complete: OpenERP will not "
1587                                 "automatically generate a back order.")})
1588                 break
1589
1590         if product_uos and product_uom and (product_uom != product_uos):
1591             result['product_uos_qty'] = product_qty * uos_coeff['uos_coeff']
1592         else:
1593             result['product_uos_qty'] = product_qty
1594
1595         return {'value': result, 'warning': warning}
1596
1597     def onchange_uos_quantity(self, cr, uid, ids, product_id, product_uos_qty,
1598                           product_uos, product_uom):
1599         """ On change of product quantity finds UoM and UoS quantities
1600         @param product_id: Product id
1601         @param product_uos_qty: Changed UoS Quantity of product
1602         @param product_uom: Unit of measure of product
1603         @param product_uos: Unit of sale of product
1604         @return: Dictionary of values
1605         """
1606         result = {
1607             'product_uom_qty': 0.00
1608         }
1609         warning = {}
1610
1611         if (not product_id) or (product_uos_qty <= 0.0):
1612             result['product_uos_qty'] = 0.0
1613             return {'value': result}
1614
1615         product_obj = self.pool.get('product.product')
1616         uos_coeff = product_obj.read(cr, uid, product_id, ['uos_coeff'])
1617
1618         # Warn if the quantity was decreased
1619         for move in self.read(cr, uid, ids, ['product_uos_qty']):
1620             if product_uos_qty < move['product_uos_qty']:
1621                 warning.update({
1622                     'title': _('Warning: No Back Order'),
1623                     'message': _("By changing the quantity here, you accept the "
1624                                 "new quantity as complete: OpenERP will not "
1625                                 "automatically generate a Back Order.")})
1626                 break
1627
1628         if product_uos and product_uom and (product_uom != product_uos):
1629             result['product_uom_qty'] = product_uos_qty / uos_coeff['uos_coeff']
1630         else:
1631             result['product_uom_qty'] = product_uos_qty
1632         return {'value': result, 'warning': warning}
1633
1634     def onchange_product_id(self, cr, uid, ids, prod_id=False, loc_id=False, loc_dest_id=False, partner_id=False):
1635         """ On change of product id, if finds UoM, UoS, quantity and UoS quantity.
1636         @param prod_id: Changed Product id
1637         @param loc_id: Source location id
1638         @param loc_dest_id: Destination location id
1639         @param partner_id: Address id of partner
1640         @return: Dictionary of values
1641         """
1642         if not prod_id:
1643             return {}
1644         user = self.pool.get('res.users').browse(cr, uid, uid)
1645         lang = user and user.lang or False
1646         if partner_id:
1647             addr_rec = self.pool.get('res.partner').browse(cr, uid, partner_id)
1648             if addr_rec:
1649                 lang = addr_rec and addr_rec.lang or False
1650         ctx = {'lang': lang}
1651
1652         product = self.pool.get('product.product').browse(cr, uid, [prod_id], context=ctx)[0]
1653         uos_id = product.uos_id and product.uos_id.id or False
1654         result = {
1655             'product_uom': product.uom_id.id,
1656             'product_uos': uos_id,
1657             'product_uom_qty': 1.00,
1658             'product_uos_qty': self.pool.get('stock.move').onchange_quantity(cr, uid, ids, prod_id, 1.00, product.uom_id.id, uos_id)['value']['product_uos_qty'],
1659         }
1660         if not ids:
1661             result['name'] = product.partner_ref
1662         if loc_id:
1663             result['location_id'] = loc_id
1664         if loc_dest_id:
1665             result['location_dest_id'] = loc_dest_id
1666         return {'value': result}
1667
1668     def _picking_assign(self, cr, uid, move, context=None):
1669         if move.picking_id or not move.picking_type_id:
1670             return False
1671         context = context or {}
1672         pick_obj = self.pool.get("stock.picking")
1673         picks = []
1674         group = move.group_id and move.group_id.id or False
1675         picks = pick_obj.search(cr, uid, [
1676                 ('group_id', '=', group),
1677                 ('location_id', '=', move.location_id.id),
1678                 ('location_dest_id', '=', move.location_dest_id.id),
1679                 ('state', 'in', ['draft', 'confirmed', 'waiting'])], context=context)
1680         if picks:
1681             pick = picks[0]
1682         else:
1683             values = {
1684                 'origin': move.origin,
1685                 'company_id': move.company_id and move.company_id.id or False,
1686                 'move_type': move.group_id and move.group_id.move_type or 'one',
1687                 'partner_id': move.group_id and move.group_id.partner_id and move.group_id.partner_id.id or False,
1688                 'picking_type_id': move.picking_type_id and move.picking_type_id.id or False,
1689             }
1690             pick = pick_obj.create(cr, uid, values, context=context)
1691         move.write({'picking_id': pick})
1692         return True
1693
1694     def onchange_date(self, cr, uid, ids, date, date_expected, context=None):
1695         """ On change of Scheduled Date gives a Move date.
1696         @param date_expected: Scheduled Date
1697         @param date: Move Date
1698         @return: Move Date
1699         """
1700         if not date_expected:
1701             date_expected = time.strftime(DEFAULT_SERVER_DATETIME_FORMAT)
1702         return {'value': {'date': date_expected}}
1703
1704     def action_confirm(self, cr, uid, ids, context=None):
1705         """ Confirms stock move or put it in waiting if it's linked to another move.
1706         @return: List of ids.
1707         """
1708         states = {
1709             'confirmed': [],
1710             'waiting': []
1711         }
1712         for move in self.browse(cr, uid, ids, context=context):
1713             state = 'confirmed'
1714             for m in move.move_orig_ids:
1715                 if m.state not in ('done', 'cancel'):
1716                     state = 'waiting'
1717             states[state].append(move.id)
1718             self._picking_assign(cr, uid, move, context=context)
1719
1720         for state, write_ids in states.items():
1721             if len(write_ids):
1722                 self.write(cr, uid, write_ids, {'state': state})
1723                 if state == 'confirmed':
1724                     for move in self.browse(cr, uid, write_ids, context=context):
1725                         if move.procure_method == 'make_to_order':
1726                             self._create_procurement(cr, uid, move, context=context)
1727         moves = self.browse(cr, uid, ids, context=context)
1728         self._push_apply(cr, uid, moves, context=context)
1729         return True
1730
1731     def force_assign(self, cr, uid, ids, context=None):
1732         """ Changes the state to assigned.
1733         @return: True
1734         """
1735         return self.write(cr, uid, ids, {'state': 'assigned'})
1736
1737     def cancel_assign(self, cr, uid, ids, context=None):
1738         """ Changes the state to confirmed.
1739         @return: True
1740         """
1741         return self.write(cr, uid, ids, {'state': 'confirmed'})
1742
1743     def check_tracking(self, cr, uid, move, lot_id, context=None):
1744         """ Checks if serial number is assigned to stock move or not and raise an error if it had to.
1745         """
1746         check = False
1747         if move.product_id.track_all and not move.location_dest_id.usage == 'inventory':
1748             check = True
1749         elif move.product_id.track_incoming and move.location_id.usage in ('supplier', 'transit', 'inventory') and move.location_dest_id.usage == 'internal':
1750             check = True
1751         elif move.product_id.track_outgoing and move.location_dest_id.usage in ('customer', 'transit') and move.location_id.usage == 'internal':
1752             check = True
1753         if check and not lot_id:
1754             raise osv.except_osv(_('Warning!'), _('You must assign a serial number for the product %s') % (move.product_id.name))
1755
1756     def action_assign(self, cr, uid, ids, context=None):
1757         """ Checks the product type and accordingly writes the state.
1758         """
1759         context = context or {}
1760         quant_obj = self.pool.get("stock.quant")
1761         to_assign_moves = []
1762         for move in self.browse(cr, uid, ids, context=context):
1763             if move.state not in ('confirmed', 'waiting', 'assigned'):
1764                 continue
1765             if move.product_id.type == 'consu':
1766                 to_assign_moves.append(move.id)
1767                 continue
1768             else:
1769                 #build the prefered domain based on quants that moved in previous linked done move
1770                 prev_quant_ids = []
1771                 for m2 in move.move_orig_ids:
1772                     for q in m2.quant_ids:
1773                         prev_quant_ids.append(q.id)
1774                 prefered_domain = prev_quant_ids and [('id', 'in', prev_quant_ids)] or []
1775                 fallback_domain = prev_quant_ids and [('id', 'not in', prev_quant_ids)] or []
1776                 #we always keep the quants already assigned and try to find the remaining quantity on quants not assigned only
1777                 main_domain = [('reservation_id', '=', False), ('qty', '>', 0)]
1778                 #first try to find quants based on specific domains given by linked operations
1779                 for record in move.linked_move_operation_ids:
1780                     domain = main_domain + self.pool.get('stock.move.operation.link').get_specific_domain(cr, uid, record, context=context)
1781                     qty_already_assigned = sum([q.qty for q in record.reserved_quant_ids])
1782                     qty = record.qty - qty_already_assigned
1783                     quants = quant_obj.quants_get_prefered_domain(cr, uid, move.location_id, move.product_id, qty, domain=domain, prefered_domain=prefered_domain, fallback_domain=fallback_domain, restrict_lot_id=move.restrict_lot_id.id, restrict_partner_id=move.restrict_partner_id.id, context=context)
1784                     quant_obj.quants_reserve(cr, uid, quants, move, record, context=context)
1785                 #then if the move isn't totally assigned, try to find quants without any specific domain
1786                 if move.state != 'assigned':
1787                     qty_already_assigned = sum([q.qty for q in move.reserved_quant_ids])
1788                     qty = move.product_qty - qty_already_assigned
1789                     quants = quant_obj.quants_get_prefered_domain(cr, uid, move.location_id, move.product_id, qty, domain=main_domain, prefered_domain=prefered_domain, fallback_domain=fallback_domain, restrict_lot_id=move.restrict_lot_id.id, restrict_partner_id=move.restrict_partner_id.id, context=context)
1790                     quant_obj.quants_reserve(cr, uid, quants, move, context=context)
1791
1792         #force assignation of consumable products
1793         if to_assign_moves:
1794             self.force_assign(cr, uid, to_assign_moves, context=context)
1795         #check if a putaway rule is likely to be processed and store result on the move
1796         self._putaway_check(cr, uid, ids, context=context)
1797
1798     def action_cancel(self, cr, uid, ids, context=None):
1799         """ Cancels the moves and if all moves are cancelled it cancels the picking.
1800         @return: True
1801         """
1802         procurement_obj = self.pool.get('procurement.order')
1803         context = context or {}
1804         for move in self.browse(cr, uid, ids, context=context):
1805             if move.state == 'done':
1806                 raise osv.except_osv(_('Operation Forbidden!'),
1807                         _('You cannot cancel a stock move that has been set to \'Done\'.'))
1808             if move.reserved_quant_ids:
1809                 self.pool.get("stock.quant").quants_unreserve(cr, uid, move, context=context)
1810             if context.get('cancel_procurement'):
1811                 if move.propagate:
1812                     procurement_ids = procurement_obj.search(cr, uid, [('move_dest_id', '=', move.id)], context=context)
1813                     procurement_obj.cancel(cr, uid, procurement_ids, context=context)
1814             elif move.move_dest_id:
1815                 #cancel chained moves
1816                 if move.propagate:
1817                     self.action_cancel(cr, uid, [move.move_dest_id.id], context=context)
1818                 elif move.move_dest_id.state == 'waiting':
1819                     self.write(cr, uid, [move.move_dest_id.id], {'state': 'confirmed'})
1820         return self.write(cr, uid, ids, {'state': 'cancel', 'move_dest_id': False})
1821
1822     def action_done(self, cr, uid, ids, context=None):
1823         """ Makes the move done and if all moves are done, it will finish the picking.
1824         It assumes that quants are already assigned to stock moves.
1825         Putaway strategies should be applied
1826         @return:
1827         """
1828         context = context or {}
1829         picking_obj = self.pool.get("stock.picking")
1830         quant_obj = self.pool.get("stock.quant")
1831         pack_op_obj = self.pool.get("stock.pack.operation")
1832         todo = [move.id for move in self.browse(cr, uid, ids, context=context) if move.state == "draft"]
1833         if todo:
1834             self.action_confirm(cr, uid, todo, context=context)
1835
1836         pickings = set()
1837         procurement_ids = []
1838         for move in self.browse(cr, uid, ids, context=context):
1839             if move.picking_id:
1840                 pickings.add(move.picking_id.id)
1841             qty = move.product_qty
1842             main_domain = [('qty', '>', 0)]
1843             prefered_domain = [('reservation_id', '=', move.id)]
1844             fallback_domain = [('reservation_id', '=', False)]
1845             #first, process the move per linked operation first because it may imply some specific domains to consider
1846             for record in move.linked_move_operation_ids:
1847                 self.check_tracking(cr, uid, move, record.operation_id.lot_id.id, context=context)
1848                 dom = main_domain + self.pool.get('stock.move.operation.link').get_specific_domain(cr, uid, record, context=context)
1849                 quants = quant_obj.quants_get_prefered_domain(cr, uid, move.location_id, move.product_id, record.qty, domain=dom, prefered_domain=prefered_domain, fallback_domain=fallback_domain, restrict_lot_id=move.restrict_lot_id.id, restrict_partner_id=move.restrict_partner_id.id, context=context)
1850                 package_id = False
1851                 if not record.operation_id.package_id:
1852                     #if a package and a result_package is given, we don't enter here because it will be processed by process_packaging() later
1853                     #but for operations having only result_package_id, we will create new quants in the final package directly
1854                     package_id = record.operation_id.result_package_id.id or False
1855                 quant_obj.quants_move(cr, uid, quants, move, lot_id=record.operation_id.lot_id.id, owner_id=record.operation_id.owner_id.id, src_package_id=record.operation_id.package_id.id, dest_package_id=package_id, context=context)
1856                 #packaging process
1857                 pack_op_obj.process_packaging(cr, uid, record.operation_id, quants, context=context)
1858                 qty -= record.qty
1859             #then if the total quantity processed this way isn't enough, process the remaining quantity without any specific domain
1860             if qty > 0:
1861                 self.check_tracking(cr, uid, move, move.restrict_lot_id.id, context=context)
1862                 quants = quant_obj.quants_get_prefered_domain(cr, uid, move.location_id, move.product_id, qty, domain=main_domain, prefered_domain=prefered_domain, fallback_domain=fallback_domain, restrict_lot_id=move.restrict_lot_id.id, restrict_partner_id=move.restrict_partner_id.id, context=context)
1863                 quant_obj.quants_move(cr, uid, quants, move, context=context)
1864             #unreserve the quants and make them available for other operations/moves
1865             quant_obj.quants_unreserve(cr, uid, move, context=context)
1866
1867             #Check moves that were pushed
1868             if move.move_dest_id.state in ('waiting', 'confirmed'):
1869                 other_upstream_move_ids = self.search(cr, uid, [('id', '!=', move.id), ('state', 'not in', ['done', 'cancel']),
1870                                             ('move_dest_id', '=', move.move_dest_id.id)], context=context)
1871                 #If no other moves for the move that got pushed:
1872                 if not other_upstream_move_ids and move.move_dest_id.state in ('waiting', 'confirmed'):
1873                     self.action_assign(cr, uid, [move.move_dest_id.id], context=context)
1874             if move.procurement_id:
1875                 procurement_ids.append(move.procurement_id.id)
1876         self.write(cr, uid, ids, {'state': 'done', 'date': time.strftime(DEFAULT_SERVER_DATETIME_FORMAT)}, context=context)
1877         self.pool.get('procurement.order').check(cr, uid, procurement_ids, context=context)
1878         #check picking state to set the date_done is needed
1879         done_picking = []
1880         for picking in picking_obj.browse(cr, uid, list(pickings), context=context):
1881             if picking.state == 'done' and not picking.date_done:
1882                 done_picking.append(picking.id)
1883         if done_picking:
1884             picking_obj.write(cr, uid, done_picking, {'date_done': time.strftime(DEFAULT_SERVER_DATETIME_FORMAT)}, context=context)
1885         return True
1886
1887     def unlink(self, cr, uid, ids, context=None):
1888         context = context or {}
1889         for move in self.browse(cr, uid, ids, context=context):
1890             if move.state not in ('draft', 'cancel'):
1891                 raise osv.except_osv(_('User Error!'), _('You can only delete draft moves.'))
1892         return super(stock_move, self).unlink(cr, uid, ids, context=context)
1893
1894     def action_scrap(self, cr, uid, ids, quantity, location_id, restrict_lot_id=False, context=None):
1895         """ Move the scrap/damaged product into scrap location
1896         @param cr: the database cursor
1897         @param uid: the user id
1898         @param ids: ids of stock move object to be scrapped
1899         @param quantity : specify scrap qty
1900         @param location_id : specify scrap location
1901         @param context: context arguments
1902         @return: Scraped lines
1903         """
1904         #quantity should be given in MOVE UOM
1905         if quantity <= 0:
1906             raise osv.except_osv(_('Warning!'), _('Please provide a positive quantity to scrap.'))
1907         res = []
1908         for move in self.browse(cr, uid, ids, context=context):
1909             source_location = move.location_id
1910             if move.state == 'done':
1911                 source_location = move.location_dest_id
1912             #Previously used to prevent scraping from virtual location but not necessary anymore
1913             #if source_location.usage != 'internal':
1914                 #restrict to scrap from a virtual location because it's meaningless and it may introduce errors in stock ('creating' new products from nowhere)
1915                 #raise osv.except_osv(_('Error!'), _('Forbidden operation: it is not allowed to scrap products from a virtual location.'))
1916             move_qty = move.product_qty
1917             uos_qty = quantity / move_qty * move.product_uos_qty
1918             default_val = {
1919                 'location_id': source_location.id,
1920                 'product_uom_qty': quantity,
1921                 'product_uos_qty': uos_qty,
1922                 'state': move.state,
1923                 'scrapped': True,
1924                 'location_dest_id': location_id,
1925                 'restrict_lot_id': restrict_lot_id,
1926             }
1927             new_move = self.copy(cr, uid, move.id, default_val)
1928
1929             res += [new_move]
1930             product_obj = self.pool.get('product.product')
1931             for product in product_obj.browse(cr, uid, [move.product_id.id], context=context):
1932                 if move.picking_id:
1933                     uom = product.uom_id.name if product.uom_id else ''
1934                     message = _("%s %s %s has been <b>moved to</b> scrap.") % (quantity, uom, product.name)
1935                     move.picking_id.message_post(body=message)
1936
1937         self.action_done(cr, uid, res, context=context)
1938         return res
1939
1940     def action_consume(self, cr, uid, ids, quantity, location_id=False, restrict_lot_id=False, context=None):
1941         """ Consumed product with specific quantity from specific source location. This correspond to a split of the move (or write if the quantity to consume is >= than the quantity of the move) followed by an action_done
1942         @param ids: ids of stock move object to be consumed
1943         @param quantity : specify consume quantity (given in move UoM)
1944         @param location_id : specify source location
1945         @return: Consumed lines
1946         """
1947         uom_obj = self.pool.get('product.uom')
1948         if context is None:
1949             context = {}
1950         if quantity <= 0:
1951             raise osv.except_osv(_('Warning!'), _('Please provide proper quantity.'))
1952         res = []
1953         for move in self.browse(cr, uid, ids, context=context):
1954             move_qty = move.product_qty
1955             uom_qty = uom_obj._compute_qty(cr, uid, move.product_id.uom_id.id, quantity, move.product_uom.id)
1956             if move_qty <= 0:
1957                 raise osv.except_osv(_('Error!'), _('Cannot consume a move with negative or zero quantity.'))
1958             quantity_rest = move.product_qty - uom_qty
1959             if quantity_rest > 0:
1960                 ctx = context.copy()
1961                 if location_id:
1962                     ctx['source_location_id'] = location_id
1963                 res.append(self.split(cr, uid, move, move_qty - quantity_rest, restrict_lot_id=restrict_lot_id, context=ctx))
1964             else:
1965                 res.append(move.id)
1966                 if location_id:
1967                     self.write(cr, uid, [move.id], {'location_id': location_id, 'restrict_lot_id': restrict_lot_id}, context=context)
1968
1969         self.action_done(cr, uid, res, context=context)
1970         return res
1971
1972     def split(self, cr, uid, move, qty, restrict_lot_id=False, context=None):
1973         """ Splits qty from move move into a new move
1974         :param move: browse record
1975         :param qty: float. quantity to split (given in product UoM)
1976         :param context: dictionay. can contains the special key 'source_location_id' in order to force the source location when copying the move
1977         """
1978         if move.product_qty <= qty or qty == 0:
1979             return move.id
1980
1981         uom_obj = self.pool.get('product.uom')
1982         context = context or {}
1983
1984         uom_qty = uom_obj._compute_qty(cr, uid, move.product_id.uom_id.id, qty, move.product_uom.id)
1985         uos_qty = uom_qty * move.product_uos_qty / move.product_uom_qty
1986
1987         if move.state in ('done', 'cancel'):
1988             raise osv.except_osv(_('Error'), _('You cannot split a move done'))
1989
1990         defaults = {
1991             'product_uom_qty': uom_qty,
1992             'product_uos_qty': uos_qty,
1993             'state': move.state,
1994             'procure_method': 'make_to_stock',
1995             'move_dest_id': False,
1996             'reserved_quant_ids': [],
1997             'restrict_lot_id': restrict_lot_id,
1998         }
1999         if context.get('source_location_id'):
2000             defaults['location_id'] = context['source_location_id']
2001         new_move = self.copy(cr, uid, move.id, defaults)
2002
2003         ctx = context.copy()
2004         ctx['do_not_propagate'] = True
2005         self.write(cr, uid, [move.id], {
2006             'product_uom_qty': move.product_uom_qty - uom_qty,
2007             'product_uos_qty': move.product_uos_qty - uos_qty,
2008             #'reserved_quant_ids': [(6,0,[])]  SHOULD NOT CHANGE as it has been reserved already
2009         }, context=ctx)
2010
2011         if move.move_dest_id and move.propagate:
2012             new_move_prop = self.split(cr, uid, move.move_dest_id, qty, context=context)
2013             self.write(cr, uid, [new_move], {'move_dest_id': new_move_prop}, context=context)
2014
2015         self.action_confirm(cr, uid, [new_move], context=context)
2016         return new_move
2017
2018 class stock_inventory(osv.osv):
2019     _name = "stock.inventory"
2020     _description = "Inventory"
2021
2022     def _get_move_ids_exist(self, cr, uid, ids, field_name, arg, context=None):
2023         res = {}
2024         for inv in self.browse(cr, uid, ids, context=context):
2025             res[inv.id] = False
2026             if inv.move_ids:
2027                 res[inv.id] = True
2028         return res
2029
2030     def _get_available_filters(self, cr, uid, context=None):
2031         """
2032            This function will return the list of filter allowed according to the options checked
2033            in 'Settings\Warehouse'.
2034
2035            :rtype: list of tuple
2036         """
2037         #default available choices
2038         res_filter = [('none', _('All products of a whole location')), ('product', _('One product only'))]
2039         settings_obj = self.pool.get('stock.config.settings')
2040         config_ids = settings_obj.search(cr, uid, [], limit=1, order='id DESC', context=context)
2041         #If we don't have updated config until now, all fields are by default false and so should be not dipslayed
2042         if not config_ids:
2043             return res_filter
2044
2045         stock_settings = settings_obj.browse(cr, uid, config_ids[0], context=context)
2046         if stock_settings.group_stock_tracking_owner:
2047             res_filter.append(('owner', _('One owner only')))
2048             res_filter.append(('product_owner', _('One product for a specific owner')))
2049         if stock_settings.group_stock_tracking_lot:
2050             res_filter.append(('lot', _('One Lot/Serial Number')))
2051         if stock_settings.group_stock_packaging:
2052             res_filter.append(('pack', _('A Pack')))
2053         return res_filter
2054
2055     _columns = {
2056         'name': fields.char('Inventory Reference', size=64, required=True, readonly=True, states={'draft': [('readonly', False)]}, help="Inventory Name."),
2057         'date': fields.datetime('Inventory Date', required=True, readonly=True, states={'draft': [('readonly', False)]}, help="Inventory Create Date."),
2058         'date_done': fields.datetime('Date done', help="Inventory Validation Date."),
2059         'line_ids': fields.one2many('stock.inventory.line', 'inventory_id', 'Inventories', readonly=False, states={'done': [('readonly', True)]}, help="Inventory Lines."),
2060         'move_ids': fields.one2many('stock.move', 'inventory_id', 'Created Moves', help="Inventory Moves."),
2061         'state': fields.selection([('draft', 'Draft'), ('cancel', 'Cancelled'), ('confirm', 'In Progress'), ('done', 'Validated')], 'Status', readonly=True, select=True),
2062         'company_id': fields.many2one('res.company', 'Company', required=True, select=True, readonly=True, states={'draft': [('readonly', False)]}),
2063         'location_id': fields.many2one('stock.location', 'Location', required=True, readonly=True, states={'draft': [('readonly', False)]}),
2064         'product_id': fields.many2one('product.product', 'Product', readonly=True, states={'draft': [('readonly', False)]}, help="Specify Product to focus your inventory on a particular Product."),
2065         'package_id': fields.many2one('stock.quant.package', 'Pack', readonly=True, states={'draft': [('readonly', False)]}, help="Specify Pack to focus your inventory on a particular Pack."),
2066         'partner_id': fields.many2one('res.partner', 'Owner', readonly=True, states={'draft': [('readonly', False)]}, help="Specify Owner to focus your inventory on a particular Owner."),
2067         'lot_id': fields.many2one('stock.production.lot', 'Lot/Serial Number', readonly=True, states={'draft': [('readonly', False)]}, help="Specify Lot/Serial Number to focus your inventory on a particular Lot/Serial Number."),
2068         'move_ids_exist': fields.function(_get_move_ids_exist, type='boolean', string=' Stock Move Exists?', help='technical field for attrs in view'),
2069         'filter': fields.selection(_get_available_filters, 'Selection Filter'),
2070     }
2071
2072     def _default_stock_location(self, cr, uid, context=None):
2073         try:
2074             warehouse = self.pool.get('ir.model.data').get_object(cr, uid, 'stock', 'warehouse0')
2075             return warehouse.lot_stock_id.id
2076         except:
2077             return False
2078
2079     _defaults = {
2080         'date': fields.datetime.now,
2081         'state': 'draft',
2082         'company_id': lambda self, cr, uid, c: self.pool.get('res.company')._company_default_get(cr, uid, 'stock.inventory', context=c),
2083         'location_id': _default_stock_location,
2084     }
2085
2086     def set_checked_qty(self, cr, uid, ids, context=None):
2087         inventory = self.browse(cr, uid, ids[0], context=context)
2088         line_ids = [line.id for line in inventory.line_ids]
2089         self.pool.get('stock.inventory.line').write(cr, uid, line_ids, {'product_qty': 0})
2090         return True
2091
2092     def copy(self, cr, uid, id, default=None, context=None):
2093         if default is None:
2094             default = {}
2095         default = default.copy()
2096         default.update({'move_ids': [], 'date_done': False})
2097         return super(stock_inventory, self).copy(cr, uid, id, default, context=context)
2098
2099     def _inventory_line_hook(self, cr, uid, inventory_line, move_vals):
2100         """ Creates a stock move from an inventory line
2101         @param inventory_line:
2102         @param move_vals:
2103         @return:
2104         """
2105         return self.pool.get('stock.move').create(cr, uid, move_vals)
2106
2107     def action_done(self, cr, uid, ids, context=None):
2108         """ Finish the inventory
2109         @return: True
2110         """
2111         if context is None:
2112             context = {}
2113         move_obj = self.pool.get('stock.move')
2114         for inv in self.browse(cr, uid, ids, context=context):
2115             if not inv.move_ids:
2116                 self.action_check(cr, uid, [inv.id], context=context)
2117             inv.refresh()
2118             #the action_done on stock_move has to be done in 2 steps:
2119             #first, we start moving the products from stock to inventory loss
2120             move_obj.action_done(cr, uid, [x.id for x in inv.move_ids if x.location_id.usage == 'internal'], context=context)
2121             #then, we move from inventory loss. This 2 steps process is needed because some moved quant may need to be put again in stock
2122             move_obj.action_done(cr, uid, [x.id for x in inv.move_ids if x.location_id.usage != 'internal'], context=context)
2123             self.write(cr, uid, [inv.id], {'state': 'done', 'date_done': time.strftime(DEFAULT_SERVER_DATETIME_FORMAT)}, context=context)
2124         return True
2125
2126     def _create_stock_move(self, cr, uid, inventory, todo_line, context=None):
2127         stock_move_obj = self.pool.get('stock.move')
2128         product_obj = self.pool.get('product.product')
2129         inventory_location_id = product_obj.browse(cr, uid, todo_line['product_id'], context=context).property_stock_inventory.id
2130         vals = {
2131             'name': _('INV:') + (inventory.name or ''),
2132             'product_id': todo_line['product_id'],
2133             'product_uom': todo_line['product_uom_id'],
2134             'date': inventory.date,
2135             'company_id': inventory.company_id.id,
2136             'inventory_id': inventory.id,
2137             'state': 'assigned',
2138             'restrict_lot_id': todo_line.get('prod_lot_id'),
2139             'restrict_partner_id': todo_line.get('partner_id'),
2140          }
2141
2142         if todo_line['product_qty'] < 0:
2143             #found more than expected
2144             vals['location_id'] = inventory_location_id
2145             vals['location_dest_id'] = todo_line['location_id']
2146             vals['product_uom_qty'] = -todo_line['product_qty']
2147         else:
2148             #found less than expected
2149             vals['location_id'] = todo_line['location_id']
2150             vals['location_dest_id'] = inventory_location_id
2151             vals['product_uom_qty'] = todo_line['product_qty']
2152         return stock_move_obj.create(cr, uid, vals, context=context)
2153
2154     def action_check(self, cr, uid, ids, context=None):
2155         """ Checks the inventory and computes the stock move to do
2156         @return: True
2157         """
2158         inventory_line_obj = self.pool.get('stock.inventory.line')
2159         stock_move_obj = self.pool.get('stock.move')
2160         for inventory in self.browse(cr, uid, ids, context=context):
2161             #first remove the existing stock moves linked to this inventory
2162             move_ids = [move.id for move in inventory.move_ids]
2163             stock_move_obj.unlink(cr, uid, move_ids, context=context)
2164             #compute what should be in the inventory lines
2165             theorical_lines = self._get_inventory_lines(cr, uid, inventory, context=context)
2166             for line in inventory.line_ids:
2167                 #compare the inventory lines to the theorical ones and store the diff in theorical_lines
2168                 inventory_line_obj._resolve_inventory_line(cr, uid, line, theorical_lines, context=context)
2169             #each theorical_lines where product_qty is not 0 is a difference for which we need to create a stock move
2170             for todo_line in theorical_lines:
2171                 if todo_line['product_qty'] != 0:
2172                     self._create_stock_move(cr, uid, inventory, todo_line, context=context)
2173
2174     def action_cancel_draft(self, cr, uid, ids, context=None):
2175         """ Cancels the stock move and change inventory state to draft.
2176         @return: True
2177         """
2178         for inv in self.browse(cr, uid, ids, context=context):
2179             self.pool.get('stock.move').action_cancel(cr, uid, [x.id for x in inv.move_ids], context=context)
2180             self.write(cr, uid, [inv.id], {'state': 'draft'}, context=context)
2181         return True
2182
2183     def action_cancel_inventory(self, cr, uid, ids, context=None):
2184         self.action_cancel_draft(cr, uid, ids, context=context)
2185
2186     def prepare_inventory(self, cr, uid, ids, context=None):
2187         inventory_line_obj = self.pool.get('stock.inventory.line')
2188         for inventory in self.browse(cr, uid, ids, context=context):
2189             #clean the existing inventory lines before redoing an inventory proposal
2190             line_ids = [line.id for line in inventory.line_ids]
2191             inventory_line_obj.unlink(cr, uid, line_ids, context=context)
2192             #compute the inventory lines and create them
2193             vals = self._get_inventory_lines(cr, uid, inventory, context=context)
2194             for product_line in vals:
2195                 inventory_line_obj.create(cr, uid, product_line, context=context)
2196         return self.write(cr, uid, ids, {'state': 'confirm'})
2197
2198     def _get_inventory_lines(self, cr, uid, inventory, context=None):
2199         location_obj = self.pool.get('stock.location')
2200         product_obj = self.pool.get('product.product')
2201         location_ids = location_obj.search(cr, uid, [('id', 'child_of', [inventory.location_id.id])], context=context)
2202         domain = ' location_id in %s'
2203         args = (tuple(location_ids),)
2204         if inventory.partner_id:
2205             domain += ' and owner_id = %s'
2206             args += (inventory.partner_id.id,)
2207         if inventory.lot_id:
2208             domain += ' and lot_id = %s'
2209             args += (inventory.lot_id.id,)
2210         if inventory.product_id:
2211             domain += 'and product_id = %s'
2212             args += (inventory.product_id.id,)
2213         if inventory.package_id:
2214             domain += ' and package_id = %s'
2215             args += (inventory.package_id.id,)
2216         cr.execute('''
2217            SELECT product_id, sum(qty) as product_qty, location_id, lot_id as prod_lot_id, package_id, owner_id as partner_id
2218            FROM stock_quant WHERE''' + domain + '''
2219            GROUP BY product_id, location_id, lot_id, package_id, partner_id
2220         ''', args)
2221         vals = []
2222         for product_line in cr.dictfetchall():
2223             #replace the None the dictionary by False, because falsy values are tested later on
2224             for key, value in product_line.items():
2225                 if not value:
2226                     product_line[key] = False
2227             product_line['inventory_id'] = inventory.id
2228             product_line['th_qty'] = product_line['product_qty']
2229             if product_line['product_id']:
2230                 product = product_obj.browse(cr, uid, product_line['product_id'], context=context)
2231                 product_line['product_uom_id'] = product.uom_id.id
2232             vals.append(product_line)
2233         return vals
2234
2235 class stock_inventory_line(osv.osv):
2236     _name = "stock.inventory.line"
2237     _description = "Inventory Line"
2238     _rec_name = "inventory_id"
2239     _order = "inventory_id, location_name, product_code, product_name, prod_lot_id"
2240
2241     def _get_product_name_change(self, cr, uid, ids, context=None):
2242         return self.pool.get('stock.inventory.line').search(cr, uid, [('product_id', 'in', ids)], context=context)
2243
2244     def _get_location_change(self, cr, uid, ids, context=None):
2245         return self.pool.get('stock.inventory.line').search(cr, uid, [('location_id', 'in', ids)], context=context)
2246
2247     _columns = {
2248         'inventory_id': fields.many2one('stock.inventory', 'Inventory', ondelete='cascade', select=True),
2249         'location_id': fields.many2one('stock.location', 'Location', required=True, select=True),
2250         'product_id': fields.many2one('product.product', 'Product', required=True, select=True),
2251         'package_id': fields.many2one('stock.quant.package', 'Pack', select=True),
2252         'product_uom_id': fields.many2one('product.uom', 'Product Unit of Measure', required=True),
2253         'product_qty': fields.float('Checked Quantity', digits_compute=dp.get_precision('Product Unit of Measure')),
2254         'company_id': fields.related('inventory_id', 'company_id', type='many2one', relation='res.company', string='Company', store=True, select=True, readonly=True),
2255         'prod_lot_id': fields.many2one('stock.production.lot', 'Serial Number', domain="[('product_id','=',product_id)]"),
2256         'state': fields.related('inventory_id', 'state', type='char', string='Status', readonly=True),
2257         'th_qty': fields.float('Theoretical Quantity', readonly=True),
2258         'partner_id': fields.many2one('res.partner', 'Owner'),
2259         'product_name': fields.related('product_id', 'name', type='char', string='Product name', store={
2260                                                                                             'product.product': (_get_product_name_change, ['name', 'default_code'], 20),
2261                                                                                             'stock.inventory.line': (lambda self, cr, uid, ids, c={}: ids, ['product_id'], 20),}),
2262         'product_code': fields.related('product_id', 'default_code', type='char', string='Product code', store={
2263                                                                                             'product.product': (_get_product_name_change, ['name', 'default_code'], 20),
2264                                                                                             'stock.inventory.line': (lambda self, cr, uid, ids, c={}: ids, ['product_id'], 20),}),
2265         'location_name': fields.related('location_id', 'complete_name', type='char', string='Location name', store={
2266                                                                                             'stock.location': (_get_location_change, ['name', 'location_id', 'active'], 20),
2267                                                                                             'stock.inventory.line': (lambda self, cr, uid, ids, c={}: ids, ['location_id'], 20),}),
2268     }
2269
2270     _defaults = {
2271         'product_qty': 1,
2272     }
2273
2274     def _resolve_inventory_line(self, cr, uid, inventory_line, theorical_lines, context=None):
2275         #TODO : package_id management !
2276         found = False
2277         uom_obj = self.pool.get('product.uom')
2278         for th_line in theorical_lines:
2279             #We try to match the inventory line with a theorical line with same product, lot, location and owner
2280             if th_line['location_id'] == inventory_line.location_id.id and th_line['product_id'] == inventory_line.product_id.id and th_line['prod_lot_id'] == inventory_line.prod_lot_id.id and th_line['partner_id'] == inventory_line.partner_id.id:
2281                 uom_reference = inventory_line.product_id.uom_id
2282                 real_qty = uom_obj._compute_qty_obj(cr, uid, inventory_line.product_uom_id, inventory_line.product_qty, uom_reference)
2283                 th_line['product_qty'] -= real_qty
2284                 found = True
2285                 break
2286         #if it was still not found, we add it to the theorical lines so that it will create a stock move for it
2287         if not found:
2288             vals = {
2289                 'inventory_id': inventory_line.inventory_id.id,
2290                 'location_id': inventory_line.location_id.id,
2291                 'product_id': inventory_line.product_id.id,
2292                 'product_uom_id': inventory_line.product_id.uom_id.id,
2293                 'product_qty': -inventory_line.product_qty,
2294                 'prod_lot_id': inventory_line.prod_lot_id.id,
2295                 'partner_id': inventory_line.partner_id.id,
2296             }
2297             theorical_lines.append(vals)
2298
2299     def on_change_product_id(self, cr, uid, ids, location_id, product, uom=False, owner_id=False, lot_id=False, package_id=False, context=None):
2300         """ Changes UoM and name if product_id changes.
2301         @param location_id: Location id
2302         @param product: Changed product_id
2303         @param uom: UoM product
2304         @return:  Dictionary of changed values
2305         """
2306         context = context or {}
2307         if not product:
2308             return {'value': {'product_qty': 0.0, 'product_uom_id': False}}
2309         uom_obj = self.pool.get('product.uom')
2310         ctx = context.copy()
2311         ctx['location'] = location_id
2312         ctx['lot_id'] = lot_id
2313         ctx['owner_id'] = owner_id
2314         ctx['package_id'] = package_id
2315         obj_product = self.pool.get('product.product').browse(cr, uid, product, context=ctx)
2316         th_qty = obj_product.qty_available
2317         if uom and uom != obj_product.uom_id.id:
2318             uom_record = uom_obj.browse(cr, uid, uom, context=context)
2319             th_qty = uom_obj._compute_qty_obj(cr, uid, obj_product.uom_id, th_qty, uom_record)
2320         return {'value': {'th_qty': th_qty, 'product_uom_id': uom or obj_product.uom_id.id}}
2321
2322
2323 #----------------------------------------------------------
2324 # Stock Warehouse
2325 #----------------------------------------------------------
2326 class stock_warehouse(osv.osv):
2327     _name = "stock.warehouse"
2328     _description = "Warehouse"
2329
2330     _columns = {
2331         'name': fields.char('Name', size=128, required=True, select=True),
2332         'company_id': fields.many2one('res.company', 'Company', required=True, select=True),
2333         'partner_id': fields.many2one('res.partner', 'Address'),
2334         'view_location_id': fields.many2one('stock.location', 'View Location', required=True, domain=[('usage', '=', 'view')]),
2335         'lot_stock_id': fields.many2one('stock.location', 'Location Stock', required=True, domain=[('usage', '=', 'internal')]),
2336         'code': fields.char('Short Name', size=5, required=True, help="Short name used to identify your warehouse"),
2337         'route_ids': fields.many2many('stock.location.route', 'stock_route_warehouse', 'warehouse_id', 'route_id', 'Routes', domain="[('warehouse_selectable', '=', True)]", help='Defaults routes through the warehouse'),
2338         'reception_steps': fields.selection([
2339             ('one_step', 'Receive goods directly in stock (1 step)'),
2340             ('two_steps', 'Unload in input location then go to stock (2 steps)'),
2341             ('three_steps', 'Unload in input location, go through a quality control before being admitted in stock (3 steps)')], 'Incoming Shipments', required=True),
2342         'delivery_steps': fields.selection([
2343             ('ship_only', 'Ship directly from stock (Ship only)'),
2344             ('pick_ship', 'Bring goods to output location before shipping (Pick + Ship)'),
2345             ('pick_pack_ship', 'Make packages into a dedicated location, then bring them to the output location for shipping (Pick + Pack + Ship)')], 'Outgoing Shippings', required=True),
2346         'wh_input_stock_loc_id': fields.many2one('stock.location', 'Input Location'),
2347         'wh_qc_stock_loc_id': fields.many2one('stock.location', 'Quality Control Location'),
2348         'wh_output_stock_loc_id': fields.many2one('stock.location', 'Output Location'),
2349         'wh_pack_stock_loc_id': fields.many2one('stock.location', 'Packing Location'),
2350         'mto_pull_id': fields.many2one('procurement.rule', 'MTO rule'),
2351         'pick_type_id': fields.many2one('stock.picking.type', 'Pick Type'),
2352         'pack_type_id': fields.many2one('stock.picking.type', 'Pack Type'),
2353         'out_type_id': fields.many2one('stock.picking.type', 'Out Type'),
2354         'in_type_id': fields.many2one('stock.picking.type', 'In Type'),
2355         'int_type_id': fields.many2one('stock.picking.type', 'Internal Type'),
2356         'crossdock_route_id': fields.many2one('stock.location.route', 'Crossdock Route'),
2357         'reception_route_id': fields.many2one('stock.location.route', 'Reception Route'),
2358         'delivery_route_id': fields.many2one('stock.location.route', 'Delivery Route'),
2359         'resupply_from_wh': fields.boolean('Resupply From Other Warehouses'),
2360         'resupply_wh_ids': fields.many2many('stock.warehouse', 'stock_wh_resupply_table', 'supplied_wh_id', 'supplier_wh_id', 'Resupply Warehouses'),
2361         'resupply_route_ids': fields.one2many('stock.location.route', 'supplied_wh_id', 'Resupply Routes'),
2362         'default_resupply_wh_id': fields.many2one('stock.warehouse', 'Default Resupply Warehouse'),
2363     }
2364
2365     def onchange_filter_default_resupply_wh_id(self, cr, uid, ids, default_resupply_wh_id, resupply_wh_ids, context=None):
2366         resupply_wh_ids = set([x['id'] for x in (self.resolve_2many_commands(cr, uid, 'resupply_wh_ids', resupply_wh_ids, ['id']))])
2367         if default_resupply_wh_id: #If we are removing the default resupply, we don't have default_resupply_wh_id 
2368             resupply_wh_ids.add(default_resupply_wh_id)
2369         resupply_wh_ids = list(resupply_wh_ids)        
2370         return {'value': {'resupply_wh_ids': resupply_wh_ids}}
2371
2372     def _get_inter_wh_location(self, cr, uid, warehouse, context=None):
2373         ''' returns a tuple made of the browse record of customer location and the browse record of supplier location'''
2374         data_obj = self.pool.get('ir.model.data')
2375         try:
2376             inter_wh_loc = data_obj.get_object_reference(cr, uid, 'stock', 'stock_location_inter_wh')[1]
2377         except:
2378             inter_wh_loc = False
2379         return inter_wh_loc
2380
2381     def _get_all_products_to_resupply(self, cr, uid, warehouse, context=None):
2382         return self.pool.get('product.product').search(cr, uid, [], context=context)
2383
2384     def _assign_route_on_products(self, cr, uid, warehouse, inter_wh_route_id, context=None):
2385         product_ids = self._get_all_products_to_resupply(cr, uid, warehouse, context=context)
2386         self.pool.get('product.product').write(cr, uid, product_ids, {'route_ids': [(4, inter_wh_route_id)]}, context=context)
2387
2388     def _unassign_route_on_products(self, cr, uid, warehouse, inter_wh_route_id, context=None):
2389         product_ids = self._get_all_products_to_resupply(cr, uid, warehouse, context=context)
2390         self.pool.get('product.product').write(cr, uid, product_ids, {'route_ids': [(3, inter_wh_route_id)]}, context=context)
2391
2392     def _get_inter_wh_route(self, cr, uid, warehouse, wh, context=None):
2393         return {
2394             'name': _('%s: Supply Product from %s') % (warehouse.name, wh.name),
2395             'warehouse_selectable': False,
2396             'product_selectable': True,
2397             'product_categ_selectable': True,
2398             'supplied_wh_id': warehouse.id,
2399             'supplier_wh_id': wh.id,
2400         }
2401
2402     def _create_resupply_routes(self, cr, uid, warehouse, supplier_warehouses, default_resupply_wh, context=None):
2403         location_obj = self.pool.get('stock.location')
2404         route_obj = self.pool.get('stock.location.route')
2405         pull_obj = self.pool.get('procurement.rule')
2406         #create route selectable on the product to resupply the warehouse from another one
2407         inter_wh_location_id = self._get_inter_wh_location(cr, uid, warehouse, context=context)
2408         if inter_wh_location_id:
2409             input_loc = warehouse.wh_input_stock_loc_id
2410             if warehouse.reception_steps == 'one_step':
2411                 input_loc = warehouse.lot_stock_id
2412             inter_wh_location = location_obj.browse(cr, uid, inter_wh_location_id, context=context)
2413             for wh in supplier_warehouses:
2414                 output_loc = wh.wh_output_stock_loc_id
2415                 if wh.delivery_steps == 'ship_only':
2416                     output_loc = wh.lot_stock_id
2417                 inter_wh_route_vals = self._get_inter_wh_route(cr, uid, warehouse, wh, context=context)
2418                 inter_wh_route_id = route_obj.create(cr, uid, vals=inter_wh_route_vals, context=context)
2419                 values = [(output_loc, inter_wh_location, wh.out_type_id.id, wh), (inter_wh_location, input_loc, warehouse.in_type_id.id, warehouse)]
2420                 pull_rules_list = self._get_supply_pull_rules(cr, uid, warehouse, values, inter_wh_route_id, context=context)
2421                 for pull_rule in pull_rules_list:
2422                     pull_obj.create(cr, uid, vals=pull_rule, context=context)
2423                 #if the warehouse is also set as default resupply method, assign this route automatically to all product
2424                 if default_resupply_wh and default_resupply_wh.id == wh.id:
2425                     self._assign_route_on_products(cr, uid, warehouse, inter_wh_route_id, context=context)
2426                 #finally, save the route on the warehouse
2427                 self.write(cr, uid, [warehouse.id], {'route_ids': [(4, inter_wh_route_id)]}, context=context)
2428
2429     def _default_stock_id(self, cr, uid, context=None):
2430         #lot_input_stock = self.pool.get('ir.model.data').get_object(cr, uid, 'stock', 'stock_location_stock')
2431         try:
2432             warehouse = self.pool.get('ir.model.data').get_object(cr, uid, 'stock', 'warehouse0')
2433             return warehouse.lot_stock_id.id
2434         except:
2435             return False
2436
2437     _defaults = {
2438         'company_id': lambda self, cr, uid, c: self.pool.get('res.company')._company_default_get(cr, uid, 'stock.inventory', context=c),
2439         'lot_stock_id': _default_stock_id,
2440         'reception_steps': 'one_step',
2441         'delivery_steps': 'ship_only',
2442     }
2443     _sql_constraints = [
2444         ('warehouse_name_uniq', 'unique(name, company_id)', 'The name of the warehouse must be unique per company!'),
2445         ('warehouse_code_uniq', 'unique(code, company_id)', 'The code of the warehouse must be unique per company!'),
2446         ('default_resupply_wh_diff', 'check (id != default_resupply_wh_id)', 'The default resupply warehouse should be different that the warehouse itself!'),
2447     ]
2448
2449     def _get_partner_locations(self, cr, uid, ids, context=None):
2450         ''' returns a tuple made of the browse record of customer location and the browse record of supplier location'''
2451         data_obj = self.pool.get('ir.model.data')
2452         location_obj = self.pool.get('stock.location')
2453         try:
2454             customer_loc = data_obj.get_object_reference(cr, uid, 'stock', 'stock_location_customers')[1]
2455             supplier_loc = data_obj.get_object_reference(cr, uid, 'stock', 'stock_location_suppliers')[1]
2456         except:
2457             customer_loc = location_obj.search(cr, uid, [('usage', '=', 'customer')], context=context)
2458             customer_loc = customer_loc and customer_loc[0] or False
2459             supplier_loc = location_obj.search(cr, uid, [('usage', '=', 'supplier')], context=context)
2460             supplier_loc = supplier_loc and supplier_loc[0] or False
2461         if not (customer_loc and supplier_loc):
2462             raise osv.except_osv(_('Error!'), _('Can\'t find any customer or supplier location.'))
2463         return location_obj.browse(cr, uid, [customer_loc, supplier_loc], context=context)
2464
2465     def switch_location(self, cr, uid, ids, warehouse, new_reception_step=False, new_delivery_step=False, context=None):
2466         location_obj = self.pool.get('stock.location')
2467
2468         new_reception_step = new_reception_step or warehouse.reception_steps
2469         new_delivery_step = new_delivery_step or warehouse.delivery_steps
2470         if warehouse.reception_steps != new_reception_step:
2471             location_obj.write(cr, uid, [warehouse.wh_input_stock_loc_id.id, warehouse.wh_qc_stock_loc_id.id], {'active': False}, context=context)
2472             if new_reception_step != 'one_step':
2473                 location_obj.write(cr, uid, warehouse.wh_input_stock_loc_id.id, {'active': True}, context=context)
2474             if new_reception_step == 'three_steps':
2475                 location_obj.write(cr, uid, warehouse.wh_qc_stock_loc_id.id, {'active': True}, context=context)
2476
2477         if warehouse.delivery_steps != new_delivery_step:
2478             location_obj.write(cr, uid, [warehouse.wh_output_stock_loc_id.id, warehouse.wh_pack_stock_loc_id.id], {'active': False}, context=context)
2479             if new_delivery_step != 'ship_only':
2480                 location_obj.write(cr, uid, warehouse.wh_output_stock_loc_id.id, {'active': True}, context=context)
2481             if new_delivery_step == 'pick_pack_ship':
2482                 location_obj.write(cr, uid, warehouse.wh_pack_stock_loc_id.id, {'active': True}, context=context)
2483         return True
2484
2485     def _get_reception_delivery_route(self, cr, uid, warehouse, route_name, context=None):
2486         return {
2487             'name': self._format_routename(cr, uid, warehouse, route_name, context=context),
2488             'product_categ_selectable': True,
2489             'product_selectable': False,
2490             'sequence': 10,
2491         }
2492
2493     def _get_supply_pull_rules(self, cr, uid, supplied_warehouse, values, new_route_id, context=None):
2494         pull_rules_list = []
2495         for from_loc, dest_loc, pick_type_id, warehouse in values:
2496             pull_rules_list.append({
2497                 'name': self._format_rulename(cr, uid, warehouse, from_loc, dest_loc, context=context),
2498                 'location_src_id': from_loc.id,
2499                 'location_id': dest_loc.id,
2500                 'route_id': new_route_id,
2501                 'action': 'move',
2502                 'picking_type_id': pick_type_id,
2503                 'procure_method': 'make_to_order',
2504                 'warehouse_id': supplied_warehouse.id,
2505                 'propagate_warehouse_id': warehouse.id,
2506             })
2507         return pull_rules_list
2508
2509     def _get_push_pull_rules(self, cr, uid, warehouse, active, values, new_route_id, context=None):
2510         first_rule = True
2511         push_rules_list = []
2512         pull_rules_list = []
2513         for from_loc, dest_loc, pick_type_id in values:
2514             push_rules_list.append({
2515                 'name': self._format_rulename(cr, uid, warehouse, from_loc, dest_loc, context=context),
2516                 'location_from_id': from_loc.id,
2517                 'location_dest_id': dest_loc.id,
2518                 'route_id': new_route_id,
2519                 'auto': 'manual',
2520                 'picking_type_id': pick_type_id,
2521                 'active': active,
2522                 'warehouse_id': warehouse.id,
2523             })
2524             pull_rules_list.append({
2525                 'name': self._format_rulename(cr, uid, warehouse, from_loc, dest_loc, context=context),
2526                 'location_src_id': from_loc.id,
2527                 'location_id': dest_loc.id,
2528                 'route_id': new_route_id,
2529                 'action': 'move',
2530                 'picking_type_id': pick_type_id,
2531                 'procure_method': first_rule is True and 'make_to_stock' or 'make_to_order',
2532                 'active': active,
2533                 'warehouse_id': warehouse.id,
2534             })
2535             first_rule = False
2536         return push_rules_list, pull_rules_list
2537
2538     def _get_mto_pull_rule(self, cr, uid, warehouse, values, context=None):
2539         route_obj = self.pool.get('stock.location.route')
2540         data_obj = self.pool.get('ir.model.data')
2541         try:
2542             mto_route_id = data_obj.get_object_reference(cr, uid, 'stock', 'route_warehouse0_mto')[1]
2543         except:
2544             mto_route_id = route_obj.search(cr, uid, [('name', 'like', _('Make To Order'))], context=context)
2545             mto_route_id = mto_route_id and mto_route_id[0] or False
2546         if not mto_route_id:
2547             raise osv.except_osv(_('Error!'), _('Can\'t find any generic Make To Order route.'))
2548
2549         from_loc, dest_loc, pick_type_id = values[0]
2550         return {
2551             'name': self._format_rulename(cr, uid, warehouse, from_loc, dest_loc, context=context) + _(' MTO'),
2552             'location_src_id': from_loc.id,
2553             'location_id': dest_loc.id,
2554             'route_id': mto_route_id,
2555             'action': 'move',
2556             'picking_type_id': pick_type_id,
2557             'procure_method': 'make_to_order',
2558             'active': True,
2559             'warehouse_id': warehouse.id,
2560         }
2561
2562     def _get_crossdock_route(self, cr, uid, warehouse, route_name, context=None):
2563         return {
2564             'name': self._format_routename(cr, uid, warehouse, route_name, context=context),
2565             'warehouse_selectable': False,
2566             'product_selectable': True,
2567             'product_categ_selectable': True,
2568             'active': warehouse.delivery_steps != 'ship_only' and warehouse.reception_steps != 'one_step',
2569             'sequence': 20,
2570         }
2571
2572     def create_routes(self, cr, uid, ids, warehouse, context=None):
2573         wh_route_ids = []
2574         route_obj = self.pool.get('stock.location.route')
2575         pull_obj = self.pool.get('procurement.rule')
2576         push_obj = self.pool.get('stock.location.path')
2577         routes_dict = self.get_routes_dict(cr, uid, ids, warehouse, context=context)
2578         #create reception route and rules
2579         route_name, values = routes_dict[warehouse.reception_steps]
2580         route_vals = self._get_reception_delivery_route(cr, uid, warehouse, route_name, context=context)
2581         reception_route_id = route_obj.create(cr, uid, route_vals, context=context)
2582         wh_route_ids.append((4, reception_route_id))
2583         push_rules_list, pull_rules_list = self._get_push_pull_rules(cr, uid, warehouse, True, values, reception_route_id, context=context)
2584         #create the push/pull rules
2585         for push_rule in push_rules_list:
2586             push_obj.create(cr, uid, vals=push_rule, context=context)
2587         for pull_rule in pull_rules_list:
2588             #all pull rules in reception route are mto, because we don't want to wait for the scheduler to trigger an orderpoint on input location
2589             pull_rule['procure_method'] = 'make_to_order'
2590             pull_obj.create(cr, uid, vals=pull_rule, context=context)
2591
2592         #create MTS route and pull rules for delivery and a specific route MTO to be set on the product
2593         route_name, values = routes_dict[warehouse.delivery_steps]
2594         route_vals = self._get_reception_delivery_route(cr, uid, warehouse, route_name, context=context)
2595         #create the route and its pull rules
2596         delivery_route_id = route_obj.create(cr, uid, route_vals, context=context)
2597         wh_route_ids.append((4, delivery_route_id))
2598         dummy, pull_rules_list = self._get_push_pull_rules(cr, uid, warehouse, True, values, delivery_route_id, context=context)
2599         for pull_rule in pull_rules_list:
2600             pull_obj.create(cr, uid, vals=pull_rule, context=context)
2601         #create MTO pull rule and link it to the generic MTO route
2602         mto_pull_vals = self._get_mto_pull_rule(cr, uid, warehouse, values, context=context)
2603         mto_pull_id = pull_obj.create(cr, uid, mto_pull_vals, context=context)
2604
2605         #create a route for cross dock operations, that can be set on products and product categories
2606         route_name, values = routes_dict['crossdock']
2607         crossdock_route_vals = self._get_crossdock_route(cr, uid, warehouse, route_name, context=context)
2608         crossdock_route_id = route_obj.create(cr, uid, vals=crossdock_route_vals, context=context)
2609         wh_route_ids.append((4, crossdock_route_id))
2610         dummy, pull_rules_list = self._get_push_pull_rules(cr, uid, warehouse, warehouse.delivery_steps != 'ship_only' and warehouse.reception_steps != 'one_step', values, crossdock_route_id, context=context)
2611         for pull_rule in pull_rules_list:
2612             pull_obj.create(cr, uid, vals=pull_rule, context=context)
2613
2614         #create route selectable on the product to resupply the warehouse from another one
2615         self._create_resupply_routes(cr, uid, warehouse, warehouse.resupply_wh_ids, warehouse.default_resupply_wh_id, context=context)
2616
2617         #return routes and mto pull rule to store on the warehouse
2618         return {
2619             'route_ids': wh_route_ids,
2620             'mto_pull_id': mto_pull_id,
2621             'reception_route_id': reception_route_id,
2622             'delivery_route_id': delivery_route_id,
2623             'crossdock_route_id': crossdock_route_id,
2624         }
2625
2626     def change_route(self, cr, uid, ids, warehouse, new_reception_step=False, new_delivery_step=False, context=None):
2627         picking_type_obj = self.pool.get('stock.picking.type')
2628         pull_obj = self.pool.get('procurement.rule')
2629         push_obj = self.pool.get('stock.location.path')
2630         route_obj = self.pool.get('stock.location.route')
2631         new_reception_step = new_reception_step or warehouse.reception_steps
2632         new_delivery_step = new_delivery_step or warehouse.delivery_steps
2633
2634         #change the default source and destination location and (de)activate picking types
2635         input_loc = warehouse.wh_input_stock_loc_id
2636         if new_reception_step == 'one_step':
2637             input_loc = warehouse.lot_stock_id
2638         output_loc = warehouse.wh_output_stock_loc_id
2639         if new_delivery_step == 'ship_only':
2640             output_loc = warehouse.lot_stock_id
2641         picking_type_obj.write(cr, uid, warehouse.in_type_id.id, {'default_location_dest_id': input_loc.id}, context=context)
2642         picking_type_obj.write(cr, uid, warehouse.out_type_id.id, {'default_location_src_id': output_loc.id}, context=context)
2643         picking_type_obj.write(cr, uid, warehouse.pick_type_id.id, {'active': new_delivery_step != 'ship_only'}, context=context)
2644         picking_type_obj.write(cr, uid, warehouse.pack_type_id.id, {'active': new_delivery_step == 'pick_pack_ship'}, context=context)
2645
2646         routes_dict = self.get_routes_dict(cr, uid, ids, warehouse, context=context)
2647         #update delivery route and rules: unlink the existing rules of the warehouse delivery route and recreate it
2648         pull_obj.unlink(cr, uid, [pu.id for pu in warehouse.delivery_route_id.pull_ids], context=context)
2649         route_name, values = routes_dict[new_delivery_step]
2650         route_obj.write(cr, uid, warehouse.delivery_route_id.id, {'name': self._format_routename(cr, uid, warehouse, route_name, context=context)}, context=context)
2651         dummy, pull_rules_list = self._get_push_pull_rules(cr, uid, warehouse, True, values, warehouse.delivery_route_id.id, context=context)
2652         #create the pull rules
2653         for pull_rule in pull_rules_list:
2654             pull_obj.create(cr, uid, vals=pull_rule, context=context)
2655
2656         #update reception route and rules: unlink the existing rules of the warehouse reception route and recreate it
2657         pull_obj.unlink(cr, uid, [pu.id for pu in warehouse.reception_route_id.pull_ids], context=context)
2658         push_obj.unlink(cr, uid, [pu.id for pu in warehouse.reception_route_id.push_ids], context=context)
2659         route_name, values = routes_dict[new_reception_step]
2660         route_obj.write(cr, uid, warehouse.reception_route_id.id, {'name': self._format_routename(cr, uid, warehouse, route_name, context=context)}, context=context)
2661         push_rules_list, pull_rules_list = self._get_push_pull_rules(cr, uid, warehouse, True, values, warehouse.reception_route_id.id, context=context)
2662         #create the push/pull rules
2663         for push_rule in push_rules_list:
2664             push_obj.create(cr, uid, vals=push_rule, context=context)
2665         for pull_rule in pull_rules_list:
2666             #all pull rules in reception route are mto, because we don't want to wait for the scheduler to trigger an orderpoint on input location
2667             pull_rule['procure_method'] = 'make_to_order'
2668             pull_obj.create(cr, uid, vals=pull_rule, context=context)
2669
2670         route_obj.write(cr, uid, warehouse.crossdock_route_id.id, {'active': new_reception_step != 'one_step' and new_delivery_step != 'ship_only'}, context=context)
2671
2672         #change MTO rule
2673         dummy, values = routes_dict[new_delivery_step]
2674         mto_pull_vals = self._get_mto_pull_rule(cr, uid, warehouse, values, context=context)
2675         pull_obj.write(cr, uid, warehouse.mto_pull_id.id, mto_pull_vals, context=context)
2676         return True
2677
2678     def create(self, cr, uid, vals, context=None):
2679         if context is None:
2680             context = {}
2681         if vals is None:
2682             vals = {}
2683         data_obj = self.pool.get('ir.model.data')
2684         seq_obj = self.pool.get('ir.sequence')
2685         picking_type_obj = self.pool.get('stock.picking.type')
2686         location_obj = self.pool.get('stock.location')
2687
2688         #create view location for warehouse
2689         wh_loc_id = location_obj.create(cr, uid, {
2690                 'name': _(vals.get('name')),
2691                 'usage': 'view',
2692                 'location_id': data_obj.get_object_reference(cr, uid, 'stock', 'stock_location_locations')[1]
2693             }, context=context)
2694         vals['view_location_id'] = wh_loc_id
2695         #create all location
2696         def_values = self.default_get(cr, uid, {'reception_steps', 'delivery_steps'})
2697         reception_steps = vals.get('reception_steps',  def_values['reception_steps'])
2698         delivery_steps = vals.get('delivery_steps', def_values['delivery_steps'])
2699         context_with_inactive = context.copy()
2700         context_with_inactive['active_test'] = False
2701         sub_locations = [
2702             {'name': _('Stock'), 'active': True, 'field': 'lot_stock_id'},
2703             {'name': _('Input'), 'active': reception_steps != 'one_step', 'field': 'wh_input_stock_loc_id'},
2704             {'name': _('Quality Control'), 'active': reception_steps == 'three_steps', 'field': 'wh_qc_stock_loc_id'},
2705             {'name': _('Output'), 'active': delivery_steps != 'ship_only', 'field': 'wh_output_stock_loc_id'},
2706             {'name': _('Packing Zone'), 'active': delivery_steps == 'pick_pack_ship', 'field': 'wh_pack_stock_loc_id'},
2707         ]
2708         for values in sub_locations:
2709             location_id = location_obj.create(cr, uid, {
2710                 'name': values['name'],
2711                 'usage': 'internal',
2712                 'location_id': wh_loc_id,
2713                 'active': values['active'],
2714             }, context=context_with_inactive)
2715             vals[values['field']] = location_id
2716
2717         #create new sequences
2718         in_seq_id = seq_obj.create(cr, SUPERUSER_ID, values={'name': vals.get('name', '') + _(' Sequence in'), 'prefix': vals.get('code', '') + '/IN/', 'padding': 5}, context=context)
2719         out_seq_id = seq_obj.create(cr, SUPERUSER_ID, values={'name': vals.get('name', '') + _(' Sequence out'), 'prefix': vals.get('code', '') + '/OUT/', 'padding': 5}, context=context)
2720         pack_seq_id = seq_obj.create(cr, SUPERUSER_ID, values={'name': vals.get('name', '') + _(' Sequence packing'), 'prefix': vals.get('code', '') + '/PACK/', 'padding': 5}, context=context)
2721         pick_seq_id = seq_obj.create(cr, SUPERUSER_ID, values={'name': vals.get('name', '') + _(' Sequence picking'), 'prefix': vals.get('code', '') + '/PICK/', 'padding': 5}, context=context)
2722         int_seq_id = seq_obj.create(cr, SUPERUSER_ID, values={'name': vals.get('name', '') + _(' Sequence internal'), 'prefix': vals.get('code', '') + '/INT/', 'padding': 5}, context=context)
2723
2724         #create WH
2725         new_id = super(stock_warehouse, self).create(cr, uid, vals=vals, context=context)
2726
2727         warehouse = self.browse(cr, uid, new_id, context=context)
2728         wh_stock_loc = warehouse.lot_stock_id
2729         wh_input_stock_loc = warehouse.wh_input_stock_loc_id
2730         wh_output_stock_loc = warehouse.wh_output_stock_loc_id
2731         wh_pack_stock_loc = warehouse.wh_pack_stock_loc_id
2732
2733         #fetch customer and supplier locations, for references
2734         customer_loc, supplier_loc = self._get_partner_locations(cr, uid, new_id, context=context)
2735
2736         #create in, out, internal picking types for warehouse
2737         input_loc = wh_input_stock_loc
2738         if warehouse.reception_steps == 'one_step':
2739             input_loc = wh_stock_loc
2740         output_loc = wh_output_stock_loc
2741         if warehouse.delivery_steps == 'ship_only':
2742             output_loc = wh_stock_loc
2743
2744         #choose the next available color for the picking types of this warehouse
2745         color = 0
2746         available_colors = [c%9 for c in range(3, 12)]  # put flashy colors first
2747         all_used_colors = self.pool.get('stock.picking.type').search_read(cr, uid, [('warehouse_id', '!=', False), ('color', '!=', False)], ['color'], order='color')
2748         #don't use sets to preserve the list order
2749         for x in all_used_colors:
2750             if x['color'] in available_colors:
2751                 available_colors.remove(x['color'])
2752         if available_colors:
2753             color = available_colors[0]
2754
2755         #order the picking types with a sequence allowing to have the following suit for each warehouse: reception, internal, pick, pack, ship. 
2756         max_sequence = self.pool.get('stock.picking.type').search_read(cr, uid, [], ['sequence'], order='sequence desc')
2757         max_sequence = max_sequence and max_sequence[0]['sequence'] or 0
2758
2759         in_type_id = picking_type_obj.create(cr, uid, vals={
2760             'name': _('Receptions'),
2761             'warehouse_id': new_id,
2762             'code': 'incoming',
2763             'auto_force_assign': True,
2764             'sequence_id': in_seq_id,
2765             'default_location_src_id': supplier_loc.id,
2766             'default_location_dest_id': input_loc.id,
2767             'sequence': max_sequence + 1,
2768             'color': color}, context=context)
2769         out_type_id = picking_type_obj.create(cr, uid, vals={
2770             'name': _('Delivery Orders'),
2771             'warehouse_id': new_id,
2772             'code': 'outgoing',
2773             'sequence_id': out_seq_id,
2774             'return_picking_type_id': in_type_id,
2775             'default_location_src_id': output_loc.id,
2776             'default_location_dest_id': customer_loc.id,
2777             'sequence': max_sequence + 4,
2778             'color': color}, context=context)
2779         picking_type_obj.write(cr, uid, [in_type_id], {'return_picking_type_id': out_type_id}, context=context)
2780         int_type_id = picking_type_obj.create(cr, uid, vals={
2781             'name': _('Internal Transfers'),
2782             'warehouse_id': new_id,
2783             'code': 'internal',
2784             'sequence_id': int_seq_id,
2785             'default_location_src_id': wh_stock_loc.id,
2786             'default_location_dest_id': wh_stock_loc.id,
2787             'active': True,
2788             'sequence': max_sequence + 2,
2789             'color': color}, context=context)
2790         pack_type_id = picking_type_obj.create(cr, uid, vals={
2791             'name': _('Pack'),
2792             'warehouse_id': new_id,
2793             'code': 'internal',
2794             'sequence_id': pack_seq_id,
2795             'default_location_src_id': wh_pack_stock_loc.id,
2796             'default_location_dest_id': output_loc.id,
2797             'active': delivery_steps == 'pick_pack_ship',
2798             'sequence': max_sequence + 3,
2799             'color': color}, context=context)
2800         pick_type_id = picking_type_obj.create(cr, uid, vals={
2801             'name': _('Pick'),
2802             'warehouse_id': new_id,
2803             'code': 'internal',
2804             'sequence_id': pick_seq_id,
2805             'default_location_src_id': wh_stock_loc.id,
2806             'default_location_dest_id': wh_pack_stock_loc.id,
2807             'active': delivery_steps != 'ship_only',
2808             'sequence': max_sequence + 2,
2809             'color': color}, context=context)
2810
2811         #write picking types on WH
2812         vals = {
2813             'in_type_id': in_type_id,
2814             'out_type_id': out_type_id,
2815             'pack_type_id': pack_type_id,
2816             'pick_type_id': pick_type_id,
2817             'int_type_id': int_type_id,
2818         }
2819         super(stock_warehouse, self).write(cr, uid, new_id, vals=vals, context=context)
2820         warehouse.refresh()
2821
2822         #create routes and push/pull rules
2823         new_objects_dict = self.create_routes(cr, uid, new_id, warehouse, context=context)
2824         self.write(cr, uid, warehouse.id, new_objects_dict, context=context)
2825         return new_id
2826
2827     def _format_rulename(self, cr, uid, obj, from_loc, dest_loc, context=None):
2828         return obj.code + ': ' + from_loc.name + ' -> ' + dest_loc.name
2829
2830     def _format_routename(self, cr, uid, obj, name, context=None):
2831         return obj.name + ': ' + name
2832
2833     def get_routes_dict(self, cr, uid, ids, warehouse, context=None):
2834         #fetch customer and supplier locations, for references
2835         customer_loc, supplier_loc = self._get_partner_locations(cr, uid, ids, context=context)
2836
2837         return {
2838             'one_step': (_('Reception in 1 step'), []),
2839             'two_steps': (_('Reception in 2 steps'), [(warehouse.wh_input_stock_loc_id, warehouse.lot_stock_id, warehouse.int_type_id.id)]),
2840             'three_steps': (_('Reception in 3 steps'), [(warehouse.wh_input_stock_loc_id, warehouse.wh_qc_stock_loc_id, warehouse.int_type_id.id), (warehouse.wh_qc_stock_loc_id, warehouse.lot_stock_id, warehouse.int_type_id.id)]),
2841             'crossdock': (_('Cross-Dock'), [(warehouse.wh_input_stock_loc_id, warehouse.wh_output_stock_loc_id, warehouse.int_type_id.id), (warehouse.wh_output_stock_loc_id, customer_loc, warehouse.out_type_id.id)]),
2842             'ship_only': (_('Ship Only'), [(warehouse.lot_stock_id, customer_loc, warehouse.out_type_id.id)]),
2843             'pick_ship': (_('Pick + Ship'), [(warehouse.lot_stock_id, warehouse.wh_output_stock_loc_id, warehouse.pick_type_id.id), (warehouse.wh_output_stock_loc_id, customer_loc, warehouse.out_type_id.id)]),
2844             'pick_pack_ship': (_('Pick + Pack + Ship'), [(warehouse.lot_stock_id, warehouse.wh_pack_stock_loc_id, warehouse.pick_type_id.id), (warehouse.wh_pack_stock_loc_id, warehouse.wh_output_stock_loc_id, warehouse.pack_type_id.id), (warehouse.wh_output_stock_loc_id, customer_loc, warehouse.out_type_id.id)]),
2845         }
2846
2847     def _handle_renaming(self, cr, uid, warehouse, name, context=None):
2848         location_obj = self.pool.get('stock.location')
2849         route_obj = self.pool.get('stock.location.route')
2850         pull_obj = self.pool.get('procurement.rule')
2851         push_obj = self.pool.get('stock.location.path')
2852         #rename location
2853         location_id = warehouse.lot_stock_id.location_id.id
2854         location_obj.write(cr, uid, location_id, {'name': name}, context=context)
2855         #rename route and push-pull rules
2856         for route in warehouse.route_ids:
2857             route_obj.write(cr, uid, route.id, {'name': route.name.replace(warehouse.name, name, 1)}, context=context)
2858             for pull in route.pull_ids:
2859                 pull_obj.write(cr, uid, pull.id, {'name': pull.name.replace(warehouse.name, name, 1)}, context=context)
2860             for push in route.push_ids:
2861                 push_obj.write(cr, uid, push.id, {'name': pull.name.replace(warehouse.name, name, 1)}, context=context)
2862         #change the mto pull rule name
2863         pull_obj.write(cr, uid, warehouse.mto_pull_id.id, {'name': warehouse.mto_pull_id.name.replace(warehouse.name, name, 1)}, context=context)
2864
2865     def write(self, cr, uid, ids, vals, context=None):
2866         if context is None:
2867             context = {}
2868         if isinstance(ids, (int, long)):
2869             ids = [ids]
2870         seq_obj = self.pool.get('ir.sequence')
2871         route_obj = self.pool.get('stock.location.route')
2872
2873         context_with_inactive = context.copy()
2874         context_with_inactive['active_test'] = False
2875         for warehouse in self.browse(cr, uid, ids, context=context_with_inactive):
2876             #first of all, check if we need to delete and recreate route
2877             if vals.get('reception_steps') or vals.get('delivery_steps'):
2878                 #activate and deactivate location according to reception and delivery option
2879                 self.switch_location(cr, uid, warehouse.id, warehouse, vals.get('reception_steps', False), vals.get('delivery_steps', False), context=context)
2880                 # switch between route
2881                 self.change_route(cr, uid, ids, warehouse, vals.get('reception_steps', False), vals.get('delivery_steps', False), context=context_with_inactive)
2882             if vals.get('code') or vals.get('name'):
2883                 name = warehouse.name
2884                 #rename sequence
2885                 if vals.get('name'):
2886                     name = vals.get('name')
2887                     self._handle_renaming(cr, uid, warehouse, name, context=context_with_inactive)
2888                 seq_obj.write(cr, uid, warehouse.in_type_id.sequence_id.id, {'name': name + _(' Sequence in'), 'prefix': vals.get('code', warehouse.code) + '\IN\\'}, context=context)
2889                 seq_obj.write(cr, uid, warehouse.out_type_id.sequence_id.id, {'name': name + _(' Sequence out'), 'prefix': vals.get('code', warehouse.code) + '\OUT\\'}, context=context)
2890                 seq_obj.write(cr, uid, warehouse.pack_type_id.sequence_id.id, {'name': name + _(' Sequence packing'), 'prefix': vals.get('code', warehouse.code) + '\PACK\\'}, context=context)
2891                 seq_obj.write(cr, uid, warehouse.pick_type_id.sequence_id.id, {'name': name + _(' Sequence picking'), 'prefix': vals.get('code', warehouse.code) + '\PICK\\'}, context=context)
2892                 seq_obj.write(cr, uid, warehouse.int_type_id.sequence_id.id, {'name': name + _(' Sequence internal'), 'prefix': vals.get('code', warehouse.code) + '\INT\\'}, context=context)
2893         if vals.get('resupply_wh_ids') and not vals.get('resupply_route_ids'):
2894             for cmd in vals.get('resupply_wh_ids'):
2895                 if cmd[0] == 6:
2896                     new_ids = set(cmd[2])
2897                     old_ids = set([wh.id for wh in warehouse.resupply_wh_ids])
2898                     to_add_wh_ids = new_ids - old_ids
2899                     if to_add_wh_ids:
2900                         supplier_warehouses = self.browse(cr, uid, list(to_add_wh_ids), context=context)
2901                         self._create_resupply_routes(cr, uid, warehouse, supplier_warehouses, warehouse.default_resupply_wh_id, context=context)
2902                     to_remove_wh_ids = old_ids - new_ids
2903                     if to_remove_wh_ids:
2904                         to_remove_route_ids = route_obj.search(cr, uid, [('supplied_wh_id', '=', warehouse.id), ('supplier_wh_id', 'in', list(to_remove_wh_ids))], context=context)
2905                         if to_remove_route_ids:
2906                             route_obj.unlink(cr, uid, to_remove_route_ids, context=context)
2907                 else:
2908                     #not implemented
2909                     pass
2910         if 'default_resupply_wh_id' in vals:
2911             if warehouse.default_resupply_wh_id:
2912                 #remove the existing resupplying route on all products
2913                 to_remove_route_ids = route_obj.search(cr, uid, [('supplied_wh_id', '=', warehouse.id), ('supplier_wh_id', '=', warehouse.default_resupply_wh_id.id)], context=context)
2914                 for inter_wh_route_id in to_remove_route_ids:
2915                     self._unassign_route_on_products(cr, uid, warehouse, inter_wh_route_id, context=context)
2916             if vals.get('default_resupply_wh_id'):
2917                 #assign the new resupplying route on all products
2918                 to_assign_route_ids = route_obj.search(cr, uid, [('supplied_wh_id', '=', warehouse.id), ('supplier_wh_id', '=', vals.get('default_resupply_wh_id'))], context=context)
2919                 for inter_wh_route_id in to_assign_route_ids:
2920                     self._assign_route_on_products(cr, uid, warehouse, inter_wh_route_id, context=context)
2921
2922         return super(stock_warehouse, self).write(cr, uid, ids, vals=vals, context=context)
2923
2924     def unlink(self, cr, uid, ids, context=None):
2925         #TODO try to delete location and route and if not possible, put them in inactive
2926         return super(stock_warehouse, self).unlink(cr, uid, ids, context=context)
2927
2928     def get_all_routes_for_wh(self, cr, uid, warehouse, context=None):
2929         all_routes = [route.id for route in warehouse.route_ids]
2930         all_routes += [warehouse.mto_pull_id.route_id.id]
2931         return all_routes
2932
2933     def view_all_routes_for_wh(self, cr, uid, ids, context=None):
2934         all_routes = []
2935         for wh in self.browse(cr, uid, ids, context=context):
2936             all_routes += self.get_all_routes_for_wh(cr, uid, wh, context=context)
2937
2938         domain = [('id', 'in', all_routes)]
2939         return {
2940             'name': _('Warehouse\'s Routes'),
2941             'domain': domain,
2942             'res_model': 'stock.location.route',
2943             'type': 'ir.actions.act_window',
2944             'view_id': False,
2945             'view_mode': 'tree,form',
2946             'view_type': 'form',
2947             'limit': 20
2948         }
2949
2950 class stock_location_path(osv.osv):
2951     _name = "stock.location.path"
2952     _description = "Pushed Flows"
2953     _order = "name"
2954
2955     def _get_route(self, cr, uid, ids, context=None):
2956         #WARNING TODO route_id is not required, so a field related seems a bad idea >-< 
2957         if context is None:
2958             context = {}
2959         result = {}
2960         if context is None:
2961             context = {}
2962         context_with_inactive = context.copy()
2963         context_with_inactive['active_test'] = False
2964         for route in self.pool.get('stock.location.route').browse(cr, uid, ids, context=context_with_inactive):
2965             for push_rule in route.push_ids:
2966                 result[push_rule.id] = True
2967         return result.keys()
2968
2969     def _get_rules(self, cr, uid, ids, context=None):
2970         res = []
2971         for route in self.browse(cr, uid, ids, context=context):
2972             res += [x.id for x in route.push_ids]
2973         return res
2974
2975     _columns = {
2976         'name': fields.char('Operation Name', size=64, required=True),
2977         'company_id': fields.many2one('res.company', 'Company'),
2978         'route_id': fields.many2one('stock.location.route', 'Route'),
2979         'location_from_id': fields.many2one('stock.location', 'Source Location', ondelete='cascade', select=1, required=True),
2980         'location_dest_id': fields.many2one('stock.location', 'Destination Location', ondelete='cascade', select=1, required=True),
2981         'delay': fields.integer('Delay (days)', help="Number of days to do this transition"),
2982         'invoice_state': fields.selection([
2983             ("invoiced", "Invoiced"),
2984             ("2binvoiced", "To Be Invoiced"),
2985             ("none", "Not Applicable")], "Invoice Status",
2986             required=True,), 
2987         'picking_type_id': fields.many2one('stock.picking.type', 'Type of the new Operation', required=True, help="This is the picking type associated with the different pickings"), 
2988         'auto': fields.selection(
2989             [('auto','Automatic Move'), ('manual','Manual Operation'),('transparent','Automatic No Step Added')],
2990             'Automatic Move',
2991             required=True, select=1,
2992             help="This is used to define paths the product has to follow within the location tree.\n" \
2993                 "The 'Automatic Move' value will create a stock move after the current one that will be "\
2994                 "validated automatically. With 'Manual Operation', the stock move has to be validated "\
2995                 "by a worker. With 'Automatic No Step Added', the location is replaced in the original move."
2996             ),
2997         'propagate': fields.boolean('Propagate cancel and split', help='If checked, when the previous move is cancelled or split, the move generated by this move will too'),
2998         'active': fields.related('route_id', 'active', type='boolean', string='Active', store={
2999                     'stock.location.route': (_get_route, ['active'], 20),
3000                     'stock.location.path': (lambda self, cr, uid, ids, c={}: ids, ['route_id'], 20),},
3001                 help="If the active field is set to False, it will allow you to hide the rule without removing it." ),
3002         'warehouse_id': fields.many2one('stock.warehouse', 'Warehouse'),
3003         'route_sequence': fields.related('route_id', 'sequence', string='Route Sequence',
3004             store={
3005                 'stock.location.route': (_get_rules, ['sequence'], 10),
3006                 'stock.location.path': (lambda self, cr, uid, ids, c={}: ids, ['route_id'], 10),
3007         }),
3008         'sequence': fields.integer('Sequence'),
3009     }
3010     _defaults = {
3011         'auto': 'auto',
3012         'delay': 1,
3013         'invoice_state': 'none',
3014         'company_id': lambda self, cr, uid, c: self.pool.get('res.company')._company_default_get(cr, uid, 'procurement.order', context=c),
3015         'propagate': True,
3016         'active': True,
3017     }
3018     def _apply(self, cr, uid, rule, move, context=None):
3019         move_obj = self.pool.get('stock.move')
3020         newdate = (datetime.strptime(move.date_expected, DEFAULT_SERVER_DATETIME_FORMAT) + relativedelta.relativedelta(days=rule.delay or 0)).strftime(DEFAULT_SERVER_DATETIME_FORMAT)
3021         if rule.auto == 'transparent':
3022             old_dest_location = move.location_dest_id.id
3023             move_obj.write(cr, uid, [move.id], {
3024                 'date': newdate,
3025                 'date_expected': newdate,
3026                 'location_dest_id': rule.location_dest_id.id
3027             })
3028             move.refresh()
3029             #avoid looping if a push rule is not well configured
3030             if rule.location_dest_id.id != old_dest_location:
3031                 #call again push_apply to see if a next step is defined
3032                 move_obj._push_apply(cr, uid, [move], context=context)
3033             return move.id
3034         else:
3035             move_id = move_obj.copy(cr, uid, move.id, {
3036                 'location_id': move.location_dest_id.id,
3037                 'location_dest_id': rule.location_dest_id.id,
3038                 'date': newdate,
3039                 'company_id': rule.company_id and rule.company_id.id or False,
3040                 'date_expected': newdate,
3041                 'picking_id': False,
3042                 'picking_type_id': rule.picking_type_id and rule.picking_type_id.id or False,
3043                 'propagate': rule.propagate,
3044                 'push_rule_id': rule.id,
3045                 'warehouse_id': rule.warehouse_id and rule.warehouse_id.id or False,
3046             })
3047             move_obj.write(cr, uid, [move.id], {
3048                 'move_dest_id': move_id,
3049             })
3050             move_obj.action_confirm(cr, uid, [move_id], context=None)
3051             return move_id
3052
3053 class stock_move_putaway(osv.osv):
3054     _name = 'stock.move.putaway'
3055     _description = 'Proposed Destination'
3056     _columns = {
3057         'move_id': fields.many2one('stock.move', required=True),
3058         'location_id': fields.many2one('stock.location', 'Location', required=True),
3059         'lot_id': fields.many2one('stock.production.lot', 'Lot'),
3060         'quantity': fields.float('Quantity', required=True),
3061     }
3062
3063
3064
3065 # -------------------------
3066 # Packaging related stuff
3067 # -------------------------
3068
3069 from openerp.report import report_sxw
3070 report_sxw.report_sxw('report.stock.quant.package.barcode', 'stock.quant.package', 'addons/stock/report/package_barcode.rml')
3071
3072 class stock_package(osv.osv):
3073     """
3074     These are the packages, containing quants and/or other packages
3075     """
3076     _name = "stock.quant.package"
3077     _description = "Physical Packages"
3078     _parent_name = "parent_id"
3079     _parent_store = True
3080     _parent_order = 'name'
3081     _order = 'parent_left'
3082
3083     def name_get(self, cr, uid, ids, context=None):
3084         res = self._complete_name(cr, uid, ids, 'complete_name', None, context=context)
3085         return res.items()
3086
3087     def _complete_name(self, cr, uid, ids, name, args, context=None):
3088         """ Forms complete name of location from parent location to child location.
3089         @return: Dictionary of values
3090         """
3091         res = {}
3092         for m in self.browse(cr, uid, ids, context=context):
3093             res[m.id] = m.name
3094             parent = m.parent_id
3095             while parent:
3096                 res[m.id] = parent.name + ' / ' + res[m.id]
3097                 parent = parent.parent_id
3098         return res
3099
3100     def _get_packages(self, cr, uid, ids, context=None):
3101         """Returns packages from quants for store"""
3102         res = set()
3103         for quant in self.browse(cr, uid, ids, context=context):
3104             if quant.package_id:
3105                 res.add(quant.package_id.id)
3106         return list(res)
3107
3108     def _get_packages_to_relocate(self, cr, uid, ids, context=None):
3109         res = set()
3110         for pack in self.browse(cr, uid, ids, context=context):
3111             res.add(pack.id)
3112             if pack.parent_id:
3113                 res.add(pack.parent_id.id)
3114         return list(res)
3115
3116     # TODO: Problem when package is empty!
3117     #
3118     def _get_package_info(self, cr, uid, ids, name, args, context=None):
3119         default_company_id = self.pool.get('res.users').browse(cr, uid, uid, context=context).company_id.id
3120         res = {}.fromkeys(ids, {'location_id': False, 'company_id': default_company_id})
3121         for pack in self.browse(cr, uid, ids, context=context):
3122             if pack.quant_ids:
3123                 res[pack.id]['location_id'] = pack.quant_ids[0].location_id.id
3124                 res[pack.id]['owner_id'] = pack.quant_ids[0].owner_id and pack.quant_ids[0].owner_id.id or False
3125                 res[pack.id]['company_id'] = pack.quant_ids[0].company_id.id
3126             elif pack.children_ids:
3127                 res[pack.id]['location_id'] = pack.children_ids[0].location_id and pack.children_ids[0].location_id.id or False
3128                 res[pack.id]['owner_id'] = pack.children_ids[0].owner_id and pack.children_ids[0].owner_id.id or False
3129                 res[pack.id]['company_id'] = pack.children_ids[0].company_id and pack.children_ids[0].company_id.id or False
3130         return res
3131
3132     _columns = {
3133         'name': fields.char('Package Reference', size=64, select=True),
3134         'complete_name': fields.function(_complete_name, type='char', string="Package Name",),
3135         'parent_left': fields.integer('Left Parent', select=1),
3136         'parent_right': fields.integer('Right Parent', select=1),
3137         'packaging_id': fields.many2one('product.packaging', 'Type of Packaging'),
3138         'location_id': fields.function(_get_package_info, type='many2one', relation='stock.location', string='Location', multi="package",
3139                                     store={
3140                                        'stock.quant': (_get_packages, ['location_id'], 10),
3141                                        'stock.quant.package': (_get_packages_to_relocate, ['quant_ids', 'children_ids', 'parent_id'], 10),
3142                                     }, readonly=True),
3143         'quant_ids': fields.one2many('stock.quant', 'package_id', 'Bulk Content'),
3144         'parent_id': fields.many2one('stock.quant.package', 'Parent Package', help="The package containing this item", ondelete='restrict'),
3145         'children_ids': fields.one2many('stock.quant.package', 'parent_id', 'Contained Packages'),
3146         'company_id': fields.function(_get_package_info, type="many2one", relation='res.company', string='Company', multi="package", 
3147                                     store={
3148                                        'stock.quant': (_get_packages, ['company_id'], 10),
3149                                        'stock.quant.package': (_get_packages_to_relocate, ['quant_ids', 'children_ids', 'parent_id'], 10),
3150                                     }, readonly=True),
3151         'owner_id': fields.function(_get_package_info, type='many2one', relation='res.partner', string='Owner', multi="package",
3152                                 store={
3153                                        'stock.quant': (_get_packages, ['owner_id'], 10),
3154                                        'stock.quant.package': (_get_packages_to_relocate, ['quant_ids', 'children_ids', 'parent_id'], 10),
3155                                     }, readonly=True),
3156     }
3157     _defaults = {
3158         'name': lambda self, cr, uid, context: self.pool.get('ir.sequence').get(cr, uid, 'stock.quant.package') or _('Unknown Pack')
3159     }
3160     def _check_location(self, cr, uid, ids, context=None):
3161         '''checks that all quants in a package are stored in the same location'''
3162         quant_obj = self.pool.get('stock.quant')
3163         for pack in self.browse(cr, uid, ids, context=context):
3164             parent = pack
3165             while parent.parent_id:
3166                 parent = parent.parent_id
3167             quant_ids = self.get_content(cr, uid, [parent.id], context=context)
3168             quants = quant_obj.browse(cr, uid, quant_ids, context=context)
3169             location_id = quants and quants[0].location_id.id or False
3170             if not all([quant.location_id.id == location_id for quant in quants]):
3171                 return False
3172         return True
3173
3174     _constraints = [
3175         (_check_location, 'Everything inside a package should be in the same location', ['location_id']),
3176     ]
3177
3178     def action_print(self, cr, uid, ids, context=None):
3179         if context is None:
3180             context = {}
3181         datas = {
3182             'ids': context.get('active_id') and [context.get('active_id')] or ids,
3183             'model': 'stock.quant.package',
3184             'form': self.read(cr, uid, ids)[0]
3185         }
3186         return {
3187             'type': 'ir.actions.report.xml',
3188             'report_name': 'stock.quant.package.barcode',
3189             'datas': datas
3190         }
3191
3192     def unpack(self, cr, uid, ids, context=None):
3193         quant_obj = self.pool.get('stock.quant')
3194         for package in self.browse(cr, uid, ids, context=context):
3195             quant_ids = [quant.id for quant in package.quant_ids]
3196             quant_obj.write(cr, uid, quant_ids, {'package_id': package.parent_id.id or False}, context=context)
3197             children_package_ids = [child_package.id for child_package in package.children_ids]
3198             self.write(cr, uid, children_package_ids, {'parent_id': package.parent_id.id or False}, context=context)
3199         #delete current package since it contains nothing anymore
3200         self.unlink(cr, uid, ids, context=context)
3201         return self.pool.get('ir.actions.act_window').for_xml_id(cr, uid, 'stock', 'action_package_view', context=context)
3202
3203     def get_content(self, cr, uid, ids, context=None):
3204         child_package_ids = self.search(cr, uid, [('id', 'child_of', ids)], context=context)
3205         return self.pool.get('stock.quant').search(cr, uid, [('package_id', 'in', child_package_ids)], context=context)
3206
3207     def get_content_package(self, cr, uid, ids, context=None):
3208         quants_ids = self.get_content(cr, uid, ids, context=context)
3209         res = self.pool.get('ir.actions.act_window').for_xml_id(cr, uid, 'stock', 'quantsact', context=context)
3210         res['domain'] = [('id', 'in', quants_ids)]
3211         return res
3212
3213     def _get_product_total_qty(self, cr, uid, package_record, product_id, context=None):
3214         ''' find the total of given product 'product_id' inside the given package 'package_id'''
3215         quant_obj = self.pool.get('stock.quant')
3216         all_quant_ids = self.get_content(cr, uid, [package_record.id], context=context)
3217         total = 0
3218         for quant in quant_obj.browse(cr, uid, all_quant_ids, context=context):
3219             if quant.product_id.id == product_id:
3220                 total += quant.qty
3221         return total
3222
3223     def _get_all_products_quantities(self, cr, uid, package_id, context=None):
3224         '''This function computes the different product quantities for the given package
3225         '''
3226         quant_obj = self.pool.get('stock.quant')
3227         res = {}
3228         for quant in quant_obj.browse(cr, uid, self.get_content(cr, uid, package_id, context=context)):
3229             if quant.product_id.id not in res:
3230                 res[quant.product_id.id] = 0
3231             res[quant.product_id.id] += quant.qty
3232         return res
3233
3234 class stock_pack_operation(osv.osv):
3235     _name = "stock.pack.operation"
3236     _description = "Packing Operation"
3237
3238     def _get_remaining_prod_quantities(self, cr, uid, operation, context=None):
3239         '''Get the remaining quantities per product on an operation with a package. This function returns a dictionary'''
3240         #if the operation doesn't concern a package, it's not relevant to call this function
3241         if not operation.package_id or operation.product_id:
3242             return {operation.product_id.id: operation.remaining_qty}
3243         #get the total of products the package contains
3244         res = self.pool.get('stock.quant.package')._get_all_products_quantities(cr, uid, operation.package_id.id, context=context)
3245         #reduce by the quantities linked to a move
3246         for record in operation.linked_move_operation_ids:
3247             if record.move_id.product_id.id not in res:
3248                 res[record.move_id.product_id.id] = 0
3249             res[record.move_id.product_id.id] -= record.qty
3250         return res
3251
3252     def _get_remaining_qty(self, cr, uid, ids, name, args, context=None):
3253         uom_obj = self.pool.get('product.uom')
3254         res = {}
3255         for ops in self.browse(cr, uid, ids, context=context):
3256             res[ops.id] = 0
3257             if ops.package_id:
3258                 #dont try to compute the remaining quantity for packages because it's not relevant (a package could include different products).
3259                 #should use _get_remaining_prod_quantities instead
3260                 continue
3261             elif ops.product_id:
3262                 qty = ops.product_qty
3263                 if ops.product_uom_id:
3264                     qty = uom_obj._compute_qty(cr, uid, ops.product_uom_id.id, ops.product_qty, ops.product_id.uom_id.id)
3265                 for record in ops.linked_move_operation_ids:
3266                     qty -= record.qty
3267                 #converting the remaining quantity in the pack operation UoM
3268                 if ops.product_uom_id:
3269                     qty = uom_obj._compute_qty(cr, uid, ops.product_id.uom_id.id, qty, ops.product_uom_id.id)
3270                 res[ops.id] = qty
3271         return res
3272
3273     def product_id_change(self, cr, uid, ids, product_id, product_uom_id, product_qty, context=None):
3274         res = self.on_change_tests(cr, uid, ids, product_id, product_uom_id, product_qty, context=context)
3275         if product_id and not product_uom_id:
3276             product = self.pool.get('product.product').browse(cr, uid, product_id, context=context)
3277             res['value']['product_uom_id'] = product.uom_id.id
3278         return res
3279
3280     def on_change_tests(self, cr, uid, ids, product_id, product_uom_id, product_qty, context=None):
3281         res = {'value': {}}
3282         uom_obj = self.pool.get('product.uom')
3283         if product_id:
3284             product = self.pool.get('product.product').browse(cr, uid, product_id, context=context)
3285             product_uom_id = product_uom_id or product.uom_id.id
3286             selected_uom = uom_obj.browse(cr, uid, product_uom_id, context=context)
3287             if selected_uom.category_id.id != product.uom_id.category_id.id:
3288                 res['warning'] = {
3289                     'title': _('Warning: wrong UoM!'),
3290                     'message': _('The selected UoM for product %s is not compatible with the UoM set on the product form. \nPlease choose an UoM within the same UoM category.') % (product.name)
3291                 }
3292             if product_qty and 'warning' not in res:
3293                 rounded_qty = uom_obj._compute_qty(cr, uid, product_uom_id, product_qty, product_uom_id, round=True)
3294                 if rounded_qty != product_qty:
3295                     res['warning'] = {
3296                         'title': _('Warning: wrong quantity!'),
3297                         'message': _('The chosen quantity for product %s is not compatible with the UoM rounding. It will be automatically converted at confirmation') % (product.name)
3298                     }
3299         return res
3300
3301     _columns = {
3302         'picking_id': fields.many2one('stock.picking', 'Stock Picking', help='The stock operation where the packing has been made', required=True),
3303         'product_id': fields.many2one('product.product', 'Product', ondelete="CASCADE"),  # 1
3304         'product_uom_id': fields.many2one('product.uom', 'Product Unit of Measure'),
3305         'product_qty': fields.float('Quantity', digits_compute=dp.get_precision('Product Unit of Measure'), required=True),
3306         'package_id': fields.many2one('stock.quant.package', 'Package'),  # 2
3307         'lot_id': fields.many2one('stock.production.lot', 'Lot/Serial Number'),
3308         'result_package_id': fields.many2one('stock.quant.package', 'Container Package', help="If set, the operations are packed into this package", required=False, ondelete='cascade'),
3309         'date': fields.datetime('Date', required=True),
3310         'owner_id': fields.many2one('res.partner', 'Owner', help="Owner of the quants"),
3311         #'update_cost': fields.boolean('Need cost update'),
3312         'cost': fields.float("Cost", help="Unit Cost for this product line"),
3313         'currency': fields.many2one('res.currency', string="Currency", help="Currency in which Unit cost is expressed", ondelete='CASCADE'),
3314         'linked_move_operation_ids': fields.one2many('stock.move.operation.link', 'operation_id', string='Linked Moves', readonly=True, help='Moves impacted by this operation for the computation of the remaining quantities'),
3315         'remaining_qty': fields.function(_get_remaining_qty, type='float', string='Remaining Qty'),
3316     }
3317
3318     _defaults = {
3319         'date': fields.date.context_today,
3320     }
3321
3322     def process_packaging(self, cr, uid, operation, quants, context=None):
3323         ''' Process the packaging of a given operation, after the quants have been moved. If there was not enough quants found
3324         a quant already has been with the good package information so we don't consider that case in this method'''
3325         quant_obj = self.pool.get("stock.quant")
3326         pack_obj = self.pool.get("stock.quant.package")
3327         for quant, qty in quants:
3328             if quant:
3329                 if operation.product_id:
3330                     #if a product + a package information is given, we consider that we took a part of an existing package (unpacking)
3331                     quant_obj.write(cr, SUPERUSER_ID, quant.id, {'package_id': operation.result_package_id.id}, context=context)
3332                 elif operation.package_id and operation.result_package_id:
3333                     #move the whole pack into the final package if any
3334                     pack_obj.write(cr, uid, [operation.package_id.id], {'parent_id': operation.result_package_id.id}, context=context)
3335
3336
3337
3338
3339     #TODO: this function can be refactored
3340     def _search_and_increment(self, cr, uid, picking_id, domain, context=None):
3341         '''Search for an operation with given 'domain' in a picking, if it exists increment the qty (+1) otherwise create it
3342
3343         :param domain: list of tuple directly reusable as a domain
3344         context can receive a key 'current_package_id' with the package to consider for this operation
3345         returns True
3346
3347         previously: returns the update to do in stock.move one2many field of picking (adapt remaining quantities) and to the list of package in the classic one2many syntax
3348                  (0, 0,  { values })    link to a new record that needs to be created with the given values dictionary
3349                  (1, ID, { values })    update the linked record with id = ID (write *values* on it)
3350                  (2, ID)                remove and delete the linked record with id = ID (calls unlink on ID, that will delete the object completely, and the link to it as well)
3351         '''
3352         if context is None:
3353             context = {}
3354
3355         #if current_package_id is given in the context, we increase the number of items in this package
3356         package_clause = [('result_package_id', '=', context.get('current_package_id', False))]
3357         existing_operation_ids = self.search(cr, uid, [('picking_id', '=', picking_id)] + domain + package_clause, context=context)
3358         if existing_operation_ids:
3359             #existing operation found for the given domain and picking => increment its quantity
3360             operation_id = existing_operation_ids[0]
3361             qty = self.browse(cr, uid, operation_id, context=context).product_qty + 1
3362             self.write(cr, uid, operation_id, {'product_qty': qty}, context=context)
3363         else:
3364             #no existing operation found for the given domain and picking => create a new one
3365             values = {
3366                 'picking_id': picking_id,
3367                 'product_qty': 1,
3368             }
3369             for key in domain:
3370                 var_name, dummy, value = key
3371                 uom_id = False
3372                 if var_name == 'product_id':
3373                     uom_id = self.pool.get('product.product').browse(cr, uid, value, context=context).uom_id.id
3374                 update_dict = {var_name: value}
3375                 if uom_id:
3376                     update_dict['product_uom_id'] = uom_id
3377                 values.update(update_dict)
3378             operation_id = self.create(cr, uid, values, context=context)
3379         return True
3380
3381
3382 class stock_move_operation_link(osv.osv):
3383     """
3384     Table making the link between stock.moves and stock.pack.operations to compute the remaining quantities on each of these objects
3385     """
3386     _name = "stock.move.operation.link"
3387     _description = "Link between stock moves and pack operations"
3388
3389     _columns = {
3390         'qty': fields.float('Quantity', help="Quantity of products to consider when talking about the contribution of this pack operation towards the remaining quantity of the move (and inverse). Given in the product main uom."),
3391         'operation_id': fields.many2one('stock.pack.operation', 'Operation', required=True, ondelete="cascade"),
3392         'move_id': fields.many2one('stock.move', 'Move', required=True, ondelete="cascade"),
3393         'reserved_quant_ids': fields.one2many('stock.quant', 'link_move_operation_id', 'Reserved quants'),
3394     }
3395
3396     def get_specific_domain(self, cr, uid, record, context=None):
3397         '''Returns the specific domain to consider for quant selection in action_assign() or action_done() of stock.move,
3398         having the record given as parameter making the link between the stock move and a pack operation'''
3399         package_obj = self.pool.get('stock.quant.package')
3400
3401         op = record.operation_id
3402         domain = []
3403         if op.package_id:
3404             domain.append(('id', 'in', package_obj.get_content(cr, uid, [op.package_id.id], context=context)))
3405         if op.lot_id:
3406             domain.append(('lot_id', '=', op.lot_id.id))
3407         if op.owner_id:
3408             domain.append(('owner_id', '=', op.owner_id.id))
3409         else:
3410             domain.append(('owner_id', '=', False))
3411         return domain
3412
3413 class stock_warehouse_orderpoint(osv.osv):
3414     """
3415     Defines Minimum stock rules.
3416     """
3417     _name = "stock.warehouse.orderpoint"
3418     _description = "Minimum Inventory Rule"
3419
3420     def get_draft_procurements(self, cr, uid, ids, context=None):
3421         if context is None:
3422             context = {}
3423         if not isinstance(ids, list):
3424             ids = [ids]
3425         procurement_obj = self.pool.get('procurement.order')
3426         for orderpoint in self.browse(cr, uid, ids, context=context):
3427             procurement_ids = procurement_obj.search(cr, uid, [('state', 'not in', ('cancel', 'done')), ('product_id', '=', orderpoint.product_id.id), ('location_id', '=', orderpoint.location_id.id)], context=context)            
3428         return list(set(procurement_ids))
3429
3430     def _check_product_uom(self, cr, uid, ids, context=None):
3431         '''
3432         Check if the UoM has the same category as the product standard UoM
3433         '''
3434         if not context:
3435             context = {}
3436
3437         for rule in self.browse(cr, uid, ids, context=context):
3438             if rule.product_id.uom_id.category_id.id != rule.product_uom.category_id.id:
3439                 return False
3440
3441         return True
3442
3443     def action_view_proc_to_process(self, cr, uid, ids, context=None):        
3444         act_obj = self.pool.get('ir.actions.act_window')
3445         mod_obj = self.pool.get('ir.model.data')
3446         draft_ids = self.get_draft_procurements(cr, uid, ids, context=context)
3447         result = mod_obj.get_object_reference(cr, uid, 'procurement', 'do_view_procurements')
3448         if not result:
3449             return False
3450  
3451         result = act_obj.read(cr, uid, [result[1]], context=context)[0]
3452         result['domain'] = "[('id', 'in', [" + ','.join(map(str, draft_ids)) + "])]"
3453         return result
3454
3455     _columns = {
3456         'name': fields.char('Name', size=32, required=True),
3457         'active': fields.boolean('Active', help="If the active field is set to False, it will allow you to hide the orderpoint without removing it."),
3458         'logic': fields.selection([('max', 'Order to Max'), ('price', 'Best price (not yet active!)')], 'Reordering Mode', required=True),
3459         'warehouse_id': fields.many2one('stock.warehouse', 'Warehouse', required=True, ondelete="cascade"),
3460         'location_id': fields.many2one('stock.location', 'Location', required=True, ondelete="cascade"),
3461         'product_id': fields.many2one('product.product', 'Product', required=True, ondelete='cascade', domain=[('type', '!=', 'service')]),
3462         'product_uom': fields.many2one('product.uom', 'Product Unit of Measure', required=True),
3463         'product_min_qty': fields.float('Minimum Quantity', required=True,
3464             help="When the virtual stock goes below the Min Quantity specified for this field, OpenERP generates "\
3465             "a procurement to bring the forecasted quantity to the Max Quantity."),
3466         'product_max_qty': fields.float('Maximum Quantity', required=True,
3467             help="When the virtual stock goes below the Min Quantity, OpenERP generates "\
3468             "a procurement to bring the forecasted quantity to the Quantity specified as Max Quantity."),
3469         'qty_multiple': fields.integer('Qty Multiple', required=True,
3470             help="The procurement quantity will be rounded up to this multiple."),
3471         'procurement_id': fields.many2one('procurement.order', 'Latest procurement', ondelete="set null"),
3472         'company_id': fields.many2one('res.company', 'Company', required=True)        
3473     }
3474     _defaults = {
3475         'active': lambda *a: 1,
3476         'logic': lambda *a: 'max',
3477         'qty_multiple': lambda *a: 1,
3478         'name': lambda self, cr, uid, context: self.pool.get('ir.sequence').get(cr, uid, 'stock.orderpoint') or '',
3479         'product_uom': lambda self, cr, uid, context: context.get('product_uom', False),
3480         'company_id': lambda self, cr, uid, context: self.pool.get('res.company')._company_default_get(cr, uid, 'stock.warehouse.orderpoint', context=context)
3481     }
3482     _sql_constraints = [
3483         ('qty_multiple_check', 'CHECK( qty_multiple > 0 )', 'Qty Multiple must be greater than zero.'),
3484     ]
3485     _constraints = [
3486         (_check_product_uom, 'You have to select a product unit of measure in the same category than the default unit of measure of the product', ['product_id', 'product_uom']),
3487     ]
3488
3489     def default_get(self, cr, uid, fields, context=None):
3490         res = super(stock_warehouse_orderpoint, self).default_get(cr, uid, fields, context)
3491         # default 'warehouse_id' and 'location_id'
3492         if 'warehouse_id' not in res:
3493             warehouse = self.pool.get('ir.model.data').get_object(cr, uid, 'stock', 'warehouse0', context)
3494             res['warehouse_id'] = warehouse.id
3495         if 'location_id' not in res:
3496             warehouse = self.pool.get('stock.warehouse').browse(cr, uid, res['warehouse_id'], context)
3497             res['location_id'] = warehouse.lot_stock_id.id
3498         return res
3499
3500     def onchange_warehouse_id(self, cr, uid, ids, warehouse_id, context=None):
3501         """ Finds location id for changed warehouse.
3502         @param warehouse_id: Changed id of warehouse.
3503         @return: Dictionary of values.
3504         """
3505         if warehouse_id:
3506             w = self.pool.get('stock.warehouse').browse(cr, uid, warehouse_id, context=context)
3507             v = {'location_id': w.lot_stock_id.id}
3508             return {'value': v}
3509         return {}
3510
3511     def onchange_product_id(self, cr, uid, ids, product_id, context=None):
3512         """ Finds UoM for changed product.
3513         @param product_id: Changed id of product.
3514         @return: Dictionary of values.
3515         """
3516         if product_id:
3517             prod = self.pool.get('product.product').browse(cr, uid, product_id, context=context)
3518             d = {'product_uom': [('category_id', '=', prod.uom_id.category_id.id)]}
3519             v = {'product_uom': prod.uom_id.id}
3520             return {'value': v, 'domain': d}
3521         return {'domain': {'product_uom': []}}
3522
3523     def copy(self, cr, uid, id, default=None, context=None):
3524         if not default:
3525             default = {}
3526         default.update({
3527             'name': self.pool.get('ir.sequence').get(cr, uid, 'stock.orderpoint') or '',
3528         })
3529         return super(stock_warehouse_orderpoint, self).copy(cr, uid, id, default, context=context)
3530
3531
3532 class stock_picking_type(osv.osv):
3533     _name = "stock.picking.type"
3534     _description = "The picking type determines the picking view"
3535     _order = 'sequence'
3536
3537     def __get_bar_values(self, cr, uid, obj, domain, read_fields, value_field, groupby_field, context=None):
3538         """ Generic method to generate data for bar chart values using SparklineBarWidget.
3539             This method performs obj.read_group(cr, uid, domain, read_fields, groupby_field).
3540
3541             :param obj: the target model (i.e. crm_lead)
3542             :param domain: the domain applied to the read_group
3543             :param list read_fields: the list of fields to read in the read_group
3544             :param str value_field: the field used to compute the value of the bar slice
3545             :param str groupby_field: the fields used to group
3546
3547             :return list section_result: a list of dicts: [
3548                                                 {   'value': (int) bar_column_value,
3549                                                     'tootip': (str) bar_column_tooltip,
3550                                                 }
3551                                             ]
3552         """
3553         month_begin = date.today().replace(day=1)
3554         section_result = [{
3555             'value': 0,
3556             'tooltip': (month_begin + relativedelta.relativedelta(months=i)).strftime('%B'),
3557         } for i in range(-2, 2, 1)]
3558         group_obj = obj.read_group(cr, uid, domain, read_fields, groupby_field, context=context)
3559         for group in group_obj:
3560             group_begin_date = datetime.strptime(group['__domain'][0][2], DEFAULT_SERVER_DATE_FORMAT)
3561             month_delta = relativedelta.relativedelta(month_begin, group_begin_date)
3562             section_result[-month_delta.months + 2] = {'value': group.get(value_field, 0), 'tooltip': group_begin_date.strftime('%B')}
3563             inner_groupby = (group.get('__context', {})).get('group_by',[])
3564             if inner_groupby:
3565                 groupby_picking = obj.read_group(cr, uid, group.get('__domain'), read_fields, inner_groupby, context=context)
3566                 for groupby in groupby_picking:
3567                     section_result[-month_delta.months + 2]['value'] = groupby.get(value_field, 0)
3568         return section_result
3569
3570     def _get_tristate_values(self, cr, uid, ids, field_name, arg, context=None):
3571         picking_obj = self.pool.get('stock.picking')
3572         res = dict.fromkeys(ids, [])
3573         for picking_type_id in ids:
3574             #get last 10 pickings of this type
3575             picking_ids = picking_obj.search(cr, uid, [('picking_type_id', '=', picking_type_id), ('state', '=', 'done')], order='date_done desc', limit=10, context=context)
3576             tristates = []
3577             for picking in picking_obj.browse(cr, uid, picking_ids, context=context):
3578                 if picking.date_done > picking.date:
3579                     tristates.insert(0, {'tooltip': picking.name + _(': Late'), 'value': -1})
3580                 elif picking.backorder_id:
3581                     tristates.insert(0, {'tooltip': picking.name + _(': Backorder exists'), 'value': 0})
3582                 else:
3583                     tristates.insert(0, {'tooltip': picking.name + _(': OK'), 'value': 1})
3584             res[picking_type_id] = tristates
3585         return res
3586
3587
3588
3589     def _get_monthly_pickings(self, cr, uid, ids, field_name, arg, context=None):
3590         obj = self.pool.get('stock.picking')
3591         res = dict.fromkeys(ids, False)
3592         month_begin = date.today().replace(day=1)
3593         groupby_begin = (month_begin + relativedelta.relativedelta(months=-2)).strftime(DEFAULT_SERVER_DATE_FORMAT)
3594         groupby_end = (month_begin + relativedelta.relativedelta(months=2)).strftime(DEFAULT_SERVER_DATE_FORMAT)
3595         for id in ids:
3596             created_domain = [
3597                 ('picking_type_id', '=', id),
3598                 ('state', '=', 'done'),
3599                 ('date', '>=', groupby_begin),
3600                 ('date', '<', groupby_end),
3601             ]
3602             res[id] = self.__get_bar_values(cr, uid, obj, created_domain, ['date','picking_type_id'], 'picking_type_id_count', ['date','picking_type_id'], context=context)
3603         return res
3604
3605     def _get_picking_count(self, cr, uid, ids, field_names, arg, context=None):
3606         obj = self.pool.get('stock.picking')
3607         domains = {
3608             'count_picking_draft': [('state', '=', 'draft')],
3609             'count_picking_waiting': [('state','=', 'confirmed')],
3610             'count_picking_ready': [('state','=','assigned')],
3611             'count_picking': [('state','in',('assigned','waiting','confirmed'))],
3612             'count_picking_late': [('min_date','<', time.strftime(DEFAULT_SERVER_DATETIME_FORMAT)), ('state','in',('assigned','waiting','confirmed'))],
3613             'count_picking_backorders': [('backorder_id','!=', False), ('state','in',('confirmed', 'assigned', 'waiting'))],
3614         }
3615         result = {}
3616         for field in domains:
3617             data = obj.read_group(cr, uid, domains[field] +
3618                 [('state', 'not in',('done','cancel')), ('picking_type_id', 'in', ids)],
3619                 ['picking_type_id'], ['picking_type_id'], context=context)
3620             count = dict(map(lambda x: (x['picking_type_id'] and x['picking_type_id'][0], x['picking_type_id_count']), data))
3621             for tid in ids:
3622                 result.setdefault(tid, {})[field] = count.get(tid, 0)
3623         for tid in ids:
3624             if result[tid]['count_picking']:
3625                 result[tid]['rate_picking_late'] = result[tid]['count_picking_late'] *100 / result[tid]['count_picking']
3626                 result[tid]['rate_picking_backorders'] = result[tid]['count_picking_backorders'] *100 / result[tid]['count_picking']
3627             else:
3628                 result[tid]['rate_picking_late'] = 0
3629                 result[tid]['rate_picking_backorders'] = 0
3630         return result
3631
3632     #TODO: not returning valus in required format to show in sparkline library,just added latest_picking_waiting need to add proper logic.
3633     def _get_picking_history(self, cr, uid, ids, field_names, arg, context=None):
3634         obj = self.pool.get('stock.picking')
3635         result = {}
3636         for id in ids:
3637             result[id] = {
3638                 'latest_picking_late': [],
3639                 'latest_picking_backorders': [],
3640                 'latest_picking_waiting': []
3641             }
3642         for type_id in ids:
3643             pick_ids = obj.search(cr, uid, [('state', '=','done'), ('picking_type_id','=',type_id)], limit=12, order="date desc", context=context)
3644             for pick in obj.browse(cr, uid, pick_ids, context=context):
3645                 result[type_id]['latest_picking_late'] = cmp(pick.date[:10], time.strftime('%Y-%m-%d'))
3646                 result[type_id]['latest_picking_backorders'] = bool(pick.backorder_id)
3647                 result[type_id]['latest_picking_waiting'] = cmp(pick.date[:10], time.strftime('%Y-%m-%d'))
3648         return result
3649
3650     def onchange_picking_code(self, cr, uid, ids, picking_code=False):
3651         if not picking_code:
3652             return False
3653         
3654         obj_data = self.pool.get('ir.model.data')
3655         stock_loc = obj_data.get_object_reference(cr, uid, 'stock','stock_location_stock')[1]
3656         
3657         result = {
3658             'default_location_src_id': stock_loc,
3659             'default_location_dest_id': stock_loc,
3660         }
3661         if picking_code == 'incoming':
3662             result['default_location_src_id'] = obj_data.get_object_reference(cr, uid, 'stock','stock_location_suppliers')[1]
3663             return {'value': result}
3664         if picking_code == 'outgoing':
3665             result['default_location_dest_id'] = obj_data.get_object_reference(cr, uid, 'stock','stock_location_customers')[1]
3666             return {'value': result}
3667         else:
3668             return {'value': result}
3669
3670     def _get_name(self, cr, uid, ids, field_names, arg, context=None):
3671         return dict(self.name_get(cr, uid, ids, context=context))
3672
3673     def name_get(self, cr, uid, ids, context=None):
3674         """Overides orm name_get method to display 'Warehouse_name: PickingType_name' """
3675         if context is None:
3676             context = {}
3677         if not isinstance(ids, list):
3678             ids = [ids]
3679         res = []
3680         if not ids:
3681             return res
3682         for record in self.browse(cr, uid, ids, context=context):
3683             name = record.name
3684             if record.warehouse_id:
3685                 name = record.warehouse_id.name + ': ' +name
3686             if context.get('special_shortened_wh_name'):
3687                 if record.warehouse_id:
3688                     name = record.warehouse_id.name
3689                 else:
3690                     name = _('Customer') + ' (' + record.name + ')'
3691             res.append((record.id, name))
3692         return res
3693
3694     def _default_warehouse(self, cr, uid, context=None):
3695         user = self.pool.get('res.users').browse(cr, uid, uid, context)
3696         res = self.pool.get('stock.warehouse').search(cr, uid, [('company_id', '=', user.company_id.id)], limit=1, context=context)
3697         return res and res[0] or False
3698
3699     _columns = {
3700         'name': fields.char('Name', translate=True, required=True),
3701         'complete_name': fields.function(_get_name, type='char', string='Name'),
3702         'auto_force_assign': fields.boolean('Automatic Availability', help='This picking type does\'t need to check for the availability in source location.'),
3703         'color': fields.integer('Color'),
3704         'sequence': fields.integer('Sequence', help="Used to order the 'All Operations' kanban view"),
3705         'sequence_id': fields.many2one('ir.sequence', 'Reference Sequence', required=True),
3706         'default_location_src_id': fields.many2one('stock.location', 'Default Source Location'),
3707         'default_location_dest_id': fields.many2one('stock.location', 'Default Destination Location'),
3708         'code': fields.selection([('incoming', 'Suppliers'), ('outgoing', 'Customers'), ('internal', 'Internal')], 'Type of Operation', required=True),
3709         'return_picking_type_id': fields.many2one('stock.picking.type', 'Picking Type for Returns'),
3710         'warehouse_id': fields.many2one('stock.warehouse', 'Warehouse', ondelete='cascade'),
3711         'active': fields.boolean('Active'),
3712
3713         # Statistics for the kanban view
3714         'monthly_picking': fields.function(_get_monthly_pickings,
3715             type='string',
3716             string='Done Pickings per Month'),
3717         'last_done_picking': fields.function(_get_tristate_values,
3718             type='string',
3719             string='Last 10 Done Pickings'),
3720
3721         'count_picking_draft': fields.function(_get_picking_count,
3722             type='integer', multi='_get_picking_count'),
3723         'count_picking_ready': fields.function(_get_picking_count,
3724             type='integer', multi='_get_picking_count'),
3725         'count_picking': fields.function(_get_picking_count,
3726             type='integer', multi='_get_picking_count'),
3727         'count_picking_waiting': fields.function(_get_picking_count,
3728             type='integer', multi='_get_picking_count'),
3729         'count_picking_late': fields.function(_get_picking_count,
3730             type='integer', multi='_get_picking_count'),
3731         'count_picking_backorders': fields.function(_get_picking_count,
3732             type='integer', multi='_get_picking_count'),
3733
3734         'rate_picking_late': fields.function(_get_picking_count,
3735             type='integer', multi='_get_picking_count'),
3736         'rate_picking_backorders': fields.function(_get_picking_count,
3737             type='integer', multi='_get_picking_count'),
3738
3739         'latest_picking_late': fields.function(_get_picking_history,
3740             type='string', multi='_get_picking_history'),
3741         'latest_picking_backorders': fields.function(_get_picking_history,
3742             type='string', multi='_get_picking_history'),
3743         'latest_picking_waiting': fields.function(_get_picking_history,
3744             type='string', multi='_get_picking_history'),
3745
3746     }
3747     _defaults = {
3748         'warehouse_id': _default_warehouse,
3749         'active': True,
3750     }
3751
3752
3753 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: