[MERGE] stock : Merged Valencia's branch for prodlot warning. (Case:6001)
[odoo/odoo.git] / addons / stock / wizard / stock_move.py
index 548375d..cebb62d 100644 (file)
@@ -1,6 +1,6 @@
 # -*- coding: utf-8 -*-
 ##############################################################################
-#    
+#
 #    OpenERP, Open Source Management Solution
 #    Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>).
 #
 #    GNU Affero General Public License for more details.
 #
 #    You should have received a copy of the GNU Affero General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.     
+#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 ##############################################################################
 
 from osv import fields, osv
-from tools.translate import _
+
+import decimal_precision as dp
 
 class stock_move_track(osv.osv_memory):
     _name = "stock.move.track"
     _description = "Track moves"
-    
+
     _columns = {
-        'tracking_prefix': fields.char('Tracking prefix', size=64), 
+        'tracking_prefix': fields.char('Tracking prefix', size=64),
         'quantity': fields.float("Quantity per lot")
-              }
+    }
 
     _defaults = {
         'quantity': lambda *x: 1
-                 }
-    
-    def track_lines(self, cr, uid, ids, context={}):
+    }
+
+    def track_lines(self, cr, uid, ids, context=None):
+        """ To track stock moves lines
+        @param self: The object pointer.
+        @param cr: A database cursor
+        @param uid: ID of the user currently logged in
+        @param ids: An ID or list of IDs if we want more than one
+        @param context: A standard dictionary
+        @return:
+        """
         datas = self.read(cr, uid, ids)[0]
         move_obj = self.pool.get('stock.move')
         move_obj._track_lines(cr, uid, context['active_id'], datas, context=context)
-        return {}
+        return {'type': 'ir.actions.act_window_close'}
 
 stock_move_track()
 
 class stock_move_consume(osv.osv_memory):
     _name = "stock.move.consume"
     _description = "Consume Products"
-    
+
     _columns = {
-        'product_id': fields.many2one('product.product', 'Product', required=True, select=True), 
-        'product_qty': fields.float('Quantity', required=True), 
-        'product_uom': fields.many2one('product.uom', 'Product UOM', required=True), 
+        'product_id': fields.many2one('product.product', 'Product', required=True, select=True),
+        'product_qty': fields.float('Quantity', required=True),
+        'product_uom': fields.many2one('product.uom', 'Product UOM', required=True),
         'location_id': fields.many2one('stock.location', 'Location', required=True)
-              }
+    }
 
-    def _get_product_id(self, cr, uid, context):
-        move = self.pool.get('stock.move').browse(cr, uid, context['active_id'], context=context)
-        return move.product_id.id
-    
-    def _get_product_qty(self, cr, uid, context):
+    def default_get(self, cr, uid, fields, context=None):
+        """ Get default values
+        @param self: The object pointer.
+        @param cr: A database cursor
+        @param uid: ID of the user currently logged in
+        @param fields: List of fields for default value
+        @param context: A standard dictionary
+        @return: default values of fields
+        """
+        if context is None:
+            context = {}
+        res = super(stock_move_consume, self).default_get(cr, uid, fields, context=context)
         move = self.pool.get('stock.move').browse(cr, uid, context['active_id'], context=context)
-        return move.product_qty
-    
-    def _get_product_uom(self, cr, uid, context):
-        move = self.pool.get('stock.move').browse(cr, uid, context['active_id'], context=context)
-        return move.product_uom.id
-    
-    def _get_location_id(self, cr, uid, context):
-        move = self.pool.get('stock.move').browse(cr, uid, context['active_id'], context=context)
-        return move.location_id.id
-    
-    _defaults = {
-                 'product_id': _get_product_id, 
-                 'product_qty': _get_product_qty, 
-                 'product_uom': _get_product_uom, 
-                 'location_id': _get_location_id
-                 }
+        if 'product_id' in fields:
+            res.update({'product_id': move.product_id.id})
+        if 'product_uom' in fields:
+            res.update({'product_uom': move.product_uom.id})
+        if 'product_qty' in fields:
+            res.update({'product_qty': move.product_qty})
+        if 'location_id' in fields:
+            res.update({'location_id': move.location_id.id})
 
-    def do_move_consume(self, cr, uid, ids, context={}):
+        return res
+
+    def do_move_consume(self, cr, uid, ids, context=None):
+        """ To move consumed products
+        @param self: The object pointer.
+        @param cr: A database cursor
+        @param uid: ID of the user currently logged in
+        @param ids: the ID or list of IDs if we want more than one
+        @param context: A standard dictionary
+        @return:
+        """
+        if context is None:
+            context = {}
         move_obj = self.pool.get('stock.move')
         move_ids = context['active_ids']
-        for data in self.read(cr, uid, ids):            
-            move_obj.consume_moves(cr, uid, move_ids, 
-                             data['product_qty'], data['location_id'], 
+        for data in self.read(cr, uid, ids):
+            move_obj.action_consume(cr, uid, move_ids,
+                             data['product_qty'], data['location_id'],
                              context=context)
-        return {}
+        return {'type': 'ir.actions.act_window_close'}
 
 stock_move_consume()
 
@@ -93,19 +113,59 @@ class stock_move_scrap(osv.osv_memory):
     _name = "stock.move.scrap"
     _description = "Scrap Products"
     _inherit = "stock.move.consume"
-    
+
     _defaults = {
-                 'location_id': lambda *x: False
+        'location_id': lambda *x: False
     }
 
-    def move_scrap(self, cr, uid, ids, context={}):
-        move_obj = self.pool.get('stock.move')        
+    def default_get(self, cr, uid, fields, context=None):
+        """ Get default values
+        @param self: The object pointer.
+        @param cr: A database cursor
+        @param uid: ID of the user currently logged in
+        @param fields: List of fields for default value
+        @param context: A standard dictionary
+        @return: default values of fields
+        """
+        if context is None:
+            context = {}
+        res = super(stock_move_consume, self).default_get(cr, uid, fields, context=context)
+        move = self.pool.get('stock.move').browse(cr, uid, context['active_id'], context=context)
+        location_obj = self.pool.get('stock.location')
+        scrpaed_location_ids = location_obj.search(cr, uid, [('scrap_location','=',True)])
+
+        if 'product_id' in fields:
+            res.update({'product_id': move.product_id.id})
+        if 'product_uom' in fields:
+            res.update({'product_uom': move.product_uom.id})
+        if 'product_qty' in fields:
+            res.update({'product_qty': move.product_qty})
+        if 'location_id' in fields:
+            if scrpaed_location_ids:
+                res.update({'location_id': scrpaed_location_ids[0]})
+            else:
+                res.update({'location_id': False})
+
+        return res
+
+    def move_scrap(self, cr, uid, ids, context=None):
+        """ To move scrapped products
+        @param self: The object pointer.
+        @param cr: A database cursor
+        @param uid: ID of the user currently logged in
+        @param ids: the ID or list of IDs if we want more than one
+        @param context: A standard dictionary
+        @return:
+        """
+        if context is None:
+            context = {}
+        move_obj = self.pool.get('stock.move')
         move_ids = context['active_ids']
         for data in self.read(cr, uid, ids):
-            move_obj.scrap_moves(cr, uid, move_ids, 
-                             data['product_qty'], data['location_id'], 
+            move_obj.action_scrap(cr, uid, move_ids,
+                             data['product_qty'], data['location_id'],
                              context=context)
-        return {}
+        return {'type': 'ir.actions.act_window_close'}
 
 stock_move_scrap()
 
@@ -113,94 +173,161 @@ stock_move_scrap()
 class split_in_production_lot(osv.osv_memory):
     _name = "stock.move.split"
     _description = "Split in Production lots"
-    
+
+    def default_get(self, cr, uid, fields, context=None):
+        """ Get default values
+        @param self: The object pointer.
+        @param cr: A database cursor
+        @param uid: ID of the user currently logged in
+        @param fields: List of fields for default value
+        @param context: A standard dictionary
+        @return: Default values of fields
+        """
+        if context is None:
+            context = {}
+        res = super(split_in_production_lot, self).default_get(cr, uid, fields, context=context)
+        if context.get('active_id'):
+            move = self.pool.get('stock.move').browse(cr, uid, context['active_id'], context=context)
+            if 'product_id' in fields:
+                res.update({'product_id': move.product_id.id})
+            if 'product_uom' in fields:
+                res.update({'product_uom': move.product_uom.id})
+            if 'qty' in fields:
+                res.update({'qty': move.product_qty})
+            if 'use_exist' in fields:
+                res.update({'use_exist': (move.picking_id and move.picking_id.type=='out' and True) or False})
+            if 'location_id' in fields:
+                res.update({'location_id': move.location_id.id})
+        return res
+
     _columns = {
+        'qty': fields.float('Quantity', digits_compute=dp.get_precision('Product UoM')),
         'product_id': fields.many2one('product.product', 'Product', required=True, select=True),
-        'line_ids': fields.one2many('stock.move.split.lines', 'lot_id', 'Lots Number')
+        'product_uom': fields.many2one('product.uom', 'UoM'),
+        'line_ids': fields.one2many('stock.move.split.lines', 'lot_id', 'Production Lots'),
+        'line_exist_ids': fields.one2many('stock.move.split.lines.exist', 'lot_id', 'Production Lots'),
+        'use_exist' : fields.boolean('Existing Lots', help="Check this option to select existing lots in the list below, otherwise you should enter new ones line by line."),
+        'location_id': fields.many2one('stock.location', 'Source Location')
      }
-    
-    def _get_product_id(self, cr, uid, context):
-        move = self.pool.get('stock.move').browse(cr, uid, context['active_id'], context=context)
-        return move.product_id.id
-    
-    _defaults = {
-                 'product_id': _get_product_id, 
-                 }
 
     def split_lot(self, cr, uid, ids, context=None):
+        """ To split a lot
+        @param self: The object pointer.
+        @param cr: A database cursor
+        @param uid: ID of the user currently logged in
+        @param ids: An ID or list of IDs if we want more than one
+        @param context: A standard dictionary
+        @return:
+        """
+        if context is None:
+            context = {}
         self.split(cr, uid, ids, context.get('active_ids'), context=context)
-        return {}
+        return {'type': 'ir.actions.act_window_close'}
 
     def split(self, cr, uid, ids, move_ids, context=None):
+        """ To split stock moves into production lot
+        @param self: The object pointer.
+        @param cr: A database cursor
+        @param uid: ID of the user currently logged in
+        @param ids: the ID or list of IDs if we want more than one
+        @param move_ids: the ID or list of IDs of stock move we want to split
+        @param context: A standard dictionary
+        @return:
+        """
+        if context is None:
+            context = {}
+        inventory_id = context.get('inventory_id', False)
         prodlot_obj = self.pool.get('stock.production.lot')
-        ir_sequence_obj = self.pool.get('ir.sequence')
+        inventory_obj = self.pool.get('stock.inventory')
         move_obj = self.pool.get('stock.move')
-        new_move = []        
-        for data in self.browse(cr, uid, ids):
-            for move in move_obj.browse(cr, uid, move_ids):
+        new_move = []
+        for data in self.browse(cr, uid, ids, context=context):
+            for move in move_obj.browse(cr, uid, move_ids, context=context):
                 move_qty = move.product_qty
                 quantity_rest = move.product_qty
                 uos_qty_rest = move.product_uos_qty
-                new_move = []                            
-                for line in data.line_ids:
+                new_move = []
+                if data.use_exist:
+                    lines = [l for l in data.line_exist_ids if l]
+                else:
+                    lines = [l for l in data.line_ids if l]
+                for line in lines:
                     quantity = line.quantity
-                    
-
                     if quantity <= 0 or move_qty == 0:
                         continue
                     quantity_rest -= quantity
                     uos_qty = quantity / move_qty * move.product_uos_qty
                     uos_qty_rest = quantity_rest / move_qty * move.product_uos_qty
-                    if quantity_rest <= 0:
+                    if quantity_rest < 0:
                         quantity_rest = quantity
                         break
                     default_val = {
-                        'product_qty': quantity, 
-                        'product_uos_qty': uos_qty, 
+                        'product_qty': quantity,
+                        'product_uos_qty': uos_qty,
                         'state': move.state
                     }
-                    current_move = move_obj.copy(cr, uid, move.id, default_val)
-                    new_move.append(current_move)
+                    if quantity_rest > 0:
+                        current_move = move_obj.copy(cr, uid, move.id, default_val, context=context)
+                        if inventory_id and current_move:
+                            inventory_obj.write(cr, uid, inventory_id, {'move_ids': [(4, current_move)]}, context=context)
+                        new_move.append(current_move)
+
+                    if quantity_rest == 0:
+                        current_move = move.id
                     prodlot_id = False
-                    if line.use_exist and line.name:
-                        prodlot_id = prodlot_obj.search(cr, uid, [('prefix','=',line.name),('product_id','=',data.product_id.id)])
-                        if prodlot_id:
-                            prodlot_id = prodlot_id[0]                    
+                    if data.use_exist:
+                        prodlot_id = line.prodlot_id.id
                     if not prodlot_id:
-                        sequence = ir_sequence_obj.get(cr, uid, 'stock.lot.serial')
-                        prodlot_id = prodlot_obj.create(cr, uid, {'name': sequence, 'prefix' : line.name}, 
-                                                 {'product_id': move.product_id.id})                    
-                    move_obj.write(cr, uid, [current_move], {'prodlot_id': prodlot_id})
-                    prodlot = prodlot_obj.browse(cr, uid, prodlot_id) 
-                    ref = '%d' % (current_move)
-                    if prodlot.ref:
-                        ref = '%s, %s' % (prodlot.ref, ref) 
-                    prodlot_obj.write(cr, uid, [prodlot_id], {'ref': ref})
-                    
+                        prodlot_id = prodlot_obj.create(cr, uid, {
+                            'name': line.name,
+                            'product_id': move.product_id.id},
+                        context=context)
+
+                    move_obj.write(cr, uid, [current_move], {'prodlot_id': prodlot_id, 'state':move.state})
+
                     update_val = {}
-                    if quantity_rest > 0:                        
+                    if quantity_rest > 0:
                         update_val['product_qty'] = quantity_rest
-                        update_val['product_uos_qty'] = uos_qty_rest                          
+                        update_val['product_uos_qty'] = uos_qty_rest
+                        update_val['state'] = move.state
                         move_obj.write(cr, uid, [move.id], update_val)
 
-                    
         return new_move
+
 split_in_production_lot()
 
+class stock_move_split_lines_exist(osv.osv_memory):
+    _name = "stock.move.split.lines.exist"
+    _description = "Exist Split lines"
+    _columns = {
+        'name': fields.char('Tracking serial', size=64),
+        'quantity': fields.float('Quantity', digits_compute=dp.get_precision('Product UoM')),
+        'lot_id': fields.many2one('stock.move.split', 'Lot'),
+        'prodlot_id': fields.many2one('stock.production.lot', 'Production Lot'),
+    }
+    _defaults = {
+        'quantity': lambda *x: 1.00,
+    }
+
+    def onchange_lot_id(self, cr, uid, ids, prodlot_id=False, product_qty=False,
+                        loc_id=False, product_id=False, uom_id=False):
+        return self.pool.get('stock.move').onchange_lot_id(cr, uid, [], prodlot_id, product_qty,
+                        loc_id, product_id, uom_id)
+
+stock_move_split_lines_exist()
+
 class stock_move_split_lines(osv.osv_memory):
     _name = "stock.move.split.lines"
     _description = "Split lines"
-    
     _columns = {
-        'name': fields.char('Tracking serial', size=64), 
-        'quantity': fields.integer('Quantity'), 
-        'use_exist' : fields.boolean('Use Exist'),
+        'name': fields.char('Tracking serial', size=64),
+        'quantity': fields.float('Quantity', digits_compute=dp.get_precision('Product UoM')),
+        'use_exist' : fields.boolean('Existing Lot'),
         'lot_id': fields.many2one('stock.move.split', 'Lot'),
         'action': fields.selection([('split','Split'),('keepinone','Keep in one lot')],'Action'),
     }
     _defaults = {
-        'quantity': lambda *x: 1,
-        'action' : lambda *x: 'split', 
+        'quantity': lambda *x: 1.00,
+        'action' : lambda *x: 'split',
     }
-
 stock_move_split_lines()