[MERGE] forward port of branch 7.0 up to 2080ea0
[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 datetime
23 from dateutil.relativedelta import relativedelta
24 import time
25 from operator import itemgetter
26 from itertools import groupby
27
28 from openerp.osv import fields, osv, orm
29 from openerp.tools.translate import _
30 from openerp import workflow
31 from openerp import tools
32 from openerp.tools import float_compare, DEFAULT_SERVER_DATETIME_FORMAT
33 import openerp.addons.decimal_precision as dp
34 import logging
35 _logger = logging.getLogger(__name__)
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="Code for Incoterms"),
46         'active': fields.boolean('Active', help="By unchecking the active field, you may hide an INCOTERM without deleting it."),
47     }
48     _defaults = {
49         'active': True,
50     }
51
52
53 class stock_journal(osv.osv):
54     _name = "stock.journal"
55     _description = "Stock Journal"
56     _columns = {
57         'name': fields.char('Stock Journal', size=32, required=True),
58         'user_id': fields.many2one('res.users', 'Responsible'),
59     }
60     _defaults = {
61         'user_id': lambda s, c, u, ctx: u
62     }
63
64
65 #----------------------------------------------------------
66 # Stock Location
67 #----------------------------------------------------------
68 class stock_location(osv.osv):
69     _name = "stock.location"
70     _description = "Location"
71     _parent_name = "location_id"
72     _parent_store = True
73     _parent_order = 'posz,name'
74     _order = 'parent_left'
75
76     # TODO: implement name_search() in a way that matches the results of name_get!
77
78     def name_get(self, cr, uid, ids, context=None):
79         # always return the full hierarchical name
80         res = self._complete_name(cr, uid, ids, 'complete_name', None, context=context)
81         return res.items()
82
83     def _complete_name(self, cr, uid, ids, name, args, context=None):
84         """ Forms complete name of location from parent location to child location.
85         @return: Dictionary of values
86         """
87         res = {}
88         for m in self.browse(cr, uid, ids, context=context):
89             names = [m.name]
90             parent = m.location_id
91             while parent:
92                 names.append(parent.name)
93                 parent = parent.location_id
94             res[m.id] = ' / '.join(reversed(names))
95         return res
96
97     def _get_sublocations(self, cr, uid, ids, context=None):
98         """ return all sublocations of the given stock locations (included) """
99         return self.search(cr, uid, [('id', 'child_of', ids)], context=context)
100
101     def _product_value(self, cr, uid, ids, field_names, arg, context=None):
102         """Computes stock value (real and virtual) for a product, as well as stock qty (real and virtual).
103         @param field_names: Name of field
104         @return: Dictionary of values
105         """
106         prod_id = context and context.get('product_id', False)
107
108         if not prod_id:
109             return dict([(i, {}.fromkeys(field_names, 0.0)) for i in ids])
110
111         product_product_obj = self.pool.get('product.product')
112
113         cr.execute('select distinct product_id, location_id from stock_move where location_id in %s', (tuple(ids), ))
114         dict1 = cr.dictfetchall()
115         cr.execute('select distinct product_id, location_dest_id as location_id from stock_move where location_dest_id in %s', (tuple(ids), ))
116         dict2 = cr.dictfetchall()
117         res_products_by_location = sorted(dict1+dict2, key=itemgetter('location_id'))
118         products_by_location = dict((k, [v['product_id'] for v in itr]) for k, itr in groupby(res_products_by_location, itemgetter('location_id')))
119
120         result = dict([(i, {}.fromkeys(field_names, 0.0)) for i in ids])
121         result.update(dict([(i, {}.fromkeys(field_names, 0.0)) for i in list(set([aaa['location_id'] for aaa in res_products_by_location]))]))
122
123         currency_id = self.pool.get('res.users').browse(cr, uid, uid).company_id.currency_id.id
124         currency_obj = self.pool.get('res.currency')
125         currency = currency_obj.browse(cr, uid, currency_id, context=context)
126         for loc_id, product_ids in products_by_location.items():
127             if prod_id:
128                 product_ids = [prod_id]
129             c = (context or {}).copy()
130             c['location'] = loc_id
131             for prod in product_product_obj.browse(cr, uid, product_ids, context=c):
132                 for f in field_names:
133                     if f == 'stock_real':
134                         if loc_id not in result:
135                             result[loc_id] = {}
136                         result[loc_id][f] += prod.qty_available
137                     elif f == 'stock_virtual':
138                         result[loc_id][f] += prod.virtual_available
139                     elif f == 'stock_real_value':
140                         amount = prod.qty_available * prod.standard_price
141                         amount = currency_obj.round(cr, uid, currency, amount)
142                         result[loc_id][f] += amount
143                     elif f == 'stock_virtual_value':
144                         amount = prod.virtual_available * prod.standard_price
145                         amount = currency_obj.round(cr, uid, currency, amount)
146                         result[loc_id][f] += amount
147         return result
148
149     _columns = {
150         'name': fields.char('Location Name', size=64, required=True, translate=True),
151         'active': fields.boolean('Active', help="By unchecking the active field, you may hide a location without deleting it."),
152         '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,
153                  help="""* Supplier Location: Virtual location representing the source location for products coming from your suppliers
154                        \n* View: Virtual location used to create a hierarchical structures for your warehouse, aggregating its child locations ; can't directly contain products
155                        \n* Internal Location: Physical locations inside your own warehouses,
156                        \n* Customer Location: Virtual location representing the destination location for products sent to your customers
157                        \n* Inventory: Virtual location serving as counterpart for inventory operations used to correct stock levels (Physical inventories)
158                        \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.
159                        \n* Production: Virtual counterpart location for production operations: this location consumes the raw material and produces finished products
160                       """, select = True),
161          # temporarily removed, as it's unused: 'allocation_method': fields.selection([('fifo', 'FIFO'), ('lifo', 'LIFO'), ('nearest', 'Nearest')], 'Allocation Method', required=True),
162
163         # as discussed on bug 765559, the main purpose of this field is to allow sorting the list of locations
164         # according to the displayed names, and reversing that sort by clicking on a column. It does not work for
165         # translated values though - so it needs fixing.
166         'complete_name': fields.function(_complete_name, type='char', size=256, string="Location Name",
167                             store={'stock.location': (_get_sublocations, ['name', 'location_id'], 10)}),
168
169         'stock_real': fields.function(_product_value, type='float', string='Real Stock', multi="stock"),
170         'stock_virtual': fields.function(_product_value, type='float', string='Virtual Stock', multi="stock"),
171
172         'location_id': fields.many2one('stock.location', 'Parent Location', select=True, ondelete='cascade'),
173         'child_ids': fields.one2many('stock.location', 'location_id', 'Contains'),
174
175         'chained_journal_id': fields.many2one('stock.journal', 'Chaining Journal',help="Inventory Journal in which the chained move will be written, if the Chaining Type is not Transparent (no journal is used if left empty)"),
176         'chained_location_id': fields.many2one('stock.location', 'Chained Location If Fixed'),
177         'chained_location_type': fields.selection([('none', 'None'), ('customer', 'Customer'), ('fixed', 'Fixed Location')],
178             'Chained Location Type', required=True,
179             help="Determines whether this location is chained to another location, i.e. any incoming product in this location \n" \
180                 "should next go to the chained location. The chained location is determined according to the type :"\
181                 "\n* None: No chaining at all"\
182                 "\n* Customer: The chained location will be taken from the Customer Location field on the Partner form of the Partner that is specified in the Picking list of the incoming products." \
183                 "\n* Fixed Location: The chained location is taken from the next field: Chained Location if Fixed." \
184                 ),
185         'chained_auto_packing': fields.selection(
186             [('auto', 'Automatic Move'), ('manual', 'Manual Operation'), ('transparent', 'Automatic No Step Added')],
187             'Chaining Type',
188             required=True,
189             help="This is used only if you select a chained location type.\n" \
190                 "The 'Automatic Move' value will create a stock move after the current one that will be "\
191                 "validated automatically. With 'Manual Operation', the stock move has to be validated "\
192                 "by a worker. With 'Automatic No Step Added', the location is replaced in the original move."
193             ),
194         'chained_picking_type': fields.selection([('out', 'Sending Goods'), ('in', 'Getting Goods'), ('internal', 'Internal')], 'Shipping Type', help="Shipping Type of the Picking List that will contain the chained move (leave empty to automatically detect the type based on the source and destination locations)."),
195         'chained_company_id': fields.many2one('res.company', 'Chained Company', help='The company the Picking List containing the chained move will belong to (leave empty to use the default company determination rules'),
196         'chained_delay': fields.integer('Chaining Lead Time',help="Delay between original move and chained move in days"),
197         'partner_id': fields.many2one('res.partner', 'Location Address',help="Address of  customer or supplier."),
198         'icon': fields.selection(tools.icons, 'Icon', size=64,help="Icon show in  hierarchical tree view"),
199
200         'comment': fields.text('Additional Information'),
201         'posx': fields.integer('Corridor (X)',help="Optional localization details, for information purpose only"),
202         'posy': fields.integer('Shelves (Y)', help="Optional localization details, for information purpose only"),
203         'posz': fields.integer('Height (Z)', help="Optional localization details, for information purpose only"),
204
205         'parent_left': fields.integer('Left Parent', select=1),
206         'parent_right': fields.integer('Right Parent', select=1),
207         'stock_real_value': fields.function(_product_value, type='float', string='Real Stock Value', multi="stock", digits_compute=dp.get_precision('Account')),
208         'stock_virtual_value': fields.function(_product_value, type='float', string='Virtual Stock Value', multi="stock", digits_compute=dp.get_precision('Account')),
209         'company_id': fields.many2one('res.company', 'Company', select=1, help='Let this field empty if this location is shared between all companies'),
210         'scrap_location': fields.boolean('Scrap Location', help='Check this box to allow using this location to put scrapped/damaged goods.'),
211         'valuation_in_account_id': fields.many2one('account.account', 'Stock Valuation Account (Incoming)', domain = [('type','=','other')],
212                                                    help="Used for real-time inventory valuation. When set on a virtual location (non internal type), "
213                                                         "this account will be used to hold the value of products being moved from an internal location "
214                                                         "into this location, instead of the generic Stock Output Account set on the product. "
215                                                         "This has no effect for internal locations."),
216         'valuation_out_account_id': fields.many2one('account.account', 'Stock Valuation Account (Outgoing)', domain = [('type','=','other')],
217                                                    help="Used for real-time inventory valuation. When set on a virtual location (non internal type), "
218                                                         "this account will be used to hold the value of products being moved out of this location "
219                                                         "and into an internal location, instead of the generic Stock Output Account set on the product. "
220                                                         "This has no effect for internal locations."),
221     }
222     _defaults = {
223         'active': True,
224         'usage': 'internal',
225         'chained_location_type': 'none',
226         'chained_auto_packing': 'manual',
227         'company_id': lambda self, cr, uid, c: self.pool.get('res.company')._company_default_get(cr, uid, 'stock.location', context=c),
228         'posx': 0,
229         'posy': 0,
230         'posz': 0,
231         'icon': False,
232         'scrap_location': False,
233     }
234
235     def chained_location_get(self, cr, uid, location, partner=None, product=None, context=None):
236         """ Finds chained location
237         @param location: Location id
238         @param partner: Partner id
239         @param product: Product id
240         @return: List of values
241         """
242         result = None
243         if location.chained_location_type == 'customer':
244             if partner:
245                 result = partner.property_stock_customer
246             else:
247                 loc_id = self.pool['res.partner'].default_get(cr, uid, ['property_stock_customer'], context=context)['property_stock_customer']
248                 result = self.pool['stock.location'].browse(cr, uid, loc_id, context=context)
249         elif location.chained_location_type == 'fixed':
250             result = location.chained_location_id
251         if result:
252             return result, location.chained_auto_packing, location.chained_delay, location.chained_journal_id and location.chained_journal_id.id or False, location.chained_company_id and location.chained_company_id.id or False, location.chained_picking_type, False
253         return result
254
255     def picking_type_get(self, cr, uid, from_location, to_location, context=None):
256         """ Gets type of picking.
257         @param from_location: Source location
258         @param to_location: Destination location
259         @return: Location type
260         """
261         result = 'internal'
262         if (from_location.usage=='internal') and (to_location and to_location.usage in ('customer', 'supplier')):
263             result = 'out'
264         elif (from_location.usage in ('supplier', 'customer')) and (to_location.usage == 'internal'):
265             result = 'in'
266         return result
267
268     def _product_get_all_report(self, cr, uid, ids, product_ids=False, context=None):
269         return self._product_get_report(cr, uid, ids, product_ids, context, recursive=True)
270
271     def _product_get_report(self, cr, uid, ids, product_ids=False,
272             context=None, recursive=False):
273         """ Finds the product quantity and price for particular location.
274         @param product_ids: Ids of product
275         @param recursive: True or False
276         @return: Dictionary of values
277         """
278         if context is None:
279             context = {}
280         product_obj = self.pool.get('product.product')
281         # Take the user company and pricetype
282         context['currency_id'] = self.pool.get('res.users').browse(cr, uid, uid, context=context).company_id.currency_id.id
283
284         # To be able to offer recursive or non-recursive reports we need to prevent recursive quantities by default
285         context['compute_child'] = False
286
287         if not product_ids:
288             product_ids = product_obj.search(cr, uid, [], context={'active_test': False})
289
290         products = product_obj.browse(cr, uid, product_ids, context=context)
291         products_by_uom = {}
292         products_by_id = {}
293         for product in products:
294             products_by_uom.setdefault(product.uom_id.id, [])
295             products_by_uom[product.uom_id.id].append(product)
296             products_by_id.setdefault(product.id, [])
297             products_by_id[product.id] = product
298
299         result = {}
300         result['product'] = []
301         for id in ids:
302             quantity_total = 0.0
303             total_price = 0.0
304             for uom_id in products_by_uom.keys():
305                 fnc = self._product_get
306                 if recursive:
307                     fnc = self._product_all_get
308                 ctx = context.copy()
309                 ctx['uom'] = uom_id
310                 qty = fnc(cr, uid, id, [x.id for x in products_by_uom[uom_id]],
311                         context=ctx)
312                 for product_id in qty.keys():
313                     if not qty[product_id]:
314                         continue
315                     product = products_by_id[product_id]
316                     quantity_total += qty[product_id]
317
318                     # Compute based on pricetype
319                     # Choose the right filed standard_price to read
320                     amount_unit = product.price_get('standard_price', context=context)[product.id]
321                     price = qty[product_id] * amount_unit
322
323                     total_price += price
324                     result['product'].append({
325                         'price': amount_unit,
326                         'prod_name': product.name,
327                         'code': product.default_code, # used by lot_overview_all report!
328                         'variants': product.variants or '',
329                         'uom': product.uom_id.name,
330                         'prod_qty': qty[product_id],
331                         'price_value': price,
332                     })
333         result['total'] = quantity_total
334         result['total_price'] = total_price
335         return result
336
337     def _product_get_multi_location(self, cr, uid, ids, product_ids=False, context=None,
338                                     states=['done'], what=('in', 'out')):
339         """
340         @param product_ids: Ids of product
341         @param states: List of states
342         @param what: Tuple of
343         @return:
344         """
345         product_obj = self.pool.get('product.product')
346         if context is None:
347             context = {}
348         context.update({
349             'states': states,
350             'what': what,
351             'location': ids
352         })
353         return product_obj.get_product_available(cr, uid, product_ids, context=context)
354
355     def _product_get(self, cr, uid, id, product_ids=False, context=None, states=None):
356         """
357         @param product_ids:
358         @param states:
359         @return:
360         """
361         if states is None:
362             states = ['done']
363         ids = id and [id] or []
364         return self._product_get_multi_location(cr, uid, ids, product_ids, context=context, states=states)
365
366     def _product_all_get(self, cr, uid, id, product_ids=False, context=None, states=None):
367         if states is None:
368             states = ['done']
369         # build the list of ids of children of the location given by id
370         ids = id and [id] or []
371         location_ids = self.search(cr, uid, [('location_id', 'child_of', ids)])
372         return self._product_get_multi_location(cr, uid, location_ids, product_ids, context, states)
373
374     def _product_virtual_get(self, cr, uid, id, product_ids=False, context=None, states=None):
375         if states is None:
376             states = ['done']
377         return self._product_all_get(cr, uid, id, product_ids, context, ['confirmed', 'waiting', 'assigned', 'done'])
378
379     def _product_reserve(self, cr, uid, ids, product_id, product_qty, context=None, lock=False):
380         """
381         Attempt to find a quantity ``product_qty`` (in the product's default uom or the uom passed in ``context``) of product ``product_id``
382         in locations with id ``ids`` and their child locations. If ``lock`` is True, the stock.move lines
383         of product with id ``product_id`` in the searched location will be write-locked using Postgres's
384         "FOR UPDATE NOWAIT" option until the transaction is committed or rolled back, to prevent reservin
385         twice the same products.
386         If ``lock`` is True and the lock cannot be obtained (because another transaction has locked some of
387         the same stock.move lines), a log line will be output and False will be returned, as if there was
388         not enough stock.
389
390         :param product_id: Id of product to reserve
391         :param product_qty: Quantity of product to reserve (in the product's default uom or the uom passed in ``context``)
392         :param lock: if True, the stock.move lines of product with id ``product_id`` in all locations (and children locations) with ``ids`` will
393                      be write-locked using postgres's "FOR UPDATE NOWAIT" option until the transaction is committed or rolled back. This is
394                      to prevent reserving twice the same products.
395         :param context: optional context dictionary: if a 'uom' key is present it will be used instead of the default product uom to
396                         compute the ``product_qty`` and in the return value.
397         :return: List of tuples in the form (qty, location_id) with the (partial) quantities that can be taken in each location to
398                  reach the requested product_qty (``qty`` is expressed in the default uom of the product), of False if enough
399                  products could not be found, or the lock could not be obtained (and ``lock`` was True).
400         """
401         result = []
402         amount = 0.0
403         if context is None:
404             context = {}
405         uom_obj = self.pool.get('product.uom')
406         uom_rounding = self.pool.get('product.product').browse(cr, uid, product_id, context=context).uom_id.rounding
407         if context.get('uom'):
408             uom_rounding = uom_obj.browse(cr, uid, context.get('uom'), context=context).rounding
409
410         locations_ids = self.search(cr, uid, [('location_id', 'child_of', ids)])
411         if locations_ids:
412             # Fetch only the locations in which this product has ever been processed (in or out)
413             cr.execute("""SELECT l.id FROM stock_location l WHERE l.id in %s AND
414                         EXISTS (SELECT 1 FROM stock_move m WHERE m.product_id = %s
415                                 AND ((state = 'done' AND m.location_dest_id = l.id)
416                                     OR (state in ('done','assigned') AND m.location_id = l.id)))
417                        """, (tuple(locations_ids), product_id,))
418             locations_ids = [i for (i,) in cr.fetchall()]
419         for id in locations_ids:
420             if lock:
421                 try:
422                     # Must lock with a separate select query because FOR UPDATE can't be used with
423                     # aggregation/group by's (when individual rows aren't identifiable).
424                     # We use a SAVEPOINT to be able to rollback this part of the transaction without
425                     # failing the whole transaction in case the LOCK cannot be acquired.
426                     cr.execute("SAVEPOINT stock_location_product_reserve")
427                     cr.execute("""SELECT id FROM stock_move
428                                   WHERE product_id=%s AND
429                                           (
430                                             (location_dest_id=%s AND
431                                              location_id<>%s AND
432                                              state='done')
433                                             OR
434                                             (location_id=%s AND
435                                              location_dest_id<>%s AND
436                                              state in ('done', 'assigned'))
437                                           )
438                                   FOR UPDATE of stock_move NOWAIT""", (product_id, id, id, id, id), log_exceptions=False)
439                 except Exception:
440                     # Here it's likely that the FOR UPDATE NOWAIT failed to get the LOCK,
441                     # so we ROLLBACK to the SAVEPOINT to restore the transaction to its earlier
442                     # state, we return False as if the products were not available, and log it:
443                     cr.execute("ROLLBACK TO stock_location_product_reserve")
444                     _logger.warning("Failed attempt to reserve %s x product %s, likely due to another transaction already in progress. Next attempt is likely to work. Detailed error available at DEBUG level.", product_qty, product_id)
445                     _logger.debug("Trace of the failed product reservation attempt: ", exc_info=True)
446                     return False
447
448             # XXX TODO: rewrite this with one single query, possibly even the quantity conversion
449             cr.execute("""SELECT product_uom, sum(product_qty) AS product_qty
450                           FROM stock_move
451                           WHERE location_dest_id=%s AND
452                                 location_id<>%s AND
453                                 product_id=%s AND
454                                 state='done'
455                           GROUP BY product_uom
456                        """,
457                        (id, id, product_id))
458             results = cr.dictfetchall()
459             cr.execute("""SELECT product_uom,-sum(product_qty) AS product_qty
460                           FROM stock_move
461                           WHERE location_id=%s AND
462                                 location_dest_id<>%s AND
463                                 product_id=%s AND
464                                 state in ('done', 'assigned')
465                           GROUP BY product_uom
466                        """,
467                        (id, id, product_id))
468             results += cr.dictfetchall()
469             total = 0.0
470             results2 = 0.0
471             for r in results:
472                 amount = uom_obj._compute_qty(cr, uid, r['product_uom'], r['product_qty'], context.get('uom', False))
473                 results2 += amount
474                 total += amount
475             if total <= 0.0:
476                 continue
477
478             amount = results2
479             compare_qty = float_compare(amount, 0, precision_rounding=uom_rounding)
480             if compare_qty == 1:
481                 if amount > min(total, product_qty):
482                     amount = min(product_qty, total)
483                 result.append((amount, id))
484                 product_qty -= amount
485                 total -= amount
486                 if product_qty <= 0.0:
487                     return result
488                 if total <= 0.0:
489                     continue
490         return False
491
492
493
494 class stock_tracking(osv.osv):
495     _name = "stock.tracking"
496     _description = "Packs"
497
498     def checksum(sscc):
499         salt = '31' * 8 + '3'
500         sum = 0
501         for sscc_part, salt_part in zip(sscc, salt):
502             sum += int(sscc_part) * int(salt_part)
503         return (10 - (sum % 10)) % 10
504     checksum = staticmethod(checksum)
505
506     def make_sscc(self, cr, uid, context=None):
507         sequence = self.pool.get('ir.sequence').get(cr, uid, 'stock.lot.tracking')
508         try:
509             return sequence + str(self.checksum(sequence))
510         except Exception:
511             return sequence
512
513     _columns = {
514         'name': fields.char('Pack Reference', size=64, required=True, select=True, help="By default, the pack reference is generated following the sscc standard. (Serial number + 1 check digit)"),
515         'active': fields.boolean('Active', help="By unchecking the active field, you may hide a pack without deleting it."),
516         'serial': fields.char('Additional Reference', size=64, select=True, help="Other reference or serial number"),
517         'move_ids': fields.one2many('stock.move', 'tracking_id', 'Moves for this pack', readonly=True),
518         'date': fields.datetime('Creation Date', required=True),
519     }
520     _defaults = {
521         'active': 1,
522         'name': make_sscc,
523         'date': lambda *a: time.strftime('%Y-%m-%d %H:%M:%S'),
524     }
525
526     def name_search(self, cr, user, name, args=None, operator='ilike', context=None, limit=100):
527         if not args:
528             args = []
529         ids = self.search(cr, user, [('serial', '=', name)]+ args, limit=limit, context=context)
530         ids += self.search(cr, user, [('name', operator, name)]+ args, limit=limit, context=context)
531         return self.name_get(cr, user, ids, context)
532
533     def name_get(self, cr, uid, ids, context=None):
534         """Append the serial to the name"""
535         if not len(ids):
536             return []
537         res = [ (r['id'], r['serial'] and '%s [%s]' % (r['name'], r['serial'])
538                                       or r['name'] )
539                 for r in self.read(cr, uid, ids, ['name', 'serial'],
540                                    context=context) ]
541         return res
542
543     def unlink(self, cr, uid, ids, context=None):
544         raise osv.except_osv(_('Error!'), _('You cannot remove a lot line.'))
545
546     def action_traceability(self, cr, uid, ids, context=None):
547         """ It traces the information of a product
548         @param self: The object pointer.
549         @param cr: A database cursor
550         @param uid: ID of the user currently logged in
551         @param ids: List of IDs selected
552         @param context: A standard dictionary
553         @return: A dictionary of values
554         """
555         return self.pool.get('action.traceability').action_traceability(cr,uid,ids,context)
556
557
558 #----------------------------------------------------------
559 # Stock Picking
560 #----------------------------------------------------------
561 class stock_picking(osv.osv):
562     _name = "stock.picking"
563     _inherit = ['mail.thread']
564     _description = "Picking List"
565     _order = "id desc"
566
567     def _set_maximum_date(self, cr, uid, ids, name, value, arg, context=None):
568         """ Calculates planned date if it is greater than 'value'.
569         @param name: Name of field
570         @param value: Value of field
571         @param arg: User defined argument
572         @return: True or False
573         """
574         if not value:
575             return False
576         if isinstance(ids, (int, long)):
577             ids = [ids]
578         for pick in self.browse(cr, uid, ids, context=context):
579             sql_str = """update stock_move set
580                     date_expected='%s'
581                 where
582                     picking_id=%d """ % (value, pick.id)
583             if pick.max_date:
584                 sql_str += " and (date_expected='" + pick.max_date + "')"
585             cr.execute(sql_str)
586         return True
587
588     def _set_minimum_date(self, cr, uid, ids, name, value, arg, context=None):
589         """ Calculates planned date if it is less than 'value'.
590         @param name: Name of field
591         @param value: Value of field
592         @param arg: User defined argument
593         @return: True or False
594         """
595         if not value:
596             return False
597         if isinstance(ids, (int, long)):
598             ids = [ids]
599         for pick in self.browse(cr, uid, ids, context=context):
600             sql_str = """update stock_move set
601                     date_expected='%s'
602                 where
603                     picking_id=%s """ % (value, pick.id)
604             if pick.min_date:
605                 sql_str += " and (date_expected='" + pick.min_date + "')"
606             cr.execute(sql_str)
607         return True
608
609     def get_min_max_date(self, cr, uid, ids, field_name, arg, context=None):
610         """ Finds minimum and maximum dates for picking.
611         @return: Dictionary of values
612         """
613         res = {}
614         for id in ids:
615             res[id] = {'min_date': False, 'max_date': False}
616         if not ids:
617             return res
618         cr.execute("""select
619                 picking_id,
620                 min(date_expected),
621                 max(date_expected)
622             from
623                 stock_move
624             where
625                 picking_id IN %s
626             group by
627                 picking_id""",(tuple(ids),))
628         for pick, dt1, dt2 in cr.fetchall():
629             res[pick]['min_date'] = dt1
630             res[pick]['max_date'] = dt2
631         return res
632
633     def create(self, cr, user, vals, context=None):
634         if ('name' not in vals) or (vals.get('name')=='/') or (vals.get('name') == False):
635             seq_obj_name =  self._name
636             vals['name'] = self.pool.get('ir.sequence').get(cr, user, seq_obj_name)
637         new_id = super(stock_picking, self).create(cr, user, vals, context)
638         return new_id
639
640     _columns = {
641         'name': fields.char('Reference', size=64, select=True, states={'done':[('readonly', True)], 'cancel':[('readonly',True)]}),
642         'origin': fields.char('Source Document', size=64, states={'done':[('readonly', True)], 'cancel':[('readonly',True)]}, help="Reference of the document", select=True),
643         '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),
644         'type': fields.selection([('out', 'Sending Goods'), ('in', 'Getting Goods'), ('internal', 'Internal')], 'Shipping Type', required=True, select=True, help="Shipping type specify, goods coming in or going out."),
645         'note': fields.text('Notes', states={'done':[('readonly', True)], 'cancel':[('readonly',True)]}),
646         'stock_journal_id': fields.many2one('stock.journal','Stock Journal', select=True, states={'done':[('readonly', True)], 'cancel':[('readonly',True)]}),
647         'location_id': fields.many2one('stock.location', 'Location', states={'done':[('readonly', True)], 'cancel':[('readonly',True)]}, help="Keep empty if you produce at the location where the finished products are needed." \
648                 "Set a location if you produce at a fixed location. This can be a partner location " \
649                 "if you subcontract the manufacturing operations.", select=True),
650         'location_dest_id': fields.many2one('stock.location', 'Dest. Location', states={'done':[('readonly', True)], 'cancel':[('readonly',True)]}, help="Location where the system will stock the finished products.", select=True),
651         '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"),
652         'state': fields.selection([
653             ('draft', 'Draft'),
654             ('cancel', 'Cancelled'),
655             ('auto', 'Waiting Another Operation'),
656             ('confirmed', 'Waiting Availability'),
657             ('assigned', 'Ready to Transfer'),
658             ('done', 'Transferred'),
659             ], 'Status', readonly=True, select=True, track_visibility='onchange', help="""
660             * Draft: not confirmed yet and will not be scheduled until confirmed\n
661             * Waiting Another Operation: waiting for another move to proceed before it becomes automatically available (e.g. in Make-To-Order flows)\n
662             * Waiting Availability: still waiting for the availability of products\n
663             * Ready to Transfer: products reserved, simply waiting for confirmation.\n
664             * Transferred: has been processed, can't be modified or cancelled anymore\n
665             * Cancelled: has been cancelled, can't be confirmed anymore"""
666         ),
667         'min_date': fields.function(get_min_max_date, fnct_inv=_set_minimum_date, multi="min_max_date",
668                  store=True, type='datetime', string='Scheduled Time', select=1, help="Scheduled time for the shipment to be processed"),
669         'date': fields.datetime('Creation Date', help="Creation date, usually the time of the order.", select=True, states={'done':[('readonly', True)], 'cancel':[('readonly',True)]}),
670         'date_done': fields.datetime('Date of Transfer', help="Date of Completion", states={'done':[('readonly', True)], 'cancel':[('readonly',True)]}),
671         'max_date': fields.function(get_min_max_date, fnct_inv=_set_maximum_date, multi="min_max_date",
672                  store=True, type='datetime', string='Max. Expected Date', select=2),
673         'move_lines': fields.one2many('stock.move', 'picking_id', 'Internal Moves', states={'done': [('readonly', True)], 'cancel': [('readonly', True)]}),
674         'product_id': fields.related('move_lines', 'product_id', type='many2one', relation='product.product', string='Product'),
675         'auto_picking': fields.boolean('Auto-Picking', states={'done':[('readonly', True)], 'cancel':[('readonly',True)]}),
676         'partner_id': fields.many2one('res.partner', 'Partner', states={'done':[('readonly', True)], 'cancel':[('readonly',True)]}),
677         'invoice_state': fields.selection([
678             ("invoiced", "Invoiced"),
679             ("2binvoiced", "To Be Invoiced"),
680             ("none", "Not Applicable")], "Invoice Control",
681             select=True, required=True, readonly=True, track_visibility='onchange', states={'draft': [('readonly', False)]}),
682         'company_id': fields.many2one('res.company', 'Company', required=True, select=True, states={'done':[('readonly', True)], 'cancel':[('readonly',True)]}),
683     }
684     _defaults = {
685         'name': lambda self, cr, uid, context: '/',
686         'state': 'draft',
687         'move_type': 'direct',
688         'type': 'internal',
689         'invoice_state': 'none',
690         'date': lambda *a: time.strftime('%Y-%m-%d %H:%M:%S'),
691         'company_id': lambda self, cr, uid, c: self.pool.get('res.company')._company_default_get(cr, uid, 'stock.picking', context=c)
692     }
693     _sql_constraints = [
694         ('name_uniq', 'unique(name, company_id)', 'Reference must be unique per Company!'),
695     ]
696
697     def action_process(self, cr, uid, ids, context=None):
698         if context is None:
699             context = {}
700         """Open the partial picking wizard"""
701         context.update({
702             'active_model': self._name,
703             'active_ids': ids,
704             'active_id': len(ids) and ids[0] or False
705         })
706         return {
707             'view_type': 'form',
708             'view_mode': 'form',
709             'res_model': 'stock.partial.picking',
710             'type': 'ir.actions.act_window',
711             'target': 'new',
712             'context': context,
713             'nodestroy': True,
714         }
715
716     def copy(self, cr, uid, id, default=None, context=None):
717         if default is None:
718             default = {}
719         default = default.copy()
720         picking_obj = self.browse(cr, uid, id, context=context)
721         if ('name' not in default) or (picking_obj.name == '/'):
722             seq_obj_name = 'stock.picking.' + picking_obj.type
723             default['name'] = self.pool.get('ir.sequence').get(cr, uid, seq_obj_name)
724             default.setdefault('origin', False)
725             default.setdefault('backorder_id', False)
726         if 'invoice_state' not in default and picking_obj.invoice_state == 'invoiced':
727             default['invoice_state'] = '2binvoiced'
728         res = super(stock_picking, self).copy(cr, uid, id, default, context)
729         return res
730
731     def fields_view_get(self, cr, uid, view_id=None, view_type=False, context=None, toolbar=False, submenu=False):
732         if view_type == 'form' and not view_id:
733             mod_obj = self.pool.get('ir.model.data')
734             if self._name == "stock.picking.in":
735                 model, view_id = mod_obj.get_object_reference(cr, uid, 'stock', 'view_picking_in_form')
736             if self._name == "stock.picking.out":
737                 model, view_id = mod_obj.get_object_reference(cr, uid, 'stock', 'view_picking_out_form')
738         return super(stock_picking, self).fields_view_get(cr, uid, view_id=view_id, view_type=view_type, context=context, toolbar=toolbar, submenu=submenu)
739
740     def onchange_partner_in(self, cr, uid, ids, partner_id=None, context=None):
741         return {}
742
743     def action_explode(self, cr, uid, moves, context=None):
744         """Hook to allow other modules to split the moves of a picking."""
745         return moves
746
747     def action_confirm(self, cr, uid, ids, context=None):
748         """ Confirms picking.
749         @return: True
750         """
751         pickings = self.browse(cr, uid, ids, context=context)
752         self.write(cr, uid, ids, {'state': 'confirmed'})
753         todo = []
754         for picking in pickings:
755             for r in picking.move_lines:
756                 if r.state == 'draft':
757                     todo.append(r.id)
758         todo = self.action_explode(cr, uid, todo, context)
759         if len(todo):
760             self.pool.get('stock.move').action_confirm(cr, uid, todo, context=context)
761         return True
762
763     def test_auto_picking(self, cr, uid, ids):
764         # TODO: Check locations to see if in the same location ?
765         return True
766
767     def action_assign(self, cr, uid, ids, *args):
768         """ Changes state of picking to available if all moves are confirmed.
769         @return: True
770         """
771         for pick in self.browse(cr, uid, ids):
772             if pick.state == 'draft':
773                 self.signal_button_confirm(cr, uid, [pick.id])
774             move_ids = [x.id for x in pick.move_lines if x.state == 'confirmed']
775             if not move_ids:
776                 raise osv.except_osv(_('Warning!'),_('Not enough stock, unable to reserve the products.'))
777             self.pool.get('stock.move').action_assign(cr, uid, move_ids)
778         return True
779
780     def force_assign(self, cr, uid, ids, *args):
781         """ Changes state of picking to available if moves are confirmed or waiting.
782         @return: True
783         """
784         for pick in self.browse(cr, uid, ids):
785             move_ids = [x.id for x in pick.move_lines if x.state in ['confirmed','waiting']]
786             self.pool.get('stock.move').force_assign(cr, uid, move_ids)
787             workflow.trg_write(uid, 'stock.picking', pick.id, cr)
788         return True
789
790     def draft_force_assign(self, cr, uid, ids, *args):
791         """ Confirms picking directly from draft state.
792         @return: True
793         """
794         for pick in self.browse(cr, uid, ids):
795             if not pick.move_lines:
796                 raise osv.except_osv(_('Error!'),_('You cannot process picking without stock moves.'))
797             self.signal_button_confirm(cr, uid, [pick.id])
798         return True
799
800     def draft_validate(self, cr, uid, ids, context=None):
801         """ Validates picking directly from draft state.
802         @return: True
803         """
804         self.draft_force_assign(cr, uid, ids)
805         for pick in self.browse(cr, uid, ids, context=context):
806             move_ids = [x.id for x in pick.move_lines]
807             self.pool.get('stock.move').force_assign(cr, uid, move_ids)
808             workflow.trg_write(uid, 'stock.picking', pick.id, cr)
809         return self.action_process(
810             cr, uid, ids, context=context)
811     def cancel_assign(self, cr, uid, ids, *args):
812         """ Cancels picking and moves.
813         @return: True
814         """
815         for pick in self.browse(cr, uid, ids):
816             move_ids = [x.id for x in pick.move_lines]
817             self.pool.get('stock.move').cancel_assign(cr, uid, move_ids)
818             workflow.trg_write(uid, 'stock.picking', pick.id, cr)
819         return True
820
821     def action_assign_wkf(self, cr, uid, ids, context=None):
822         """ Changes picking state to assigned.
823         @return: True
824         """
825         self.write(cr, uid, ids, {'state': 'assigned'})
826         return True
827
828     def test_finished(self, cr, uid, ids):
829         """ Tests whether the move is in done or cancel state or not.
830         @return: True or False
831         """
832         move_ids = self.pool.get('stock.move').search(cr, uid, [('picking_id', 'in', ids)])
833         for move in self.pool.get('stock.move').browse(cr, uid, move_ids):
834             if move.state not in ('done', 'cancel'):
835
836                 if move.product_qty != 0.0:
837                     return False
838                 else:
839                     move.write({'state': 'done'})
840         return True
841
842     def test_assigned(self, cr, uid, ids):
843         """ Tests whether the move is in assigned state or not.
844         @return: True or False
845         """
846         #TOFIX: assignment of move lines should be call before testing assigment otherwise picking never gone in assign state
847         ok = True
848         for pick in self.browse(cr, uid, ids):
849             mt = pick.move_type
850             # incomming shipments are always set as available if they aren't chained
851             if pick.type == 'in':
852                 if all([x.state != 'waiting' for x in pick.move_lines]):
853                     return True
854             for move in pick.move_lines:
855                 if (move.state in ('confirmed', 'draft')) and (mt == 'one'):
856                     return False
857                 if (mt == 'direct') and (move.state == 'assigned') and (move.product_qty):
858                     return True
859                 ok = ok and (move.state in ('cancel', 'done', 'assigned'))
860         return ok
861
862     def action_cancel(self, cr, uid, ids, context=None):
863         """ Changes picking state to cancel.
864         @return: True
865         """
866         for pick in self.browse(cr, uid, ids, context=context):
867             ids2 = [move.id for move in pick.move_lines]
868             self.pool.get('stock.move').action_cancel(cr, uid, ids2, context)
869         self.write(cr, uid, ids, {'state': 'cancel', 'invoice_state': 'none'})
870         return True
871
872     #
873     # TODO: change and create a move if not parents
874     #
875     def action_done(self, cr, uid, ids, context=None):
876         """Changes picking state to done.
877         
878         This method is called at the end of the workflow by the activity "done".
879         @return: True
880         """
881         self.write(cr, uid, ids, {'state': 'done', 'date_done': time.strftime('%Y-%m-%d %H:%M:%S')})
882         return True
883
884     def action_move(self, cr, uid, ids, context=None):
885         """Process the Stock Moves of the Picking
886         
887         This method is called by the workflow by the activity "move".
888         Normally that happens when the signal button_done is received (button 
889         "Done" pressed on a Picking view). 
890         @return: True
891         """
892         for pick in self.browse(cr, uid, ids, context=context):
893             todo = []
894             for move in pick.move_lines:
895                 if move.state == 'draft':
896                     self.pool.get('stock.move').action_confirm(cr, uid, [move.id],
897                         context=context)
898                     todo.append(move.id)
899                 elif move.state in ('assigned','confirmed'):
900                     todo.append(move.id)
901             if len(todo):
902                 self.pool.get('stock.move').action_done(cr, uid, todo,
903                         context=context)
904         return True
905
906     def get_currency_id(self, cr, uid, picking):
907         return False
908
909     def _get_partner_to_invoice(self, cr, uid, picking, context=None):
910         """ Gets the partner that will be invoiced
911             Note that this function is inherited in the sale and purchase modules
912             @param picking: object of the picking for which we are selecting the partner to invoice
913             @return: object of the partner to invoice
914         """
915         return picking.partner_id and picking.partner_id.id
916
917     def _get_comment_invoice(self, cr, uid, picking):
918         """
919         @return: comment string for invoice
920         """
921         return picking.note or ''
922
923     def _get_price_unit_invoice(self, cr, uid, move_line, type, context=None):
924         """ Gets price unit for invoice
925         @param move_line: Stock move lines
926         @param type: Type of invoice
927         @return: The price unit for the move line
928         """
929         if context is None:
930             context = {}
931
932         if type in ('in_invoice', 'in_refund'):
933             # Take the user company and pricetype
934             context['currency_id'] = move_line.company_id.currency_id.id
935             amount_unit = move_line.product_id.price_get('standard_price', context=context)[move_line.product_id.id]
936             return amount_unit
937         else:
938             return move_line.product_id.list_price
939
940     def _get_discount_invoice(self, cr, uid, move_line):
941         '''Return the discount for the move line'''
942         return 0.0
943
944     def _get_taxes_invoice(self, cr, uid, move_line, type):
945         """ Gets taxes on invoice
946         @param move_line: Stock move lines
947         @param type: Type of invoice
948         @return: Taxes Ids for the move line
949         """
950         if type in ('in_invoice', 'in_refund'):
951             taxes = move_line.product_id.supplier_taxes_id
952         else:
953             taxes = move_line.product_id.taxes_id
954
955         if move_line.picking_id and move_line.picking_id.partner_id and move_line.picking_id.partner_id.id:
956             return self.pool.get('account.fiscal.position').map_tax(
957                 cr,
958                 uid,
959                 move_line.picking_id.partner_id.property_account_position,
960                 taxes
961             )
962         else:
963             return map(lambda x: x.id, taxes)
964
965     def _get_account_analytic_invoice(self, cr, uid, picking, move_line):
966         return False
967
968     def _invoice_line_hook(self, cr, uid, move_line, invoice_line_id):
969         '''Call after the creation of the invoice line'''
970         return
971
972     def _invoice_hook(self, cr, uid, picking, invoice_id):
973         '''Call after the creation of the invoice'''
974         return
975
976     def _get_invoice_type(self, pick):
977         src_usage = dest_usage = None
978         inv_type = None
979         if pick.invoice_state == '2binvoiced':
980             if pick.move_lines:
981                 src_usage = pick.move_lines[0].location_id.usage
982                 dest_usage = pick.move_lines[0].location_dest_id.usage
983             if pick.type == 'out' and dest_usage == 'supplier':
984                 inv_type = 'in_refund'
985             elif pick.type == 'out' and dest_usage == 'customer':
986                 inv_type = 'out_invoice'
987             elif pick.type == 'in' and src_usage == 'supplier':
988                 inv_type = 'in_invoice'
989             elif pick.type == 'in' and src_usage == 'customer':
990                 inv_type = 'out_refund'
991             else:
992                 inv_type = 'out_invoice'
993         return inv_type
994
995     def _prepare_invoice_group(self, cr, uid, picking, partner, invoice, context=None):
996         """ Builds the dict for grouped invoices
997             @param picking: picking object
998             @param partner: object of the partner to invoice (not used here, but may be usefull if this function is inherited)
999             @param invoice: object of the invoice that we are updating
1000             @return: dict that will be used to update the invoice
1001         """
1002         comment = self._get_comment_invoice(cr, uid, picking)
1003         return {
1004             'name': (invoice.name or '') + ', ' + (picking.name or ''),
1005             'origin': (invoice.origin or '') + ', ' + (picking.name or '') + (picking.origin and (':' + picking.origin) or ''),
1006             'comment': (comment and (invoice.comment and invoice.comment + "\n" + comment or comment)) or (invoice.comment and invoice.comment or ''),
1007             'date_invoice': context.get('date_inv', False),
1008         }
1009
1010     def _prepare_invoice(self, cr, uid, picking, partner, inv_type, journal_id, context=None):
1011         """ Builds the dict containing the values for the invoice
1012             @param picking: picking object
1013             @param partner: object of the partner to invoice
1014             @param inv_type: type of the invoice ('out_invoice', 'in_invoice', ...)
1015             @param journal_id: ID of the accounting journal
1016             @return: dict that will be used to create the invoice object
1017         """
1018         if isinstance(partner, int):
1019             partner = self.pool.get('res.partner').browse(cr, uid, partner, context=context)
1020         if inv_type in ('out_invoice', 'out_refund'):
1021             account_id = partner.property_account_receivable.id
1022             payment_term = partner.property_payment_term.id or False
1023         else:
1024             account_id = partner.property_account_payable.id
1025             payment_term = partner.property_supplier_payment_term.id or False
1026         comment = self._get_comment_invoice(cr, uid, picking)
1027         invoice_vals = {
1028             'name': picking.name,
1029             'origin': (picking.name or '') + (picking.origin and (':' + picking.origin) or ''),
1030             'type': inv_type,
1031             'account_id': account_id,
1032             'partner_id': partner.id,
1033             'comment': comment,
1034             'payment_term': payment_term,
1035             'fiscal_position': partner.property_account_position.id,
1036             'date_invoice': context.get('date_inv', False),
1037             'company_id': picking.company_id.id,
1038             'user_id': uid,
1039         }
1040         cur_id = self.get_currency_id(cr, uid, picking)
1041         if cur_id:
1042             invoice_vals['currency_id'] = cur_id
1043         if journal_id:
1044             invoice_vals['journal_id'] = journal_id
1045         return invoice_vals
1046
1047     def _prepare_invoice_line(self, cr, uid, group, picking, move_line, invoice_id,
1048         invoice_vals, context=None):
1049         """ Builds the dict containing the values for the invoice line
1050             @param group: True or False
1051             @param picking: picking object
1052             @param: move_line: move_line object
1053             @param: invoice_id: ID of the related invoice
1054             @param: invoice_vals: dict used to created the invoice
1055             @return: dict that will be used to create the invoice line
1056         """
1057         if group:
1058             name = (picking.name or '') + '-' + move_line.name
1059         else:
1060             name = move_line.name
1061         origin = move_line.picking_id.name or ''
1062         if move_line.picking_id.origin:
1063             origin += ':' + move_line.picking_id.origin
1064
1065         if invoice_vals['type'] in ('out_invoice', 'out_refund'):
1066             account_id = move_line.product_id.property_account_income.id
1067             if not account_id:
1068                 account_id = move_line.product_id.categ_id.\
1069                         property_account_income_categ.id
1070         else:
1071             account_id = move_line.product_id.property_account_expense.id
1072             if not account_id:
1073                 account_id = move_line.product_id.categ_id.\
1074                         property_account_expense_categ.id
1075         if invoice_vals['fiscal_position']:
1076             fp_obj = self.pool.get('account.fiscal.position')
1077             fiscal_position = fp_obj.browse(cr, uid, invoice_vals['fiscal_position'], context=context)
1078             account_id = fp_obj.map_account(cr, uid, fiscal_position, account_id)
1079         # set UoS if it's a sale and the picking doesn't have one
1080         uos_id = move_line.product_uos and move_line.product_uos.id or False
1081         if not uos_id and invoice_vals['type'] in ('out_invoice', 'out_refund'):
1082             uos_id = move_line.product_uom.id
1083
1084         return {
1085             'name': name,
1086             'origin': origin,
1087             'invoice_id': invoice_id,
1088             'uos_id': uos_id,
1089             'product_id': move_line.product_id.id,
1090             'account_id': account_id,
1091             'price_unit': self._get_price_unit_invoice(cr, uid, move_line, invoice_vals['type']),
1092             'discount': self._get_discount_invoice(cr, uid, move_line),
1093             'quantity': move_line.product_uos_qty or move_line.product_qty,
1094             'invoice_line_tax_id': [(6, 0, self._get_taxes_invoice(cr, uid, move_line, invoice_vals['type']))],
1095             'account_analytic_id': self._get_account_analytic_invoice(cr, uid, picking, move_line),
1096         }
1097
1098     def action_invoice_create(self, cr, uid, ids, journal_id=False,
1099             group=False, type='out_invoice', context=None):
1100         """ Creates invoice based on the invoice state selected for picking.
1101         @param journal_id: Id of journal
1102         @param group: Whether to create a group invoice or not
1103         @param type: Type invoice to be created
1104         @return: Ids of created invoices for the pickings
1105         """
1106         if context is None:
1107             context = {}
1108
1109         invoice_obj = self.pool.get('account.invoice')
1110         invoice_line_obj = self.pool.get('account.invoice.line')
1111         partner_obj = self.pool.get('res.partner')
1112         invoices_group = {}
1113         res = {}
1114         inv_type = type
1115         for picking in self.browse(cr, uid, ids, context=context):
1116             if picking.invoice_state != '2binvoiced':
1117                 continue
1118             partner = self._get_partner_to_invoice(cr, uid, picking, context=context)
1119             if isinstance(partner, int):
1120                 partner = partner_obj.browse(cr, uid, [partner], context=context)[0]
1121             if not partner:
1122                 raise osv.except_osv(_('Error, no partner!'),
1123                     _('Please put a partner on the picking list if you want to generate invoice.'))
1124
1125             if not inv_type:
1126                 inv_type = self._get_invoice_type(picking)
1127
1128             invoice_vals = self._prepare_invoice(cr, uid, picking, partner, inv_type, journal_id, context=context)
1129             if group and partner.id in invoices_group:
1130                 invoice_id = invoices_group[partner.id]
1131                 invoice = invoice_obj.browse(cr, uid, invoice_id)
1132                 invoice_vals_group = self._prepare_invoice_group(cr, uid, picking, partner, invoice, context=context)
1133                 invoice_obj.write(cr, uid, [invoice_id], invoice_vals_group, context=context)
1134             else:
1135                 invoice_id = invoice_obj.create(cr, uid, invoice_vals, context=context)
1136                 invoices_group[partner.id] = invoice_id
1137             res[picking.id] = invoice_id
1138             for move_line in picking.move_lines:
1139                 if move_line.state == 'cancel':
1140                     continue
1141                 if move_line.scrapped:
1142                     # do no invoice scrapped products
1143                     continue
1144                 vals = self._prepare_invoice_line(cr, uid, group, picking, move_line,
1145                                 invoice_id, invoice_vals, context=context)
1146                 if vals:
1147                     invoice_line_id = invoice_line_obj.create(cr, uid, vals, context=context)
1148                     self._invoice_line_hook(cr, uid, move_line, invoice_line_id)
1149
1150             invoice_obj.button_compute(cr, uid, [invoice_id], context=context,
1151                     set_total=(inv_type in ('in_invoice', 'in_refund')))
1152             self.write(cr, uid, [picking.id], {
1153                 'invoice_state': 'invoiced',
1154                 }, context=context)
1155             self._invoice_hook(cr, uid, picking, invoice_id)
1156         self.write(cr, uid, res.keys(), {
1157             'invoice_state': 'invoiced',
1158             }, context=context)
1159         return res
1160
1161     def test_done(self, cr, uid, ids, context=None):
1162         """ Test whether the move lines are done or not.
1163         @return: True or False
1164         """
1165         ok = False
1166         for pick in self.browse(cr, uid, ids, context=context):
1167             if not pick.move_lines:
1168                 return True
1169             for move in pick.move_lines:
1170                 if move.state not in ('cancel','done'):
1171                     return False
1172                 if move.state=='done':
1173                     ok = True
1174         return ok
1175
1176     def test_cancel(self, cr, uid, ids, context=None):
1177         """ Test whether the move lines are canceled or not.
1178         @return: True or False
1179         """
1180         for pick in self.browse(cr, uid, ids, context=context):
1181             for move in pick.move_lines:
1182                 if move.state not in ('cancel',):
1183                     return False
1184         return True
1185
1186     def allow_cancel(self, cr, uid, ids, context=None):
1187         for pick in self.browse(cr, uid, ids, context=context):
1188             if not pick.move_lines:
1189                 return True
1190             for move in pick.move_lines:
1191                 if move.state == 'done':
1192                     raise osv.except_osv(_('Error!'), _('You cannot cancel the picking as some moves have been done. You should cancel the picking lines.'))
1193         return True
1194
1195     def unlink(self, cr, uid, ids, context=None):
1196         move_obj = self.pool.get('stock.move')
1197         if context is None:
1198             context = {}
1199         for pick in self.browse(cr, uid, ids, context=context):
1200             if pick.state in ['done','cancel']:
1201                 # retrieve the string value of field in user's language
1202                 state = dict(self.fields_get(cr, uid, context=context)['state']['selection']).get(pick.state, pick.state)
1203                 raise osv.except_osv(_('Error!'), _('You cannot remove the picking which is in %s state!')%(state,))
1204             else:
1205                 ids2 = [move.id for move in pick.move_lines]
1206                 ctx = context.copy()
1207                 ctx.update({'call_unlink':True})
1208                 if pick.state != 'draft':
1209                     #Cancelling the move in order to affect Virtual stock of product
1210                     move_obj.action_cancel(cr, uid, ids2, ctx)
1211                 #Removing the move
1212                 move_obj.unlink(cr, uid, ids2, ctx)
1213
1214         return super(stock_picking, self).unlink(cr, uid, ids, context=context)
1215
1216     # FIXME: needs refactoring, this code is partially duplicated in stock_move.do_partial()!
1217     def do_partial(self, cr, uid, ids, partial_datas, context=None):
1218         """ Makes partial picking and moves done.
1219         @param partial_datas : Dictionary containing details of partial picking
1220                           like partner_id, partner_id, delivery_date,
1221                           delivery moves with product_id, product_qty, uom
1222         @return: Dictionary of values
1223         """
1224         if context is None:
1225             context = {}
1226         else:
1227             context = dict(context)
1228         res = {}
1229         move_obj = self.pool.get('stock.move')
1230         product_obj = self.pool.get('product.product')
1231         currency_obj = self.pool.get('res.currency')
1232         uom_obj = self.pool.get('product.uom')
1233         sequence_obj = self.pool.get('ir.sequence')
1234         for pick in self.browse(cr, uid, ids, context=context):
1235             new_picking = None
1236             complete, too_many, too_few = [], [], []
1237             move_product_qty, prodlot_ids, product_avail, partial_qty, uos_qty, product_uoms = {}, {}, {}, {}, {}, {}
1238             for move in pick.move_lines:
1239                 if move.state in ('done', 'cancel'):
1240                     continue
1241                 partial_data = partial_datas.get('move%s'%(move.id), {})
1242                 product_qty = partial_data.get('product_qty',0.0)
1243                 move_product_qty[move.id] = product_qty
1244                 product_uom = partial_data.get('product_uom', move.product_uom.id)
1245                 product_price = partial_data.get('product_price',0.0)
1246                 product_currency = partial_data.get('product_currency',False)
1247                 prodlot_id = partial_data.get('prodlot_id')
1248                 prodlot_ids[move.id] = prodlot_id
1249                 product_uoms[move.id] = product_uom
1250                 partial_qty[move.id] = uom_obj._compute_qty(cr, uid, product_uoms[move.id], product_qty, move.product_uom.id)
1251                 uos_qty[move.id] = move.product_id._compute_uos_qty(product_uom, product_qty, move.product_uos) if product_qty else 0.0
1252                 if move.product_qty == partial_qty[move.id]:
1253                     complete.append(move)
1254                 elif move.product_qty > partial_qty[move.id]:
1255                     too_few.append(move)
1256                 else:
1257                     too_many.append(move)
1258
1259                 # Average price computation
1260                 if (pick.type == 'in') and (move.product_id.cost_method == 'average'):
1261                     product = product_obj.browse(cr, uid, move.product_id.id)
1262                     move_currency_id = move.company_id.currency_id.id
1263                     context['currency_id'] = move_currency_id
1264                     qty = uom_obj._compute_qty(cr, uid, product_uom, product_qty, product.uom_id.id)
1265
1266                     if product.id not in product_avail:
1267                         # keep track of stock on hand including processed lines not yet marked as done
1268                         product_avail[product.id] = product.qty_available
1269
1270                     if qty > 0:
1271                         new_price = currency_obj.compute(cr, uid, product_currency,
1272                                 move_currency_id, product_price, round=False)
1273                         new_price = uom_obj._compute_price(cr, uid, product_uom, new_price,
1274                                 product.uom_id.id)
1275                         if product_avail[product.id] <= 0:
1276                             product_avail[product.id] = 0
1277                             new_std_price = new_price
1278                         else:
1279                             # Get the standard price
1280                             amount_unit = product.price_get('standard_price', context=context)[product.id]
1281                             new_std_price = ((amount_unit * product_avail[product.id])\
1282                                 + (new_price * qty))/(product_avail[product.id] + qty)
1283                         # Write the field according to price type field
1284                         product_obj.write(cr, uid, [product.id], {'standard_price': new_std_price})
1285
1286                         # Record the values that were chosen in the wizard, so they can be
1287                         # used for inventory valuation if real-time valuation is enabled.
1288                         move_obj.write(cr, uid, [move.id],
1289                                 {'price_unit': product_price,
1290                                  'price_currency_id': product_currency})
1291
1292                         product_avail[product.id] += qty
1293
1294             # every line of the picking is empty, do not generate anything
1295             empty_picking = not any(q for q in move_product_qty.values() if q > 0)
1296
1297             for move in too_few:
1298                 product_qty = move_product_qty[move.id]
1299                 if not new_picking and not empty_picking:
1300                     new_picking_name = pick.name
1301                     self.write(cr, uid, [pick.id], 
1302                                {'name': sequence_obj.get(cr, uid,
1303                                             'stock.picking.%s'%(pick.type)),
1304                                })
1305                     pick.refresh()
1306                     new_picking = self.copy(cr, uid, pick.id,
1307                             {
1308                                 'name': new_picking_name,
1309                                 'move_lines' : [],
1310                                 'state':'draft',
1311                             })
1312                 if product_qty != 0:
1313                     defaults = {
1314                             'product_qty' : product_qty,
1315                             'product_uos_qty': uos_qty[move.id],
1316                             'picking_id' : new_picking,
1317                             'state': 'assigned',
1318                             'move_dest_id': False,
1319                             'price_unit': move.price_unit,
1320                             'product_uom': product_uoms[move.id]
1321                     }
1322                     prodlot_id = prodlot_ids[move.id]
1323                     if prodlot_id:
1324                         defaults.update(prodlot_id=prodlot_id)
1325                     move_obj.copy(cr, uid, move.id, defaults)
1326                 move_obj.write(cr, uid, [move.id],
1327                         {
1328                             'product_qty': move.product_qty - partial_qty[move.id],
1329                             'product_uos_qty': move.product_uos_qty - uos_qty[move.id],
1330                             'prodlot_id': False,
1331                             'tracking_id': False,
1332                         })
1333
1334             if new_picking:
1335                 move_obj.write(cr, uid, [c.id for c in complete], {'picking_id': new_picking})
1336             for move in complete:
1337                 defaults = {'product_uom': product_uoms[move.id], 'product_qty': move_product_qty[move.id]}
1338                 if prodlot_ids.get(move.id):
1339                     defaults.update({'prodlot_id': prodlot_ids[move.id]})
1340                 move_obj.write(cr, uid, [move.id], defaults)
1341             for move in too_many:
1342                 product_qty = move_product_qty[move.id]
1343                 defaults = {
1344                     'product_qty' : product_qty,
1345                     'product_uos_qty': uos_qty[move.id],
1346                     'product_uom': product_uoms[move.id]
1347                 }
1348                 prodlot_id = prodlot_ids.get(move.id)
1349                 if prodlot_ids.get(move.id):
1350                     defaults.update(prodlot_id=prodlot_id)
1351                 if new_picking:
1352                     defaults.update(picking_id=new_picking)
1353                 move_obj.write(cr, uid, [move.id], defaults)
1354
1355             # At first we confirm the new picking (if necessary)
1356             if new_picking:
1357                 self.signal_button_confirm(cr, uid, [new_picking])
1358                 # Then we finish the good picking
1359                 self.write(cr, uid, [pick.id], {'backorder_id': new_picking})
1360                 self.action_move(cr, uid, [new_picking], context=context)
1361                 self.signal_button_done(cr, uid, [new_picking])
1362                 workflow.trg_write(uid, 'stock.picking', pick.id, cr)
1363                 delivered_pack_id = new_picking
1364                 self.message_post(cr, uid, new_picking, body=_("Back order <em>%s</em> has been <b>created</b>.") % (pick.name), context=context)
1365             elif empty_picking:
1366                 delivered_pack_id = pick.id
1367             else:
1368                 self.action_move(cr, uid, [pick.id], context=context)
1369                 self.signal_button_done(cr, uid, [pick.id])
1370                 delivered_pack_id = pick.id
1371
1372             delivered_pack = self.browse(cr, uid, delivered_pack_id, context=context)
1373             res[pick.id] = {'delivered_picking': delivered_pack.id or False}
1374
1375         return res
1376     
1377     # views associated to each picking type
1378     _VIEW_LIST = {
1379         'out': 'view_picking_out_form',
1380         'in': 'view_picking_in_form',
1381         'internal': 'view_picking_form',
1382     }
1383     def _get_view_id(self, cr, uid, type):
1384         """Get the view id suiting the given type
1385         
1386         @param type: the picking type as a string
1387         @return: view i, or False if no view found
1388         """
1389         res = self.pool.get('ir.model.data').get_object_reference(cr, uid, 
1390             'stock', self._VIEW_LIST.get(type, 'view_picking_form'))            
1391         return res and res[1] or False
1392
1393
1394 class stock_production_lot(osv.osv):
1395
1396     def name_get(self, cr, uid, ids, context=None):
1397         if not ids:
1398             return []
1399         reads = self.read(cr, uid, ids, ['name', 'prefix', 'ref'], context)
1400         res = []
1401         for record in reads:
1402             name = record['name']
1403             prefix = record['prefix']
1404             if prefix:
1405                 name = prefix + '/' + name
1406             if record['ref']:
1407                 name = '%s [%s]' % (name, record['ref'])
1408             res.append((record['id'], name))
1409         return res
1410
1411     def name_search(self, cr, uid, name, args=None, operator='ilike', context=None, limit=100):
1412         args = args or []
1413         ids = []
1414         if name:
1415             ids = self.search(cr, uid, [('prefix', '=', name)] + args, limit=limit, context=context)
1416             if not ids:
1417                 ids = self.search(cr, uid, [('name', operator, name)] + args, limit=limit, context=context)
1418         else:
1419             ids = self.search(cr, uid, args, limit=limit, context=context)
1420         return self.name_get(cr, uid, ids, context)
1421
1422     _name = 'stock.production.lot'
1423     _description = 'Serial Number'
1424
1425     def _get_stock(self, cr, uid, ids, field_name, arg, context=None):
1426         """ Gets stock of products for locations
1427         @return: Dictionary of values
1428         """
1429         if context is None:
1430             context = {}
1431         if 'location_id' not in context:
1432             locations = self.pool.get('stock.location').search(cr, uid, [('usage', '=', 'internal')], context=context)
1433         else:
1434             locations = context['location_id'] and [context['location_id']] or []
1435
1436         if isinstance(ids, (int, long)):
1437             ids = [ids]
1438
1439         res = {}.fromkeys(ids, 0.0)
1440         if locations:
1441             cr.execute('''select
1442                     prodlot_id,
1443                     sum(qty)
1444                 from
1445                     stock_report_prodlots
1446                 where
1447                     location_id IN %s and prodlot_id IN %s group by prodlot_id''',(tuple(locations),tuple(ids),))
1448             res.update(dict(cr.fetchall()))
1449
1450         return res
1451
1452     def _stock_search(self, cr, uid, obj, name, args, context=None):
1453         """ Searches Ids of products
1454         @return: Ids of locations
1455         """
1456         locations = self.pool.get('stock.location').search(cr, uid, [('usage', '=', 'internal')])
1457         cr.execute('''select
1458                 prodlot_id,
1459                 sum(qty)
1460             from
1461                 stock_report_prodlots
1462             where
1463                 location_id IN %s group by prodlot_id
1464             having  sum(qty) '''+ str(args[0][1]) + str(args[0][2]),(tuple(locations),))
1465         res = cr.fetchall()
1466         ids = [('id', 'in', map(lambda x: x[0], res))]
1467         return ids
1468
1469     _columns = {
1470         'name': fields.char('Serial Number', size=64, required=True, help="Unique Serial Number, will be displayed as: PREFIX/SERIAL [INT_REF]"),
1471         'ref': fields.char('Internal Reference', size=256, help="Internal reference number in case it differs from the manufacturer's serial number"),
1472         'prefix': fields.char('Prefix', size=64, help="Optional prefix to prepend when displaying this serial number: PREFIX/SERIAL [INT_REF]"),
1473         'product_id': fields.many2one('product.product', 'Product', required=True, domain=[('type', '<>', 'service')]),
1474         'date': fields.datetime('Creation Date', required=True),
1475         'stock_available': fields.function(_get_stock, fnct_search=_stock_search, type="float", string="Available", select=True,
1476             help="Current quantity of products with this Serial Number available in company warehouses",
1477             digits_compute=dp.get_precision('Product Unit of Measure')),
1478         'revisions': fields.one2many('stock.production.lot.revision', 'lot_id', 'Revisions'),
1479         'company_id': fields.many2one('res.company', 'Company', select=True),
1480         'move_ids': fields.one2many('stock.move', 'prodlot_id', 'Moves for this serial number', readonly=True),
1481     }
1482     _defaults = {
1483         'date': lambda *a: time.strftime('%Y-%m-%d %H:%M:%S'),
1484         'name': lambda x, y, z, c: x.pool.get('ir.sequence').get(y, z, 'stock.lot.serial'),
1485         'product_id': lambda x, y, z, c: c.get('product_id', False),
1486     }
1487     _sql_constraints = [
1488         ('name_ref_uniq', 'unique (name, ref, product_id, company_id)', 'The combination of Serial Number, internal reference, Product and Company must be unique !'),
1489     ]
1490     def action_traceability(self, cr, uid, ids, context=None):
1491         """ It traces the information of a product
1492         @param self: The object pointer.
1493         @param cr: A database cursor
1494         @param uid: ID of the user currently logged in
1495         @param ids: List of IDs selected
1496         @param context: A standard dictionary
1497         @return: A dictionary of values
1498         """
1499         value=self.pool.get('action.traceability').action_traceability(cr,uid,ids,context)
1500         return value
1501
1502     def copy(self, cr, uid, id, default=None, context=None):
1503         context = context or {}
1504         default = default and default.copy() or {}
1505         default.update(date=time.strftime('%Y-%m-%d %H:%M:%S'), move_ids=[])
1506         return super(stock_production_lot, self).copy(cr, uid, id, default=default, context=context)
1507
1508
1509 class stock_production_lot_revision(osv.osv):
1510     _name = 'stock.production.lot.revision'
1511     _description = 'Serial Number Revision'
1512
1513     _columns = {
1514         'name': fields.char('Revision Name', size=64, required=True),
1515         'description': fields.text('Description'),
1516         'date': fields.date('Revision Date'),
1517         'indice': fields.char('Revision Number', size=16),
1518         'author_id': fields.many2one('res.users', 'Author'),
1519         'lot_id': fields.many2one('stock.production.lot', 'Serial Number', select=True, ondelete='cascade'),
1520         'company_id': fields.related('lot_id','company_id',type='many2one',relation='res.company',string='Company', store=True, readonly=True),
1521     }
1522
1523     _defaults = {
1524         'author_id': lambda x, y, z, c: z,
1525         'date': fields.date.context_today,
1526     }
1527
1528
1529 # ----------------------------------------------------
1530 # Move
1531 # ----------------------------------------------------
1532
1533 #
1534 # Fields:
1535 #   location_dest_id is only used for predicting futur stocks
1536 #
1537 class stock_move(osv.osv):
1538
1539     def _getSSCC(self, cr, uid, context=None):
1540         cr.execute('select id from stock_tracking where create_uid=%s order by id desc limit 1', (uid,))
1541         res = cr.fetchone()
1542         return (res and res[0]) or False
1543
1544     _name = "stock.move"
1545     _description = "Stock Move"
1546     _order = 'date_expected desc, id'
1547     _log_create = False
1548
1549     def action_partial_move(self, cr, uid, ids, context=None):
1550         if context is None: context = {}
1551         if context.get('active_model') != self._name:
1552             context.update(active_ids=ids, active_model=self._name)
1553         partial_id = self.pool.get("stock.partial.move").create(
1554             cr, uid, {}, context=context)
1555         return {
1556             'name':_("Products to Process"),
1557             'view_mode': 'form',
1558             'view_id': False,
1559             'view_type': 'form',
1560             'res_model': 'stock.partial.move',
1561             'res_id': partial_id,
1562             'type': 'ir.actions.act_window',
1563             'nodestroy': True,
1564             'target': 'new',
1565             'domain': '[]',
1566             'context': context
1567         }
1568
1569
1570     def name_get(self, cr, uid, ids, context=None):
1571         res = []
1572         for line in self.browse(cr, uid, ids, context=context):
1573             name = line.location_id.name+' > '+line.location_dest_id.name
1574             # optional prefixes
1575             if line.product_id.code:
1576                 name = line.product_id.code + ': ' + name
1577             if line.picking_id.origin:
1578                 name = line.picking_id.origin + '/ ' + name
1579             res.append((line.id, name))
1580         return res
1581
1582     def _check_tracking(self, cr, uid, ids, context=None):
1583         """ Checks if serial number is assigned to stock move or not.
1584         @return: True or False
1585         """
1586         for move in self.browse(cr, uid, ids, context=context):
1587             if not move.prodlot_id and \
1588                (move.state == 'done' and \
1589                ( \
1590                    (move.product_id.track_production and move.location_id.usage == 'production') or \
1591                    (move.product_id.track_production and move.location_dest_id.usage == 'production') or \
1592                    (move.product_id.track_incoming and move.location_id.usage == 'supplier') or \
1593                    (move.product_id.track_outgoing and move.location_dest_id.usage == 'customer') or \
1594                    (move.product_id.track_incoming and move.location_id.usage == 'inventory') \
1595                )):
1596                 return False
1597         return True
1598
1599     def _check_product_lot(self, cr, uid, ids, context=None):
1600         """ Checks whether move is done or not and production lot is assigned to that move.
1601         @return: True or False
1602         """
1603         for move in self.browse(cr, uid, ids, context=context):
1604             if move.prodlot_id and move.state == 'done' and (move.prodlot_id.product_id.id != move.product_id.id):
1605                 return False
1606         return True
1607
1608     _columns = {
1609         'name': fields.char('Description', required=True, select=True),
1610         'priority': fields.selection([('0', 'Not urgent'), ('1', 'Urgent')], 'Priority'),
1611         'create_date': fields.datetime('Creation Date', readonly=True, select=True),
1612         '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)]}),
1613         'date_expected': fields.datetime('Scheduled Date', states={'done': [('readonly', True)]},required=True, select=True, help="Scheduled date for the processing of this move"),
1614         'product_id': fields.many2one('product.product', 'Product', required=True, select=True, domain=[('type','<>','service')],states={'done': [('readonly', True)]}),
1615
1616         'product_qty': fields.float('Quantity', digits_compute=dp.get_precision('Product Unit of Measure'),
1617             required=True,states={'done': [('readonly', True)]},
1618             help="This is the quantity of products from an inventory "
1619                 "point of view. For moves in the state 'done', this is the "
1620                 "quantity of products that were actually moved. For other "
1621                 "moves, this is the quantity of product that is planned to "
1622                 "be moved. Lowering this quantity does not generate a "
1623                 "backorder. Changing this quantity on assigned moves affects "
1624                 "the product reservation, and should be done with care."
1625         ),
1626         'product_uom': fields.many2one('product.uom', 'Unit of Measure', required=True,states={'done': [('readonly', True)]}),
1627         'product_uos_qty': fields.float('Quantity (UOS)', digits_compute=dp.get_precision('Product Unit of Measure'), states={'done': [('readonly', True)]}),
1628         'product_uos': fields.many2one('product.uom', 'Product UOS', states={'done': [('readonly', True)]}),
1629         'product_packaging': fields.many2one('product.packaging', 'Packaging', help="It specifies attributes of packaging like type, quantity of packaging,etc."),
1630
1631         '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."),
1632         '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."),
1633         '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"),
1634
1635         'prodlot_id': fields.many2one('stock.production.lot', 'Serial Number', help="Serial number is used to put a serial number on the production", select=True, ondelete='restrict'),
1636         'tracking_id': fields.many2one('stock.tracking', 'Pack', select=True, states={'done': [('readonly', True)]}, help="Logistical shipping unit: pallet, box, pack ..."),
1637
1638         'auto_validate': fields.boolean('Auto Validate'),
1639
1640         'move_dest_id': fields.many2one('stock.move', 'Destination Move', help="Optional: next stock move when chaining them", select=True),
1641         'move_history_ids': fields.many2many('stock.move', 'stock_move_history_ids', 'parent_id', 'child_id', 'Move History (child moves)'),
1642         'move_history_ids2': fields.many2many('stock.move', 'stock_move_history_ids', 'child_id', 'parent_id', 'Move History (parent moves)'),
1643         'picking_id': fields.many2one('stock.picking', 'Reference', select=True,states={'done': [('readonly', True)]}),
1644         'note': fields.text('Notes'),
1645         'state': fields.selection([('draft', 'New'),
1646                                    ('cancel', 'Cancelled'),
1647                                    ('waiting', 'Waiting Another Move'),
1648                                    ('confirmed', 'Waiting Availability'),
1649                                    ('assigned', 'Available'),
1650                                    ('done', 'Done'),
1651                                    ], 'Status', readonly=True, select=True,
1652                  help= "* New: When the stock move is created and not yet confirmed.\n"\
1653                        "* Waiting Another Move: This state can be seen when a move is waiting for another one, for example in a chained flow.\n"\
1654                        "* 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"\
1655                        "* Available: When products are reserved, it is set to \'Available\'.\n"\
1656                        "* Done: When the shipment is processed, the state is \'Done\'."),
1657         'price_unit': fields.float('Unit Price', digits_compute= dp.get_precision('Product Price'), help="Technical field used to record the product cost set by the user during a picking confirmation (when average price costing method is used)"),
1658         'price_currency_id': fields.many2one('res.currency', 'Currency for average price', help="Technical field used to record the currency chosen by the user during a picking confirmation (when average price costing method is used)"),
1659         'company_id': fields.many2one('res.company', 'Company', required=True, select=True),
1660         'backorder_id': fields.related('picking_id','backorder_id',type='many2one', relation="stock.picking", string="Back Order of", select=True),
1661         'origin': fields.related('picking_id','origin',type='char', size=64, relation="stock.picking", string="Source", store=True),
1662
1663         # used for colors in tree views:
1664         'scrapped': fields.related('location_dest_id','scrap_location',type='boolean',relation='stock.location',string='Scrapped', readonly=True),
1665         'type': fields.related('picking_id', 'type', type='selection', selection=[('out', 'Sending Goods'), ('in', 'Getting Goods'), ('internal', 'Internal')], string='Shipping Type'),
1666     }
1667
1668     def _check_location(self, cr, uid, ids, context=None):
1669         for record in self.browse(cr, uid, ids, context=context):
1670             if (record.state=='done') and (record.location_id.usage == 'view'):
1671                 raise osv.except_osv(_('Error'), _('You cannot move product %s from a location of type view %s.')% (record.product_id.name, record.location_id.name))
1672             if (record.state=='done') and (record.location_dest_id.usage == 'view' ):
1673                 raise osv.except_osv(_('Error'), _('You cannot move product %s to a location of type view %s.')% (record.product_id.name, record.location_dest_id.name))
1674         return True
1675
1676     _constraints = [
1677         (_check_tracking,
1678             'You must assign a serial number for this product.',
1679             ['prodlot_id']),
1680         (_check_location, 'You cannot move products from or to a location of the type view.',
1681             ['location_id','location_dest_id']),
1682         (_check_product_lot,
1683             'You try to assign a lot which is not from the same product.',
1684             ['prodlot_id'])]
1685
1686     def _default_location_destination(self, cr, uid, context=None):
1687         """ Gets default address of partner for destination location
1688         @return: Address id or False
1689         """
1690         mod_obj = self.pool.get('ir.model.data')
1691         picking_type = context.get('picking_type')
1692         location_id = False
1693         if context is None:
1694             context = {}
1695         if context.get('move_line', []):
1696             if context['move_line'][0]:
1697                 if isinstance(context['move_line'][0], (tuple, list)):
1698                     location_id = context['move_line'][0][2] and context['move_line'][0][2].get('location_dest_id',False)
1699                 else:
1700                     move_list = self.pool.get('stock.move').read(cr, uid, context['move_line'][0], ['location_dest_id'])
1701                     location_id = move_list and move_list['location_dest_id'][0] or False
1702         elif context.get('address_out_id', False):
1703             property_out = self.pool.get('res.partner').browse(cr, uid, context['address_out_id'], context).property_stock_customer
1704             location_id = property_out and property_out.id or False
1705         else:
1706             location_xml_id = False
1707             if picking_type in ('in', 'internal'):
1708                 location_xml_id = 'stock_location_stock'
1709             elif picking_type == 'out':
1710                 location_xml_id = 'stock_location_customers'
1711             if location_xml_id:
1712                 try:
1713                     location_model, location_id = mod_obj.get_object_reference(cr, uid, 'stock', location_xml_id)
1714                     with tools.mute_logger('openerp.osv.orm'):
1715                         self.pool.get('stock.location').check_access_rule(cr, uid, [location_id], 'read', context=context)
1716                 except (orm.except_orm, ValueError):
1717                     location_id = False
1718
1719         return location_id
1720
1721     def _default_location_source(self, cr, uid, context=None):
1722         """ Gets default address of partner for source location
1723         @return: Address id or False
1724         """
1725         mod_obj = self.pool.get('ir.model.data')
1726         picking_type = context.get('picking_type')
1727         location_id = False
1728
1729         if context is None:
1730             context = {}
1731         if context.get('move_line', []):
1732             try:
1733                 location_id = context['move_line'][0][2]['location_id']
1734             except:
1735                 pass
1736         elif context.get('address_in_id', False):
1737             part_obj_add = self.pool.get('res.partner').browse(cr, uid, context['address_in_id'], context=context)
1738             if part_obj_add:
1739                 location_id = part_obj_add.property_stock_supplier.id
1740         else:
1741             location_xml_id = False
1742             if picking_type == 'in':
1743                 location_xml_id = 'stock_location_suppliers'
1744             elif picking_type in ('out', 'internal'):
1745                 location_xml_id = 'stock_location_stock'
1746             if location_xml_id:
1747                 try:
1748                     location_model, location_id = mod_obj.get_object_reference(cr, uid, 'stock', location_xml_id)
1749                     with tools.mute_logger('openerp.osv.orm'):
1750                         self.pool.get('stock.location').check_access_rule(cr, uid, [location_id], 'read', context=context)
1751                 except (orm.except_orm, ValueError):
1752                     location_id = False
1753
1754         return location_id
1755
1756     def _default_destination_address(self, cr, uid, context=None):
1757         user = self.pool.get('res.users').browse(cr, uid, uid, context=context)
1758         return user.company_id.partner_id.id
1759
1760     def _default_move_type(self, cr, uid, context=None):
1761         """ Gets default type of move
1762         @return: type
1763         """
1764         if context is None:
1765             context = {}
1766         picking_type = context.get('picking_type')
1767         type = 'internal'
1768         if picking_type == 'in':
1769             type = 'in'
1770         elif picking_type == 'out':
1771             type = 'out'
1772         return type
1773
1774     _defaults = {
1775         'location_id': _default_location_source,
1776         'location_dest_id': _default_location_destination,
1777         'partner_id': _default_destination_address,
1778         'type': _default_move_type,
1779         'state': 'draft',
1780         'priority': '1',
1781         'product_qty': 1.0,
1782         'scrapped' :  False,
1783         'date': lambda *a: time.strftime('%Y-%m-%d %H:%M:%S'),
1784         'company_id': lambda self,cr,uid,c: self.pool.get('res.company')._company_default_get(cr, uid, 'stock.move', context=c),
1785         'date_expected': lambda *a: time.strftime('%Y-%m-%d %H:%M:%S'),
1786     }
1787
1788     def write(self, cr, uid, ids, vals, context=None):
1789         if isinstance(ids, (int, long)):
1790             ids = [ids]
1791         if uid != 1:
1792             frozen_fields = set(['product_qty', 'product_uom', 'product_uos_qty', 'product_uos', 'location_id', 'location_dest_id', 'product_id'])
1793             for move in self.browse(cr, uid, ids, context=context):
1794                 if move.state == 'done':
1795                     if frozen_fields.intersection(vals):
1796                         raise osv.except_osv(_('Operation Forbidden!'),
1797                                              _('Quantities, Units of Measure, Products and Locations cannot be modified on stock moves that have already been processed (except by the Administrator).'))
1798         return  super(stock_move, self).write(cr, uid, ids, vals, context=context)
1799
1800     def copy_data(self, cr, uid, id, default=None, context=None):
1801         if default is None:
1802             default = {}
1803         default = default.copy()
1804         default.setdefault('tracking_id', False)
1805         default.setdefault('prodlot_id', False)
1806         default.setdefault('move_history_ids', [])
1807         default.setdefault('move_history_ids2', [])
1808         return super(stock_move, self).copy_data(cr, uid, id, default, context=context)
1809
1810     def _auto_init(self, cursor, context=None):
1811         res = super(stock_move, self)._auto_init(cursor, context=context)
1812         cursor.execute('SELECT indexname \
1813                 FROM pg_indexes \
1814                 WHERE indexname = \'stock_move_location_id_location_dest_id_product_id_state\'')
1815         if not cursor.fetchone():
1816             cursor.execute('CREATE INDEX stock_move_location_id_location_dest_id_product_id_state \
1817                     ON stock_move (product_id, state, location_id, location_dest_id)')
1818         return res
1819
1820     def onchange_lot_id(self, cr, uid, ids, prodlot_id=False, product_qty=False,
1821                         loc_id=False, product_id=False, uom_id=False, context=None):
1822         """ On change of production lot gives a warning message.
1823         @param prodlot_id: Changed production lot id
1824         @param product_qty: Quantity of product
1825         @param loc_id: Location id
1826         @param product_id: Product id
1827         @return: Warning message
1828         """
1829         if not prodlot_id or not loc_id:
1830             return {}
1831         ctx = context and context.copy() or {}
1832         ctx['location_id'] = loc_id
1833         ctx.update({'raise-exception': True})
1834         uom_obj = self.pool.get('product.uom')
1835         product_obj = self.pool.get('product.product')
1836         product_uom = product_obj.browse(cr, uid, product_id, context=ctx).uom_id
1837         prodlot = self.pool.get('stock.production.lot').browse(cr, uid, prodlot_id, context=ctx)
1838         location = self.pool.get('stock.location').browse(cr, uid, loc_id, context=ctx)
1839         uom = uom_obj.browse(cr, uid, uom_id, context=ctx)
1840         amount_actual = uom_obj._compute_qty_obj(cr, uid, product_uom, prodlot.stock_available, uom, context=ctx)
1841         warning = {}
1842         if (location.usage == 'internal') and (product_qty > (amount_actual or 0.0)):
1843             warning = {
1844                 'title': _('Insufficient Stock for Serial Number !'),
1845                 'message': _('You are moving %.2f %s but only %.2f %s available for this serial number.') % (product_qty, uom.name, amount_actual, uom.name)
1846             }
1847         return {'warning': warning}
1848
1849     def onchange_quantity(self, cr, uid, ids, product_id, product_qty,
1850                           product_uom, product_uos):
1851         """ On change of product quantity finds UoM and UoS quantities
1852         @param product_id: Product id
1853         @param product_qty: Changed Quantity of product
1854         @param product_uom: Unit of measure of product
1855         @param product_uos: Unit of sale of product
1856         @return: Dictionary of values
1857         """
1858         result = {
1859                   'product_uos_qty': 0.00
1860           }
1861         warning = {}
1862
1863         if (not product_id) or (product_qty <=0.0):
1864             result['product_qty'] = 0.0
1865             return {'value': result}
1866
1867         product_obj = self.pool.get('product.product')
1868         uos_coeff = product_obj.read(cr, uid, product_id, ['uos_coeff'])
1869         
1870         # Warn if the quantity was decreased 
1871         if ids:
1872             for move in self.read(cr, uid, ids, ['product_qty']):
1873                 if product_qty < move['product_qty']:
1874                     warning.update({
1875                        'title': _('Information'),
1876                        'message': _("By changing this quantity here, you accept the "
1877                                 "new quantity as complete: OpenERP will not "
1878                                 "automatically generate a back order.") })
1879                 break
1880
1881         if product_uos and product_uom and (product_uom != product_uos):
1882             result['product_uos_qty'] = product_qty * uos_coeff['uos_coeff']
1883         else:
1884             result['product_uos_qty'] = product_qty
1885
1886         return {'value': result, 'warning': warning}
1887
1888     def onchange_uos_quantity(self, cr, uid, ids, product_id, product_uos_qty,
1889                           product_uos, product_uom):
1890         """ On change of product quantity finds UoM and UoS quantities
1891         @param product_id: Product id
1892         @param product_uos_qty: Changed UoS Quantity of product
1893         @param product_uom: Unit of measure of product
1894         @param product_uos: Unit of sale of product
1895         @return: Dictionary of values
1896         """
1897         result = {
1898                   'product_qty': 0.00
1899           }
1900
1901         if (not product_id) or (product_uos_qty <=0.0):
1902             result['product_uos_qty'] = 0.0
1903             return {'value': result}
1904
1905         product_obj = self.pool.get('product.product')
1906         uos_coeff = product_obj.read(cr, uid, product_id, ['uos_coeff'])
1907
1908         # No warning if the quantity was decreased to avoid double warnings:
1909         # The clients should call onchange_quantity too anyway
1910
1911         if product_uos and product_uom and (product_uom != product_uos):
1912             result['product_qty'] = product_uos_qty / uos_coeff['uos_coeff']
1913         else:
1914             result['product_qty'] = product_uos_qty
1915         return {'value': result}
1916
1917     def onchange_product_id(self, cr, uid, ids, prod_id=False, loc_id=False,
1918                             loc_dest_id=False, partner_id=False):
1919         """ On change of product id, if finds UoM, UoS, quantity and UoS quantity.
1920         @param prod_id: Changed Product id
1921         @param loc_id: Source location id
1922         @param loc_dest_id: Destination location id
1923         @param partner_id: Address id of partner
1924         @return: Dictionary of values
1925         """
1926         if not prod_id:
1927             return {}
1928         user = self.pool.get('res.users').browse(cr, uid, uid)
1929         lang = user and user.lang or False
1930         if partner_id:
1931             addr_rec = self.pool.get('res.partner').browse(cr, uid, partner_id)
1932             if addr_rec:
1933                 lang = addr_rec and addr_rec.lang or False
1934         ctx = {'lang': lang}
1935
1936         product = self.pool.get('product.product').browse(cr, uid, [prod_id], context=ctx)[0]
1937         uos_id  = product.uos_id and product.uos_id.id or False
1938         result = {
1939             'name': product.partner_ref,
1940             'product_uom': product.uom_id.id,
1941             'product_uos': uos_id,
1942             'product_qty': 1.00,
1943             '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'],
1944             'prodlot_id' : False,
1945         }
1946         if loc_id:
1947             result['location_id'] = loc_id
1948         if loc_dest_id:
1949             result['location_dest_id'] = loc_dest_id
1950         return {'value': result}
1951
1952     def onchange_move_type(self, cr, uid, ids, type, context=None):
1953         """ On change of move type gives sorce and destination location.
1954         @param type: Move Type
1955         @return: Dictionary of values
1956         """
1957         mod_obj = self.pool.get('ir.model.data')
1958         location_source_id = 'stock_location_stock'
1959         location_dest_id = 'stock_location_stock'
1960         if type == 'in':
1961             location_source_id = 'stock_location_suppliers'
1962             location_dest_id = 'stock_location_stock'
1963         elif type == 'out':
1964             location_source_id = 'stock_location_stock'
1965             location_dest_id = 'stock_location_customers'
1966         try:
1967             source_location = mod_obj.get_object_reference(cr, uid, 'stock', location_source_id)
1968             with tools.mute_logger('openerp.osv.orm'):
1969                 self.pool.get('stock.location').check_access_rule(cr, uid, [source_location[1]], 'read', context=context)
1970         except (orm.except_orm, ValueError):
1971             source_location = False
1972         try:
1973             dest_location = mod_obj.get_object_reference(cr, uid, 'stock', location_dest_id)
1974             with tools.mute_logger('openerp.osv.orm'):
1975                 self.pool.get('stock.location').check_access_rule(cr, uid, [dest_location[1]], 'read', context=context)
1976         except (orm.except_orm, ValueError):
1977             dest_location = False
1978         return {'value':{'location_id': source_location and source_location[1] or False, 'location_dest_id': dest_location and dest_location[1] or False}}
1979
1980     def onchange_date(self, cr, uid, ids, date, date_expected, context=None):
1981         """ On change of Scheduled Date gives a Move date.
1982         @param date_expected: Scheduled Date
1983         @param date: Move Date
1984         @return: Move Date
1985         """
1986         if not date_expected:
1987             date_expected = time.strftime('%Y-%m-%d %H:%M:%S')
1988         return {'value':{'date': date_expected}}
1989
1990     def _chain_compute(self, cr, uid, moves, context=None):
1991         """ Finds whether the location has chained location type or not.
1992         @param moves: Stock moves
1993         @return: Dictionary containing destination location with chained location type.
1994         """
1995         result = {}
1996         for m in moves:
1997             dest = self.pool.get('stock.location').chained_location_get(
1998                 cr,
1999                 uid,
2000                 m.location_dest_id,
2001                 m.picking_id and m.picking_id.partner_id and m.picking_id.partner_id,
2002                 m.product_id,
2003                 context
2004             )
2005             if dest:
2006                 if dest[1] == 'transparent':
2007                     newdate = (datetime.strptime(m.date, '%Y-%m-%d %H:%M:%S') + relativedelta(days=dest[2] or 0)).strftime('%Y-%m-%d')
2008                     self.write(cr, uid, [m.id], {
2009                         'date': newdate,
2010                         'location_dest_id': dest[0].id})
2011                     if m.picking_id and (dest[3] or dest[5]):
2012                         self.pool.get('stock.picking').write(cr, uid, [m.picking_id.id], {
2013                             'stock_journal_id': dest[3] or m.picking_id.stock_journal_id.id,
2014                             'type': dest[5] or m.picking_id.type
2015                         }, context=context)
2016                     m.location_dest_id = dest[0]
2017                     res2 = self._chain_compute(cr, uid, [m], context=context)
2018                     for pick_id in res2.keys():
2019                         result.setdefault(pick_id, [])
2020                         result[pick_id] += res2[pick_id]
2021                 else:
2022                     result.setdefault(m.picking_id, [])
2023                     result[m.picking_id].append( (m, dest) )
2024         return result
2025
2026     def _prepare_chained_picking(self, cr, uid, picking_name, picking, picking_type, moves_todo, context=None):
2027         """Prepare the definition (values) to create a new chained picking.
2028
2029            :param str picking_name: desired new picking name
2030            :param browse_record picking: source picking (being chained to)
2031            :param str picking_type: desired new picking type
2032            :param list moves_todo: specification of the stock moves to be later included in this
2033                picking, in the form::
2034
2035                    [[move, (dest_location, auto_packing, chained_delay, chained_journal,
2036                                   chained_company_id, chained_picking_type)],
2037                     ...
2038                    ]
2039
2040                See also :meth:`stock_location.chained_location_get`.
2041         """
2042         res_company = self.pool.get('res.company')
2043         return {
2044                     'name': picking_name,
2045                     'origin': tools.ustr(picking.origin or ''),
2046                     'type': picking_type,
2047                     'note': picking.note,
2048                     'move_type': picking.move_type,
2049                     'auto_picking': moves_todo[0][1][1] == 'auto',
2050                     'stock_journal_id': moves_todo[0][1][3],
2051                     'company_id': moves_todo[0][1][4] or res_company._company_default_get(cr, uid, 'stock.company', context=context),
2052                     'partner_id': picking.partner_id.id,
2053                     'invoice_state': 'none',
2054                     'date': picking.date,
2055                 }
2056
2057     def _create_chained_picking(self, cr, uid, picking_name, picking, picking_type, moves_todo, context=None):
2058         picking_obj = self.pool.get('stock.picking')
2059         return picking_obj.create(cr, uid, self._prepare_chained_picking(cr, uid, picking_name, picking, picking_type, moves_todo, context=context))
2060
2061     def create_chained_picking(self, cr, uid, moves, context=None):
2062         res_obj = self.pool.get('res.company')
2063         location_obj = self.pool.get('stock.location')
2064         move_obj = self.pool.get('stock.move')
2065         new_moves = []
2066         if context is None:
2067             context = {}
2068         seq_obj = self.pool.get('ir.sequence')
2069         for picking, chained_moves in self._chain_compute(cr, uid, moves, context=context).items():
2070             # We group the moves by automatic move type, so it creates different pickings for different types
2071             moves_by_type = {}
2072             for move in chained_moves:
2073                 moves_by_type.setdefault(move[1][1], []).append(move)
2074             for todo in moves_by_type.values():
2075                 ptype = todo[0][1][5] and todo[0][1][5] or location_obj.picking_type_get(cr, uid, todo[0][0].location_dest_id, todo[0][1][0])
2076                 if picking:
2077                     # name of new picking according to its type
2078                     if ptype == 'internal':
2079                         new_pick_name = seq_obj.get(cr, uid,'stock.picking')
2080                     else :
2081                         new_pick_name = seq_obj.get(cr, uid, 'stock.picking.' + ptype)
2082                     pickid = self._create_chained_picking(cr, uid, new_pick_name, picking, ptype, todo, context=context)
2083                     # Need to check name of old picking because it always considers picking as "OUT" when created from Sales Order
2084                     old_ptype = location_obj.picking_type_get(cr, uid, picking.move_lines[0].location_id, picking.move_lines[0].location_dest_id)
2085                     if old_ptype != picking.type:
2086                         old_pick_name = seq_obj.get(cr, uid, 'stock.picking.' + old_ptype)
2087                         self.pool.get('stock.picking').write(cr, uid, [picking.id], {'name': old_pick_name, 'type': old_ptype}, context=context)
2088                 else:
2089                     pickid = False
2090                 for move, (loc, dummy, delay, dummy, company_id, ptype, invoice_state) in todo:
2091                     new_id = move_obj.copy(cr, uid, move.id, {
2092                         'location_id': move.location_dest_id.id,
2093                         'location_dest_id': loc.id,
2094                         'date': time.strftime('%Y-%m-%d'),
2095                         'picking_id': pickid,
2096                         'state': 'waiting',
2097                         'company_id': company_id or res_obj._company_default_get(cr, uid, 'stock.company', context=context)  ,
2098                         'move_history_ids': [],
2099                         'date_expected': (datetime.strptime(move.date, '%Y-%m-%d %H:%M:%S') + relativedelta(days=delay or 0)).strftime('%Y-%m-%d'),
2100                         'move_history_ids2': []}
2101                     )
2102                     move_obj.write(cr, uid, [move.id], {
2103                         'move_dest_id': new_id,
2104                         'move_history_ids': [(4, new_id)]
2105                     })
2106                     new_moves.append(self.browse(cr, uid, [new_id])[0])
2107                 if pickid:
2108                     self.pool.get('stock.picking').signal_button_confirm(cr, uid, [pickid])
2109         if new_moves:
2110             new_moves += self.create_chained_picking(cr, uid, new_moves, context)
2111         return new_moves
2112
2113     def action_confirm(self, cr, uid, ids, context=None):
2114         """ Confirms stock move.
2115         @return: List of ids.
2116         """
2117         moves = self.browse(cr, uid, ids, context=context)
2118         self.write(cr, uid, ids, {'state': 'confirmed'})
2119         self.create_chained_picking(cr, uid, moves, context)
2120         return []
2121
2122     def action_assign(self, cr, uid, ids, *args):
2123         """ Changes state to confirmed or waiting.
2124         @return: List of values
2125         """
2126         todo = []
2127         for move in self.browse(cr, uid, ids):
2128             if move.state in ('confirmed', 'waiting'):
2129                 todo.append(move.id)
2130         res = self.check_assign(cr, uid, todo)
2131         return res
2132
2133     def force_assign(self, cr, uid, ids, context=None):
2134         """ Changes the state to assigned.
2135         @return: True
2136         """
2137         self.write(cr, uid, ids, {'state': 'assigned'})
2138         for move in self.browse(cr, uid, ids, context):
2139             if move.picking_id:
2140                 workflow.trg_write(uid, 'stock.picking', move.picking_id.id, cr)
2141         return True
2142
2143     def cancel_assign(self, cr, uid, ids, context=None):
2144         """ Changes the state to confirmed.
2145         @return: True
2146         """
2147         self.write(cr, uid, ids, {'state': 'confirmed'})
2148
2149         # fix for bug lp:707031
2150         # called write of related picking because changing move availability does
2151         # not trigger workflow of picking in order to change the state of picking
2152         for move in self.browse(cr, uid, ids, context):
2153             if move.picking_id:
2154                 workflow.trg_write(uid, 'stock.picking', move.picking_id.id, cr)
2155         return True
2156
2157     #
2158     # Duplicate stock.move
2159     #
2160     def check_assign(self, cr, uid, ids, context=None):
2161         """ Checks the product type and accordingly writes the state.
2162         @return: No. of moves done
2163         """
2164         done = []
2165         count = 0
2166         pickings = {}
2167         if context is None:
2168             context = {}
2169         for move in self.browse(cr, uid, ids, context=context):
2170             if move.product_id.type == 'consu' or move.location_id.usage == 'supplier':
2171                 if move.state in ('confirmed', 'waiting'):
2172                     done.append(move.id)
2173                 pickings[move.picking_id.id] = 1
2174                 continue
2175             if move.state in ('confirmed', 'waiting'):
2176                 # Important: we must pass lock=True to _product_reserve() to avoid race conditions and double reservations
2177                 res = self.pool.get('stock.location')._product_reserve(cr, uid, [move.location_id.id], move.product_id.id, move.product_qty, {'uom': move.product_uom.id}, lock=True)
2178                 if res:
2179                     #_product_available_test depends on the next status for correct functioning
2180                     #the test does not work correctly if the same product occurs multiple times
2181                     #in the same order. This is e.g. the case when using the button 'split in two' of
2182                     #the stock outgoing form
2183                     self.write(cr, uid, [move.id], {'state':'assigned'})
2184                     done.append(move.id)
2185                     pickings[move.picking_id.id] = 1
2186                     r = res.pop(0)
2187                     product_uos_qty = self.pool.get('stock.move').onchange_quantity(cr, uid, [move.id], move.product_id.id, r[0], move.product_id.uom_id.id, move.product_id.uos_id.id)['value']['product_uos_qty']
2188                     cr.execute('update stock_move set location_id=%s, product_qty=%s, product_uos_qty=%s where id=%s', (r[1], r[0],product_uos_qty, move.id))
2189
2190                     while res:
2191                         r = res.pop(0)
2192                         product_uos_qty = self.pool.get('stock.move').onchange_quantity(cr, uid, [move.id], move.product_id.id, r[0], move.product_id.uom_id.id, move.product_id.uos_id.id)['value']['product_uos_qty']
2193                         move_id = self.copy(cr, uid, move.id, {'product_uos_qty': product_uos_qty, 'product_qty': r[0], 'location_id': r[1]})
2194                         done.append(move_id)
2195         if done:
2196             count += len(done)
2197             self.write(cr, uid, done, {'state': 'assigned'})
2198
2199         if count:
2200             for pick_id in pickings:
2201                 workflow.trg_write(uid, 'stock.picking', pick_id, cr)
2202         return count
2203
2204     def setlast_tracking(self, cr, uid, ids, context=None):
2205         assert len(ids) == 1, "1 ID expected, got %s" % (ids, )
2206         tracking_obj = self.pool['stock.tracking']
2207         move = self.browse(cr, uid, ids[0], context=context)
2208         picking_id = move.picking_id.id
2209         if picking_id:
2210             move_ids = self.search(cr, uid, [
2211                 ('picking_id', '=', picking_id),
2212                 ('tracking_id', '!=', False)
2213                 ], limit=1, order='tracking_id DESC', context=context)
2214             if move_ids:
2215                 tracking_move = self.browse(cr, uid, move_ids[0],
2216                                             context=context)
2217                 tracking_id = tracking_move.tracking_id.id
2218             else:
2219                 tracking_id = tracking_obj.create(cr, uid, {}, context=context)
2220             self.write(cr, uid, move.id,
2221                        {'tracking_id': tracking_id},
2222                        context=context)
2223         return True
2224
2225     #
2226     # Cancel move => cancel others move and pickings
2227     #
2228     def action_cancel(self, cr, uid, ids, context=None):
2229         """ Cancels the moves and if all moves are cancelled it cancels the picking.
2230         @return: True
2231         """
2232         if not len(ids):
2233             return True
2234         if context is None:
2235             context = {}
2236         pickings = set()
2237         for move in self.browse(cr, uid, ids, context=context):
2238             if move.state in ('confirmed', 'waiting', 'assigned', 'draft'):
2239                 if move.picking_id:
2240                     pickings.add(move.picking_id.id)
2241             if move.move_dest_id and move.move_dest_id.state == 'waiting':
2242                 self.write(cr, uid, [move.move_dest_id.id], {'state': 'confirmed'}, context=context)
2243                 if context.get('call_unlink',False) and move.move_dest_id.picking_id:
2244                     workflow.trg_write(uid, 'stock.picking', move.move_dest_id.picking_id.id, cr)
2245         self.write(cr, uid, ids, {'state': 'cancel', 'move_dest_id': False}, context=context)
2246         if not context.get('call_unlink',False):
2247             for pick in self.pool.get('stock.picking').browse(cr, uid, list(pickings), context=context):
2248                 if all(move.state == 'cancel' for move in pick.move_lines):
2249                     self.pool.get('stock.picking').write(cr, uid, [pick.id], {'state': 'cancel'}, context=context)
2250
2251         for id in ids:
2252             workflow.trg_trigger(uid, 'stock.move', id, cr)
2253         return True
2254
2255     def _get_accounting_data_for_valuation(self, cr, uid, move, context=None):
2256         """
2257         Return the accounts and journal to use to post Journal Entries for the real-time
2258         valuation of the move.
2259
2260         :param context: context dictionary that can explicitly mention the company to consider via the 'force_company' key
2261         :raise: osv.except_osv() is any mandatory account or journal is not defined.
2262         """
2263         product_obj=self.pool.get('product.product')
2264         accounts = product_obj.get_product_accounts(cr, uid, move.product_id.id, context)
2265         if move.location_id.valuation_out_account_id:
2266             acc_src = move.location_id.valuation_out_account_id.id
2267         else:
2268             acc_src = accounts['stock_account_input']
2269
2270         if move.location_dest_id.valuation_in_account_id:
2271             acc_dest = move.location_dest_id.valuation_in_account_id.id
2272         else:
2273             acc_dest = accounts['stock_account_output']
2274
2275         acc_valuation = accounts.get('property_stock_valuation_account_id', False)
2276         journal_id = accounts['stock_journal']
2277
2278         if acc_dest == acc_valuation:
2279             raise osv.except_osv(_('Error!'),  _('Cannot create Journal Entry, Output Account of this product and Valuation account on category of this product are same.'))
2280
2281         if acc_src == acc_valuation:
2282             raise osv.except_osv(_('Error!'),  _('Cannot create Journal Entry, Input Account of this product and Valuation account on category of this product are same.'))
2283
2284         if not acc_src:
2285             raise osv.except_osv(_('Error!'),  _('Please define stock input account for this product or its category: "%s" (id: %d)') % \
2286                                     (move.product_id.name, move.product_id.id,))
2287         if not acc_dest:
2288             raise osv.except_osv(_('Error!'),  _('Please define stock output account for this product or its category: "%s" (id: %d)') % \
2289                                     (move.product_id.name, move.product_id.id,))
2290         if not journal_id:
2291             raise osv.except_osv(_('Error!'), _('Please define journal on the product category: "%s" (id: %d)') % \
2292                                     (move.product_id.categ_id.name, move.product_id.categ_id.id,))
2293         if not acc_valuation:
2294             raise osv.except_osv(_('Error!'), _('Please define inventory valuation account on the product category: "%s" (id: %d)') % \
2295                                     (move.product_id.categ_id.name, move.product_id.categ_id.id,))
2296         return journal_id, acc_src, acc_dest, acc_valuation
2297
2298     def _get_reference_accounting_values_for_valuation(self, cr, uid, move, context=None):
2299         """
2300         Return the reference amount and reference currency representing the inventory valuation for this move.
2301         These reference values should possibly be converted before being posted in Journals to adapt to the primary
2302         and secondary currencies of the relevant accounts.
2303         """
2304         product_uom_obj = self.pool.get('product.uom')
2305
2306         # by default the reference currency is that of the move's company
2307         reference_currency_id = move.company_id.currency_id.id
2308
2309         default_uom = move.product_id.uom_id.id
2310         qty = product_uom_obj._compute_qty(cr, uid, move.product_uom.id, move.product_qty, default_uom)
2311
2312         # if product is set to average price and a specific value was entered in the picking wizard,
2313         # we use it
2314         if move.location_dest_id.usage != 'internal' and move.product_id.cost_method == 'average':
2315             reference_amount = qty * move.product_id.standard_price
2316         elif move.product_id.cost_method == 'average' and move.price_unit:
2317             reference_amount = qty * move.price_unit
2318             reference_currency_id = move.price_currency_id.id or reference_currency_id
2319
2320         # Otherwise we default to the company's valuation price type, considering that the values of the
2321         # valuation field are expressed in the default currency of the move's company.
2322         else:
2323             if context is None:
2324                 context = {}
2325             currency_ctx = dict(context, currency_id = move.company_id.currency_id.id)
2326             amount_unit = move.product_id.price_get('standard_price', context=currency_ctx)[move.product_id.id]
2327             reference_amount = amount_unit * qty
2328
2329         return reference_amount, reference_currency_id
2330
2331
2332     def _create_product_valuation_moves(self, cr, uid, move, context=None):
2333         """
2334         Generate the appropriate accounting moves if the product being moves is subject
2335         to real_time valuation tracking, and the source or destination location is
2336         a transit location or is outside of the company.
2337         """
2338         if move.product_id.valuation == 'real_time': # FIXME: product valuation should perhaps be a property?
2339             if context is None:
2340                 context = {}
2341             src_company_ctx = dict(context,force_company=move.location_id.company_id.id)
2342             dest_company_ctx = dict(context,force_company=move.location_dest_id.company_id.id)
2343             # do not take the company of the one of the user
2344             # used to select the correct period
2345             company_ctx = dict(context, company_id=move.company_id.id)
2346             account_moves = []
2347             # Outgoing moves (or cross-company output part)
2348             if move.location_id.company_id \
2349                 and (move.location_id.usage == 'internal' and move.location_dest_id.usage != 'internal'\
2350                      or move.location_id.company_id != move.location_dest_id.company_id):
2351                 journal_id, acc_src, acc_dest, acc_valuation = self._get_accounting_data_for_valuation(cr, uid, move, src_company_ctx)
2352                 reference_amount, reference_currency_id = self._get_reference_accounting_values_for_valuation(cr, uid, move, src_company_ctx)
2353                 #returning goods to supplier
2354                 if move.location_dest_id.usage == 'supplier':
2355                     account_moves += [(journal_id, self._create_account_move_line(cr, uid, move, acc_valuation, acc_src, reference_amount, reference_currency_id, context))]
2356                 else:
2357                     account_moves += [(journal_id, self._create_account_move_line(cr, uid, move, acc_valuation, acc_dest, reference_amount, reference_currency_id, context))]
2358
2359             # Incoming moves (or cross-company input part)
2360             if move.location_dest_id.company_id \
2361                 and (move.location_id.usage != 'internal' and move.location_dest_id.usage == 'internal'\
2362                      or move.location_id.company_id != move.location_dest_id.company_id):
2363                 journal_id, acc_src, acc_dest, acc_valuation = self._get_accounting_data_for_valuation(cr, uid, move, dest_company_ctx)
2364                 reference_amount, reference_currency_id = self._get_reference_accounting_values_for_valuation(cr, uid, move, src_company_ctx)
2365                 #goods return from customer
2366                 if move.location_id.usage == 'customer':
2367                     account_moves += [(journal_id, self._create_account_move_line(cr, uid, move, acc_dest, acc_valuation, reference_amount, reference_currency_id, context))]
2368                 else:
2369                     account_moves += [(journal_id, self._create_account_move_line(cr, uid, move, acc_src, acc_valuation, reference_amount, reference_currency_id, context))]
2370
2371             move_obj = self.pool.get('account.move')
2372             for j_id, move_lines in account_moves:
2373                 move_obj.create(cr, uid,
2374                         {
2375                          'journal_id': j_id,
2376                          'line_id': move_lines,
2377                          'company_id': move.company_id.id,
2378                          'ref': move.picking_id and move.picking_id.name}, context=company_ctx)
2379
2380     def action_done(self, cr, uid, ids, context=None):
2381         """ Makes the move done and if all moves are done, it will finish the picking.
2382         @return:
2383         """
2384         picking_ids = []
2385         move_ids = []
2386         if context is None:
2387             context = {}
2388
2389         todo = []
2390         for move in self.browse(cr, uid, ids, context=context):
2391             if move.state=="draft":
2392                 todo.append(move.id)
2393         if todo:
2394             self.action_confirm(cr, uid, todo, context=context)
2395             todo = []
2396
2397         for move in self.browse(cr, uid, ids, context=context):
2398             if move.state in ['done','cancel']:
2399                 continue
2400             move_ids.append(move.id)
2401
2402             if move.picking_id:
2403                 picking_ids.append(move.picking_id.id)
2404             if move.move_dest_id.id and (move.state != 'done'):
2405                 # Downstream move should only be triggered if this move is the last pending upstream move
2406                 other_upstream_move_ids = self.search(cr, uid, [('id','not in',move_ids),('state','not in',['done','cancel']),
2407                                             ('move_dest_id','=',move.move_dest_id.id)], context=context)
2408                 if not other_upstream_move_ids:
2409                     self.write(cr, uid, [move.id], {'move_history_ids': [(4, move.move_dest_id.id)]})
2410                     if move.move_dest_id.state in ('waiting', 'confirmed'):
2411                         self.force_assign(cr, uid, [move.move_dest_id.id], context=context)
2412                         if move.move_dest_id.picking_id:
2413                             workflow.trg_write(uid, 'stock.picking', move.move_dest_id.picking_id.id, cr)
2414                         if move.move_dest_id.auto_validate:
2415                             self.action_done(cr, uid, [move.move_dest_id.id], context=context)
2416
2417             self._create_product_valuation_moves(cr, uid, move, context=context)
2418             if move.state not in ('confirmed','done','assigned'):
2419                 todo.append(move.id)
2420
2421         if todo:
2422             self.action_confirm(cr, uid, todo, context=context)
2423
2424         self.write(cr, uid, move_ids, {'state': 'done', 'date': time.strftime(DEFAULT_SERVER_DATETIME_FORMAT)}, context=context)
2425         for id in move_ids:
2426              workflow.trg_trigger(uid, 'stock.move', id, cr)
2427
2428         for pick_id in picking_ids:
2429             workflow.trg_write(uid, 'stock.picking', pick_id, cr)
2430
2431         return True
2432
2433     def _create_account_move_line(self, cr, uid, move, src_account_id, dest_account_id, reference_amount, reference_currency_id, context=None):
2434         """
2435         Generate the account.move.line values to post to track the stock valuation difference due to the
2436         processing of the given stock move.
2437         """
2438         # prepare default values considering that the destination accounts have the reference_currency_id as their main currency
2439         partner_id = (move.picking_id.partner_id and self.pool.get('res.partner')._find_accounting_partner(move.picking_id.partner_id).id) or False
2440         debit_line_vals = {
2441                     'name': move.name,
2442                     'product_id': move.product_id and move.product_id.id or False,
2443                     'quantity': move.product_qty,
2444                     'ref': move.picking_id and move.picking_id.name or False,
2445                     'date': time.strftime('%Y-%m-%d'),
2446                     'partner_id': partner_id,
2447                     'debit': reference_amount,
2448                     'account_id': dest_account_id,
2449         }
2450         credit_line_vals = {
2451                     'name': move.name,
2452                     'product_id': move.product_id and move.product_id.id or False,
2453                     'quantity': move.product_qty,
2454                     'ref': move.picking_id and move.picking_id.name or False,
2455                     'date': time.strftime('%Y-%m-%d'),
2456                     'partner_id': partner_id,
2457                     'credit': reference_amount,
2458                     'account_id': src_account_id,
2459         }
2460
2461         # if we are posting to accounts in a different currency, provide correct values in both currencies correctly
2462         # when compatible with the optional secondary currency on the account.
2463         # Financial Accounts only accept amounts in secondary currencies if there's no secondary currency on the account
2464         # or if it's the same as that of the secondary amount being posted.
2465         account_obj = self.pool.get('account.account')
2466         src_acct, dest_acct = account_obj.browse(cr, uid, [src_account_id, dest_account_id], context=context)
2467         src_main_currency_id = src_acct.company_id.currency_id.id
2468         dest_main_currency_id = dest_acct.company_id.currency_id.id
2469         cur_obj = self.pool.get('res.currency')
2470         if reference_currency_id != src_main_currency_id:
2471             # fix credit line:
2472             credit_line_vals['credit'] = cur_obj.compute(cr, uid, reference_currency_id, src_main_currency_id, reference_amount, context=context)
2473             if (not src_acct.currency_id) or src_acct.currency_id.id == reference_currency_id:
2474                 credit_line_vals.update(currency_id=reference_currency_id, amount_currency=-reference_amount)
2475         if reference_currency_id != dest_main_currency_id:
2476             # fix debit line:
2477             debit_line_vals['debit'] = cur_obj.compute(cr, uid, reference_currency_id, dest_main_currency_id, reference_amount, context=context)
2478             if (not dest_acct.currency_id) or dest_acct.currency_id.id == reference_currency_id:
2479                 debit_line_vals.update(currency_id=reference_currency_id, amount_currency=reference_amount)
2480
2481         return [(0, 0, debit_line_vals), (0, 0, credit_line_vals)]
2482
2483     def unlink(self, cr, uid, ids, context=None):
2484         if context is None:
2485             context = {}
2486         ctx = context.copy()
2487         for move in self.browse(cr, uid, ids, context=context):
2488             if move.state != 'draft' and not ctx.get('call_unlink', False):
2489                 raise osv.except_osv(_('User Error!'), _('You can only delete draft moves.'))
2490         return super(stock_move, self).unlink(
2491             cr, uid, ids, context=ctx)
2492
2493     # _create_lot function is not used anywhere
2494     def _create_lot(self, cr, uid, ids, product_id, prefix=False):
2495         """ Creates production lot
2496         @return: Production lot id
2497         """
2498         prodlot_obj = self.pool.get('stock.production.lot')
2499         prodlot_id = prodlot_obj.create(cr, uid, {'prefix': prefix, 'product_id': product_id})
2500         return prodlot_id
2501
2502     def action_scrap(self, cr, uid, ids, quantity, location_id, context=None):
2503         """ Move the scrap/damaged product into scrap location
2504         @param cr: the database cursor
2505         @param uid: the user id
2506         @param ids: ids of stock move object to be scrapped
2507         @param quantity : specify scrap qty
2508         @param location_id : specify scrap location
2509         @param context: context arguments
2510         @return: Scraped lines
2511         """
2512         #quantity should in MOVE UOM
2513         if quantity <= 0:
2514             raise osv.except_osv(_('Warning!'), _('Please provide a positive quantity to scrap.'))
2515         res = []
2516         for move in self.browse(cr, uid, ids, context=context):
2517             source_location = move.location_id
2518             if move.state == 'done':
2519                 source_location = move.location_dest_id
2520             if source_location.usage != 'internal':
2521                 #restrict to scrap from a virtual location because it's meaningless and it may introduce errors in stock ('creating' new products from nowhere)
2522                 raise osv.except_osv(_('Error!'), _('Forbidden operation: it is not allowed to scrap products from a virtual location.'))
2523             move_qty = move.product_qty
2524             uos_qty = quantity / move_qty * move.product_uos_qty
2525             default_val = {
2526                 'location_id': source_location.id,
2527                 'product_qty': quantity,
2528                 'product_uos_qty': uos_qty,
2529                 'state': move.state,
2530                 'scrapped': True,
2531                 'location_dest_id': location_id,
2532                 'tracking_id': move.tracking_id.id,
2533                 'prodlot_id': move.prodlot_id.id,
2534             }
2535             new_move = self.copy(cr, uid, move.id, default_val)
2536
2537             res += [new_move]
2538             product_obj = self.pool.get('product.product')
2539             for product in product_obj.browse(cr, uid, [move.product_id.id], context=context):
2540                 if move.picking_id:
2541                     uom = product.uom_id.name if product.uom_id else ''
2542                     message = _("%s %s %s has been <b>moved to</b> scrap.") % (quantity, uom, product.name)
2543                     move.picking_id.message_post(body=message)
2544
2545         self.action_done(cr, uid, res, context=context)
2546         return res
2547
2548     # action_split function is not used anywhere
2549     # FIXME: deprecate this method
2550     def action_split(self, cr, uid, ids, quantity, split_by_qty=1, prefix=False, with_lot=True, context=None):
2551         """ Split Stock Move lines into production lot which specified split by quantity.
2552         @param cr: the database cursor
2553         @param uid: the user id
2554         @param ids: ids of stock move object to be splited
2555         @param split_by_qty : specify split by qty
2556         @param prefix : specify prefix of production lot
2557         @param with_lot : if true, prodcution lot will assign for split line otherwise not.
2558         @param context: context arguments
2559         @return: Splited move lines
2560         """
2561
2562         if context is None:
2563             context = {}
2564         if quantity <= 0:
2565             raise osv.except_osv(_('Warning!'), _('Please provide proper quantity.'))
2566
2567         res = []
2568
2569         for move in self.browse(cr, uid, ids, context=context):
2570             if split_by_qty <= 0 or quantity == 0:
2571                 return res
2572
2573             uos_qty = split_by_qty / move.product_qty * move.product_uos_qty
2574
2575             quantity_rest = quantity % split_by_qty
2576             uos_qty_rest = split_by_qty / move.product_qty * move.product_uos_qty
2577
2578             update_val = {
2579                 'product_qty': split_by_qty,
2580                 'product_uos_qty': uos_qty,
2581             }
2582             for idx in range(int(quantity//split_by_qty)):
2583                 if not idx and move.product_qty<=quantity:
2584                     current_move = move.id
2585                 else:
2586                     current_move = self.copy(cr, uid, move.id, {'state': move.state})
2587                 res.append(current_move)
2588                 if with_lot:
2589                     update_val['prodlot_id'] = self._create_lot(cr, uid, [current_move], move.product_id.id)
2590
2591                 self.write(cr, uid, [current_move], update_val)
2592
2593
2594             if quantity_rest > 0:
2595                 idx = int(quantity//split_by_qty)
2596                 update_val['product_qty'] = quantity_rest
2597                 update_val['product_uos_qty'] = uos_qty_rest
2598                 if not idx and move.product_qty<=quantity:
2599                     current_move = move.id
2600                 else:
2601                     current_move = self.copy(cr, uid, move.id, {'state': move.state})
2602
2603                 res.append(current_move)
2604
2605
2606                 if with_lot:
2607                     update_val['prodlot_id'] = self._create_lot(cr, uid, [current_move], move.product_id.id)
2608
2609                 self.write(cr, uid, [current_move], update_val)
2610         return res
2611
2612     def action_consume(self, cr, uid, ids, quantity, location_id=False, context=None):
2613         """ Consumed product with specific quatity from specific source location
2614         @param cr: the database cursor
2615         @param uid: the user id
2616         @param ids: ids of stock move object to be consumed
2617         @param quantity : specify consume quantity
2618         @param location_id : specify source location
2619         @param context: context arguments
2620         @return: Consumed lines
2621         """
2622         #quantity should in MOVE UOM
2623         if context is None:
2624             context = {}
2625         if quantity <= 0:
2626             raise osv.except_osv(_('Warning!'), _('Please provide proper quantity.'))
2627         res = []
2628         for move in self.browse(cr, uid, ids, context=context):
2629             move_qty = move.product_qty
2630             if move_qty <= 0:
2631                 raise osv.except_osv(_('Error!'), _('Cannot consume a move with negative or zero quantity.'))
2632             quantity_rest = move.product_qty
2633             quantity_rest -= quantity
2634             uos_qty_rest = quantity_rest / move_qty * move.product_uos_qty
2635             if quantity_rest <= 0:
2636                 quantity_rest = 0
2637                 uos_qty_rest = 0
2638                 quantity = move.product_qty
2639
2640             uos_qty = quantity / move_qty * move.product_uos_qty
2641             if float_compare(quantity_rest, 0, precision_rounding=move.product_id.uom_id.rounding):
2642                 default_val = {
2643                     'product_qty': quantity,
2644                     'product_uos_qty': uos_qty,
2645                     'state': move.state,
2646                     'location_id': location_id or move.location_id.id,
2647                 }
2648                 current_move = self.copy(cr, uid, move.id, default_val)
2649                 res += [current_move]
2650                 update_val = {}
2651                 update_val['product_qty'] = quantity_rest
2652                 update_val['product_uos_qty'] = uos_qty_rest
2653                 self.write(cr, uid, [move.id], update_val)
2654
2655             else:
2656                 quantity_rest = quantity
2657                 uos_qty_rest =  uos_qty
2658                 res += [move.id]
2659                 update_val = {
2660                         'product_qty' : quantity_rest,
2661                         'product_uos_qty' : uos_qty_rest,
2662                         'location_id': location_id or move.location_id.id,
2663                 }
2664                 self.write(cr, uid, [move.id], update_val)
2665
2666         self.action_done(cr, uid, res, context=context)
2667
2668         return res
2669
2670     # FIXME: needs refactoring, this code is partially duplicated in stock_picking.do_partial()!
2671     def do_partial(self, cr, uid, ids, partial_datas, context=None):
2672         """ Makes partial pickings and moves done.
2673         @param partial_datas: Dictionary containing details of partial picking
2674                           like partner_id, delivery_date, delivery
2675                           moves with product_id, product_qty, uom
2676         """
2677         res = {}
2678         picking_obj = self.pool.get('stock.picking')
2679         product_obj = self.pool.get('product.product')
2680         currency_obj = self.pool.get('res.currency')
2681         uom_obj = self.pool.get('product.uom')
2682
2683         if context is None:
2684             context = {}
2685
2686         complete, too_many, too_few = [], [], []
2687         move_product_qty = {}
2688         prodlot_ids = {}
2689         for move in self.browse(cr, uid, ids, context=context):
2690             if move.state in ('done', 'cancel'):
2691                 continue
2692             partial_data = partial_datas.get('move%s'%(move.id), False)
2693             assert partial_data, _('Missing partial picking data for move #%s.') % (move.id)
2694             product_qty = partial_data.get('product_qty',0.0)
2695             move_product_qty[move.id] = product_qty
2696             product_uom = partial_data.get('product_uom',False)
2697             product_price = partial_data.get('product_price',0.0)
2698             product_currency = partial_data.get('product_currency',False)
2699             prodlot_ids[move.id] = partial_data.get('prodlot_id')
2700             if move.product_qty == product_qty:
2701                 complete.append(move)
2702             elif move.product_qty > product_qty:
2703                 too_few.append(move)
2704             else:
2705                 too_many.append(move)
2706
2707             # Average price computation
2708             if (move.picking_id.type == 'in') and (move.product_id.cost_method == 'average'):
2709                 product = product_obj.browse(cr, uid, move.product_id.id)
2710                 move_currency_id = move.company_id.currency_id.id
2711                 context['currency_id'] = move_currency_id
2712                 qty = uom_obj._compute_qty(cr, uid, product_uom, product_qty, product.uom_id.id)
2713                 if qty > 0:
2714                     new_price = currency_obj.compute(cr, uid, product_currency,
2715                             move_currency_id, product_price, round=False)
2716                     new_price = uom_obj._compute_price(cr, uid, product_uom, new_price,
2717                             product.uom_id.id)
2718                     if product.qty_available <= 0:
2719                         new_std_price = new_price
2720                     else:
2721                         # Get the standard price
2722                         amount_unit = product.price_get('standard_price', context=context)[product.id]
2723                         new_std_price = ((amount_unit * product.qty_available)\
2724                             + (new_price * qty))/(product.qty_available + qty)
2725
2726                     product_obj.write(cr, uid, [product.id],{'standard_price': new_std_price})
2727
2728                     # Record the values that were chosen in the wizard, so they can be
2729                     # used for inventory valuation if real-time valuation is enabled.
2730                     self.write(cr, uid, [move.id],
2731                                 {'price_unit': product_price,
2732                                  'price_currency_id': product_currency,
2733                                 })
2734
2735         for move in too_few:
2736             product_qty = move_product_qty[move.id]
2737             if product_qty != 0:
2738                 defaults = {
2739                             'product_qty' : product_qty,
2740                             'product_uos_qty': product_qty,
2741                             'picking_id' : move.picking_id.id,
2742                             'state': 'assigned',
2743                             'move_dest_id': False,
2744                             'price_unit': move.price_unit,
2745                             }
2746                 prodlot_id = prodlot_ids[move.id]
2747                 if prodlot_id:
2748                     defaults.update(prodlot_id=prodlot_id)
2749                 new_move = self.copy(cr, uid, move.id, defaults)
2750                 complete.append(self.browse(cr, uid, new_move))
2751             self.write(cr, uid, [move.id],
2752                     {
2753                         'product_qty': move.product_qty - product_qty,
2754                         'product_uos_qty': move.product_qty - product_qty,
2755                         'prodlot_id': False,
2756                         'tracking_id': False,
2757                     })
2758
2759
2760         for move in too_many:
2761             self.write(cr, uid, [move.id],
2762                     {
2763                         'product_qty': move.product_qty,
2764                         'product_uos_qty': move.product_qty,
2765                     })
2766             complete.append(move)
2767
2768         for move in complete:
2769             if prodlot_ids.get(move.id):
2770                 self.write(cr, uid, [move.id],{'prodlot_id': prodlot_ids.get(move.id)})
2771             self.action_done(cr, uid, [move.id], context=context)
2772             if  move.picking_id.id :
2773                 # TOCHECK : Done picking if all moves are done
2774                 cr.execute("""
2775                     SELECT move.id FROM stock_picking pick
2776                     RIGHT JOIN stock_move move ON move.picking_id = pick.id AND move.state = %s
2777                     WHERE pick.id = %s""",
2778                             ('done', move.picking_id.id))
2779                 res = cr.fetchall()
2780                 if len(res) == len(move.picking_id.move_lines):
2781                     picking_obj.action_move(cr, uid, [move.picking_id.id])
2782                     picking_obj.signal_button_done(cr, uid, [move.picking_id.id])
2783
2784         return [move.id for move in complete]
2785
2786
2787 class stock_inventory(osv.osv):
2788     _name = "stock.inventory"
2789     _description = "Inventory"
2790     _columns = {
2791         'name': fields.char('Inventory Reference', size=64, required=True, readonly=True, states={'draft': [('readonly', False)]}),
2792         'date': fields.datetime('Creation Date', required=True, readonly=True, states={'draft': [('readonly', False)]}),
2793         'date_done': fields.datetime('Date done'),
2794         'inventory_line_id': fields.one2many('stock.inventory.line', 'inventory_id', 'Inventories', readonly=True, states={'draft': [('readonly', False)]}),
2795         'move_ids': fields.many2many('stock.move', 'stock_inventory_move_rel', 'inventory_id', 'move_id', 'Created Moves'),
2796         'state': fields.selection( (('draft', 'Draft'), ('cancel','Cancelled'), ('confirm','Confirmed'), ('done', 'Done')), 'Status', readonly=True, select=True),
2797         'company_id': fields.many2one('res.company', 'Company', required=True, select=True, readonly=True, states={'draft':[('readonly',False)]}),
2798
2799     }
2800     _defaults = {
2801         'date': lambda *a: time.strftime('%Y-%m-%d %H:%M:%S'),
2802         'state': 'draft',
2803         'company_id': lambda self,cr,uid,c: self.pool.get('res.company')._company_default_get(cr, uid, 'stock.inventory', context=c)
2804     }
2805
2806     def copy(self, cr, uid, id, default=None, context=None):
2807         if default is None:
2808             default = {}
2809         default = default.copy()
2810         default.update({'move_ids': [], 'date_done': False})
2811         return super(stock_inventory, self).copy(cr, uid, id, default, context=context)
2812
2813     def _inventory_line_hook(self, cr, uid, inventory_line, move_vals):
2814         """ Creates a stock move from an inventory line
2815         @param inventory_line:
2816         @param move_vals:
2817         @return:
2818         """
2819         return self.pool.get('stock.move').create(cr, uid, move_vals)
2820
2821     def action_done(self, cr, uid, ids, context=None):
2822         """ Finish the inventory
2823         @return: True
2824         """
2825         if context is None:
2826             context = {}
2827         move_obj = self.pool.get('stock.move')
2828         for inv in self.browse(cr, uid, ids, context=context):
2829             move_obj.action_done(cr, uid, [x.id for x in inv.move_ids], context=context)
2830             self.write(cr, uid, [inv.id], {'state':'done', 'date_done': time.strftime('%Y-%m-%d %H:%M:%S')}, context=context)
2831         return True
2832
2833     def action_confirm(self, cr, uid, ids, context=None):
2834         """ Confirm the inventory and writes its finished date
2835         @return: True
2836         """
2837         if context is None:
2838             context = {}
2839         # to perform the correct inventory corrections we need analyze stock location by
2840         # location, never recursively, so we use a special context
2841         product_context = dict(context, compute_child=False)
2842
2843         location_obj = self.pool.get('stock.location')
2844         for inv in self.browse(cr, uid, ids, context=context):
2845             move_ids = []
2846             for line in inv.inventory_line_id:
2847                 pid = line.product_id.id
2848                 product_context.update(uom=line.product_uom.id, to_date=inv.date, date=inv.date, prodlot_id=line.prod_lot_id.id)
2849                 amount = location_obj._product_get(cr, uid, line.location_id.id, [pid], product_context)[pid]
2850                 change = line.product_qty - amount
2851                 lot_id = line.prod_lot_id.id
2852                 if change:
2853                     location_id = line.product_id.property_stock_inventory.id
2854                     value = {
2855                         'name': _('INV:') + (line.inventory_id.name or ''),
2856                         'product_id': line.product_id.id,
2857                         'product_uom': line.product_uom.id,
2858                         'prodlot_id': lot_id,
2859                         'date': inv.date,
2860                     }
2861
2862                     if change > 0:
2863                         value.update( {
2864                             'product_qty': change,
2865                             'location_id': location_id,
2866                             'location_dest_id': line.location_id.id,
2867                         })
2868                     else:
2869                         value.update( {
2870                             'product_qty': -change,
2871                             'location_id': line.location_id.id,
2872                             'location_dest_id': location_id,
2873                         })
2874                     move_ids.append(self._inventory_line_hook(cr, uid, line, value))
2875             self.write(cr, uid, [inv.id], {'state': 'confirm', 'move_ids': [(6, 0, move_ids)]})
2876             self.pool.get('stock.move').action_confirm(cr, uid, move_ids, context=context)
2877         return True
2878
2879     def action_cancel_draft(self, cr, uid, ids, context=None):
2880         """ Cancels the stock move and change inventory state to draft.
2881         @return: True
2882         """
2883         for inv in self.browse(cr, uid, ids, context=context):
2884             self.pool.get('stock.move').action_cancel(cr, uid, [x.id for x in inv.move_ids], context=context)
2885             self.write(cr, uid, [inv.id], {'state':'draft'}, context=context)
2886         return True
2887
2888     def action_cancel_inventory(self, cr, uid, ids, context=None):
2889         """ Cancels both stock move and inventory
2890         @return: True
2891         """
2892         move_obj = self.pool.get('stock.move')
2893         account_move_obj = self.pool.get('account.move')
2894         for inv in self.browse(cr, uid, ids, context=context):
2895             move_obj.action_cancel(cr, uid, [x.id for x in inv.move_ids], context=context)
2896             for move in inv.move_ids:
2897                  account_move_ids = account_move_obj.search(cr, uid, [('name', '=', move.name)])
2898                  if account_move_ids:
2899                      account_move_data_l = account_move_obj.read(cr, uid, account_move_ids, ['state'], context=context)
2900                      for account_move in account_move_data_l:
2901                          if account_move['state'] == 'posted':
2902                              raise osv.except_osv(_('User Error!'),
2903                                                   _('In order to cancel this inventory, you must first unpost related journal entries.'))
2904                          account_move_obj.unlink(cr, uid, [account_move['id']], context=context)
2905             self.write(cr, uid, [inv.id], {'state': 'cancel'}, context=context)
2906         return True
2907
2908
2909 class stock_inventory_line(osv.osv):
2910     _name = "stock.inventory.line"
2911     _description = "Inventory Line"
2912     _rec_name = "inventory_id"
2913     _columns = {
2914         'inventory_id': fields.many2one('stock.inventory', 'Inventory', ondelete='cascade', select=True),
2915         'location_id': fields.many2one('stock.location', 'Location', required=True),
2916         'product_id': fields.many2one('product.product', 'Product', required=True, select=True),
2917         'product_uom': fields.many2one('product.uom', 'Product Unit of Measure', required=True),
2918         'product_qty': fields.float('Quantity', digits_compute=dp.get_precision('Product Unit of Measure')),
2919         'company_id': fields.related('inventory_id','company_id',type='many2one',relation='res.company',string='Company',store=True, select=True, readonly=True),
2920         'prod_lot_id': fields.many2one('stock.production.lot', 'Serial Number', domain="[('product_id','=',product_id)]"),
2921         'state': fields.related('inventory_id','state',type='char',string='Status',readonly=True),
2922     }
2923
2924     def _default_stock_location(self, cr, uid, context=None):
2925         try:
2926             location_model, location_id = self.pool.get('ir.model.data').get_object_reference(cr, uid, 'stock', 'stock_location_stock')
2927             with tools.mute_logger('openerp.osv.orm'):
2928                 self.pool.get('stock.location').check_access_rule(cr, uid, [location_id], 'read', context=context)
2929         except (orm.except_orm, ValueError):
2930             location_id = False
2931         return location_id
2932
2933     _defaults = {
2934         'location_id': _default_stock_location
2935     }
2936
2937     def on_change_product_id(self, cr, uid, ids, location_id, product, uom=False, to_date=False):
2938         """ Changes UoM and name if product_id changes.
2939         @param location_id: Location id
2940         @param product: Changed product_id
2941         @param uom: UoM product
2942         @return:  Dictionary of changed values
2943         """
2944         if not product:
2945             return {'value': {'product_qty': 0.0, 'product_uom': False, 'prod_lot_id': False}}
2946         obj_product = self.pool.get('product.product').browse(cr, uid, product)
2947         uom = uom or obj_product.uom_id.id
2948         amount = self.pool.get('stock.location')._product_get(cr, uid, location_id, [product], {'uom': uom, 'to_date': to_date, 'compute_child': False})[product]
2949         result = {'product_qty': amount, 'product_uom': uom, 'prod_lot_id': False}
2950         return {'value': result}
2951
2952
2953 #----------------------------------------------------------
2954 # Stock Warehouse
2955 #----------------------------------------------------------
2956 class stock_warehouse(osv.osv):
2957     _name = "stock.warehouse"
2958     _description = "Warehouse"
2959     _columns = {
2960         'name': fields.char('Name', size=128, required=True, select=True),
2961         'company_id': fields.many2one('res.company', 'Company', required=True, select=True),
2962         'partner_id': fields.many2one('res.partner', 'Owner Address'),
2963         'lot_input_id': fields.many2one('stock.location', 'Location Input', required=True, domain=[('usage','<>','view')]),
2964         'lot_stock_id': fields.many2one('stock.location', 'Location Stock', required=True, domain=[('usage','=','internal')]),
2965         'lot_output_id': fields.many2one('stock.location', 'Location Output', required=True, domain=[('usage','<>','view')]),
2966     }
2967
2968     def _default_lot_input_stock_id(self, cr, uid, context=None):
2969         try:
2970             lot_input_stock_model, lot_input_stock_id = self.pool.get('ir.model.data').get_object_reference(cr, uid, 'stock', 'stock_location_stock')
2971             with tools.mute_logger('openerp.osv.orm'):
2972                 self.pool.get('stock.location').check_access_rule(cr, uid, [lot_input_stock_id], 'read', context=context)
2973         except (ValueError, orm.except_orm):
2974             # the user does not have read access on the location or it does not exists
2975             lot_input_stock_id = False
2976         return lot_input_stock_id
2977
2978     def _default_lot_output_id(self, cr, uid, context=None):
2979         try:
2980             lot_output_model, lot_output_id = self.pool.get('ir.model.data').get_object_reference(cr, uid, 'stock', 'stock_location_output')
2981             with tools.mute_logger('openerp.osv.orm'):
2982                 self.pool.get('stock.location').check_access_rule(cr, uid, [lot_output_id], 'read', context=context)
2983         except (ValueError, orm.except_orm):
2984             # the user does not have read access on the location or it does not exists
2985             lot_output_id = False
2986         return lot_output_id
2987
2988     _defaults = {
2989         'company_id': lambda self, cr, uid, c: self.pool.get('res.company')._company_default_get(cr, uid, 'stock.inventory', context=c),
2990         'lot_input_id': _default_lot_input_stock_id,
2991         'lot_stock_id': _default_lot_input_stock_id,
2992         'lot_output_id': _default_lot_output_id,
2993     }
2994
2995
2996 #----------------------------------------------------------
2997 # "Empty" Classes that are used to vary from the original stock.picking  (that are dedicated to the internal pickings)
2998 #   in order to offer a different usability with different views, labels, available reports/wizards...
2999 #----------------------------------------------------------
3000 class stock_picking_in(osv.osv):
3001     _name = "stock.picking.in"
3002     _inherit = "stock.picking"
3003     _table = "stock_picking"
3004     _description = "Incoming Shipments"
3005
3006     def search(self, cr, user, args, offset=0, limit=None, order=None, context=None, count=False):
3007         return self.pool.get('stock.picking').search(cr, user, args, offset, limit, order, context, count)
3008
3009     def read(self, cr, uid, ids, fields=None, context=None, load='_classic_read'):
3010         return self.pool.get('stock.picking').read(cr, uid, ids, fields=fields, context=context, load=load)
3011
3012     def read_group(self, cr, uid, domain, fields, groupby, offset=0, limit=None, context=None, orderby=False):
3013         return self.pool['stock.picking'].read_group(cr, uid, domain, fields, groupby, offset=offset, limit=limit, context=context, orderby=orderby)
3014
3015     def check_access_rights(self, cr, uid, operation, raise_exception=True):
3016         #override in order to redirect the check of acces rights on the stock.picking object
3017         return self.pool.get('stock.picking').check_access_rights(cr, uid, operation, raise_exception=raise_exception)
3018
3019     def check_access_rule(self, cr, uid, ids, operation, context=None):
3020         #override in order to redirect the check of acces rules on the stock.picking object
3021         return self.pool.get('stock.picking').check_access_rule(cr, uid, ids, operation, context=context)
3022
3023     def create_workflow(self, cr, uid, ids, context=None):
3024         # overridden in order to trigger the workflow of stock.picking at the end of create,
3025         # write and unlink operation instead of its own workflow (which is not existing)
3026         return self.pool.get('stock.picking').create_workflow(cr, uid, ids, context=context)
3027
3028     def delete_workflow(self, cr, uid, ids, context=None):
3029         # overridden in order to trigger the workflow of stock.picking at the end of create,
3030         # write and unlink operation instead of its own workflow (which is not existing)
3031         return self.pool.get('stock.picking').delete_workflow(cr, uid, ids, context=context)
3032
3033     def step_workflow(self, cr, uid, ids, context=None):
3034         # overridden in order to trigger the workflow of stock.picking at the end of create,
3035         # write and unlink operation instead of its own workflow (which is not existing)
3036         return self.pool.get('stock.picking').step_workflow(cr, uid, ids, context=context)
3037
3038     def signal_workflow(self, cr, uid, ids, signal, context=None):
3039         # overridden in order to fire the workflow signal on given stock.picking workflow instance
3040         # instead of its own workflow (which is not existing)
3041         return self.pool.get('stock.picking').signal_workflow(cr, uid, ids, signal, context=context)
3042
3043     def message_post(self, *args, **kwargs):
3044         """Post the message on stock.picking to be able to see it in the form view when using the chatter"""
3045         return self.pool.get('stock.picking').message_post(*args, **kwargs)
3046
3047     def message_subscribe(self, *args, **kwargs):
3048         """Send the subscribe action on stock.picking model as it uses _name in request"""
3049         return self.pool.get('stock.picking').message_subscribe(*args, **kwargs)
3050
3051     def message_unsubscribe(self, *args, **kwargs):
3052         """Send the unsubscribe action on stock.picking model to match with subscribe"""
3053         return self.pool.get('stock.picking').message_unsubscribe(*args, **kwargs)
3054
3055     def default_get(self, cr, uid, fields_list, context=None):
3056         # merge defaults from stock.picking with possible defaults defined on stock.picking.in
3057         defaults = self.pool['stock.picking'].default_get(cr, uid, fields_list, context=context)
3058         in_defaults = super(stock_picking_in, self).default_get(cr, uid, fields_list, context=context)
3059         defaults.update(in_defaults)
3060         return defaults
3061
3062     _columns = {
3063         'backorder_id': fields.many2one('stock.picking.in', '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),
3064         'state': fields.selection(
3065             [('draft', 'Draft'),
3066             ('auto', 'Waiting Another Operation'),
3067             ('confirmed', 'Waiting Availability'),
3068             ('assigned', 'Ready to Receive'),
3069             ('done', 'Received'),
3070             ('cancel', 'Cancelled'),],
3071             'Status', readonly=True, select=True,
3072             help="""* Draft: not confirmed yet and will not be scheduled until confirmed\n
3073                  * Waiting Another Operation: waiting for another move to proceed before it becomes automatically available (e.g. in Make-To-Order flows)\n
3074                  * Waiting Availability: still waiting for the availability of products\n
3075                  * Ready to Receive: products reserved, simply waiting for confirmation.\n
3076                  * Received: has been processed, can't be modified or cancelled anymore\n
3077                  * Cancelled: has been cancelled, can't be confirmed anymore"""),
3078     }
3079     _defaults = {
3080         'type': 'in',
3081     }
3082
3083 class stock_picking_out(osv.osv):
3084     _name = "stock.picking.out"
3085     _inherit = "stock.picking"
3086     _table = "stock_picking"
3087     _description = "Delivery Orders"
3088
3089     def search(self, cr, user, args, offset=0, limit=None, order=None, context=None, count=False):
3090         return self.pool.get('stock.picking').search(cr, user, args, offset, limit, order, context, count)
3091
3092     def read(self, cr, uid, ids, fields=None, context=None, load='_classic_read'):
3093         return self.pool.get('stock.picking').read(cr, uid, ids, fields=fields, context=context, load=load)
3094
3095     def read_group(self, cr, uid, domain, fields, groupby, offset=0, limit=None, context=None, orderby=False):
3096         return self.pool['stock.picking'].read_group(cr, uid, domain, fields, groupby, offset=offset, limit=limit, context=context, orderby=orderby)
3097
3098     def check_access_rights(self, cr, uid, operation, raise_exception=True):
3099         #override in order to redirect the check of acces rights on the stock.picking object
3100         return self.pool.get('stock.picking').check_access_rights(cr, uid, operation, raise_exception=raise_exception)
3101
3102     def check_access_rule(self, cr, uid, ids, operation, context=None):
3103         #override in order to redirect the check of acces rules on the stock.picking object
3104         return self.pool.get('stock.picking').check_access_rule(cr, uid, ids, operation, context=context)
3105
3106     def create_workflow(self, cr, uid, ids, context=None):
3107         # overridden in order to trigger the workflow of stock.picking at the end of create,
3108         # write and unlink operation instead of its own workflow (which is not existing)
3109         return self.pool.get('stock.picking').create_workflow(cr, uid, ids, context=context)
3110
3111     def delete_workflow(self, cr, uid, ids, context=None):
3112         # overridden in order to trigger the workflow of stock.picking at the end of create,
3113         # write and unlink operation instead of its own workflow (which is not existing)
3114         return self.pool.get('stock.picking').delete_workflow(cr, uid, ids, context=context)
3115
3116     def step_workflow(self, cr, uid, ids, context=None):
3117         # overridden in order to trigger the workflow of stock.picking at the end of create,
3118         # write and unlink operation instead of its own workflow (which is not existing)
3119         return self.pool.get('stock.picking').step_workflow(cr, uid, ids, context=context)
3120
3121     def signal_workflow(self, cr, uid, ids, signal, context=None):
3122         # overridden in order to fire the workflow signal on given stock.picking workflow instance
3123         # instead of its own workflow (which is not existing)
3124         return self.pool.get('stock.picking').signal_workflow(cr, uid, ids, signal, context=context)
3125
3126     def message_post(self, *args, **kwargs):
3127         """Post the message on stock.picking to be able to see it in the form view when using the chatter"""
3128         return self.pool.get('stock.picking').message_post(*args, **kwargs)
3129
3130     def message_subscribe(self, *args, **kwargs):
3131         """Send the subscribe action on stock.picking model as it uses _name in request"""
3132         return self.pool.get('stock.picking').message_subscribe(*args, **kwargs)
3133
3134     def message_unsubscribe(self, *args, **kwargs):
3135         """Send the unsubscribe action on stock.picking model to match with subscribe"""
3136         return self.pool.get('stock.picking').message_unsubscribe(*args, **kwargs)
3137
3138     def default_get(self, cr, uid, fields_list, context=None):
3139         # merge defaults from stock.picking with possible defaults defined on stock.picking.out
3140         defaults = self.pool['stock.picking'].default_get(cr, uid, fields_list, context=context)
3141         out_defaults = super(stock_picking_out, self).default_get(cr, uid, fields_list, context=context)
3142         defaults.update(out_defaults)
3143         return defaults
3144
3145     _columns = {
3146         'backorder_id': fields.many2one('stock.picking.out', '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),
3147         'state': fields.selection(
3148             [('draft', 'Draft'),
3149             ('auto', 'Waiting Another Operation'),
3150             ('confirmed', 'Waiting Availability'),
3151             ('assigned', 'Ready to Deliver'),
3152             ('done', 'Delivered'),
3153             ('cancel', 'Cancelled'),],
3154             'Status', readonly=True, select=True,
3155             help="""* Draft: not confirmed yet and will not be scheduled until confirmed\n
3156                  * Waiting Another Operation: waiting for another move to proceed before it becomes automatically available (e.g. in Make-To-Order flows)\n
3157                  * Waiting Availability: still waiting for the availability of products\n
3158                  * Ready to Deliver: products reserved, simply waiting for confirmation.\n
3159                  * Delivered: has been processed, can't be modified or cancelled anymore\n
3160                  * Cancelled: has been cancelled, can't be confirmed anymore"""),
3161     }
3162     _defaults = {
3163         'type': 'out',
3164     }
3165
3166 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: