# -*- coding: utf-8 -*- ############################################################################## # # OpenERP, Open Source Management Solution # Copyright (C) 2004-2010 Tiny SPRL (). # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # 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 . # ############################################################################## from osv import fields, osv from tools.translate import _ class stock_move_track(osv.osv_memory): _name = "stock.move.track" _description = "Track moves" _columns = { '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={}): """ 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 {} 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), 'location_id': fields.many2one('stock.location', 'Location', required=True) } 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 """ 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) 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}) return res def do_move_consume(self, cr, uid, ids, context={}): """ 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: """ move_obj = self.pool.get('stock.move') move_ids = context['active_ids'] 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 {} stock_move_consume() class stock_move_scrap(osv.osv_memory): _name = "stock.move.scrap" _description = "Scrap Products" _inherit = "stock.move.consume" _defaults = { 'location_id': lambda *x: False } 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 """ 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={}): """ To move scraped 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: """ move_obj = self.pool.get('stock.move') move_ids = context['active_ids'] for data in self.read(cr, uid, ids): move_obj.action_scrap(cr, uid, move_ids, data['product_qty'], data['location_id'], context=context) return {} 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 """ res = super(split_in_production_lot, self).default_get(cr, uid, fields, context=context) 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}) return res _columns = { 'qty': fields.integer('Quantity'), 'product_id': fields.many2one('product.product', 'Product', required=True, select=True), 'product_uom': fields.many2one('product.uom', 'Product UOM'), 'line_ids': fields.one2many('stock.move.split.lines', 'lot_id', 'Lots Number'), 'line_exist_ids': fields.one2many('stock.move.split.lines.exist', 'lot_id', 'Lots Existing Numbers'), 'use_exist' : fields.boolean('Existing Lot'), } 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: """ self.split(cr, uid, ids, context.get('active_ids'), context=context) return {} 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: """ prodlot_obj = self.pool.get('stock.production.lot') ir_sequence_obj = self.pool.get('ir.sequence') 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): move_qty = move.product_qty quantity_rest = move.product_qty uos_qty_rest = move.product_uos_qty 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: quantity_rest = quantity break default_val = { 'product_qty': quantity, 'product_uos_qty': uos_qty, 'state': move.state } if quantity_rest > 0: current_move = move_obj.copy(cr, uid, move.id, default_val) new_move.append(current_move) if quantity_rest == 0: current_move = move.id prodlot_id = False if data.use_exist: prodlot_id = line.prodlot_id.id if not prodlot_id: prodlot_id = prodlot_obj.create(cr, uid, { 'name': line.name, 'product_id': move.product_id.id}, context=context) print 'write', current_move, {'prodlot_id': prodlot_id, 'state':move.state} move_obj.write(cr, uid, [current_move], {'prodlot_id': prodlot_id, 'state':move.state}) update_val = {} if quantity_rest > 0: update_val['product_qty'] = quantity_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.integer('Quantity'), 'lot_id': fields.many2one('stock.move.split', 'Lot'), 'prodlot_id': fields.many2one('stock.production.lot', 'Production Lot'), } _defaults = { 'quantity': lambda *x: 1, } 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('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', } stock_move_split_lines()