############################################################################## # # Copyright (c) 2004 TINY SPRL. (http://tiny.be) All Rights Reserved. # Fabien Pinckaers # # WARNING: This program as such is intended to be used by professional # programmers who take the whole responsability of assessing all potential # consequences resulting from its eventual inadequacies and bugs # End users who are looking for a ready-to-use solution with commercial # garantees and support are strongly adviced to contract a Free Software # Service Company # # This program is Free Software; you can redistribute it and/or # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # 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 General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # ############################################################################## import wizard import netsvc import time from osv import osv def _action_traceability_open(uid, datas, type='move_history_ids', field='tracking_id'): import sql_db cr = sql_db.db.cursor() obj = osv.osv_pools.get('stock.move') ids = obj.search(cr, uid, [(field,'in', datas['ids'])]) cr.execute('select id from ir_ui_view where model=%s and field_parent=%s and type=%s', ('stock.move', type, 'tree')) view_id = cr.fetchone()[0] print view_id, ids cr.close() value = { 'domain': "[('id','in',["+','.join(map(str,ids))+"])]", 'name': 'Open Stock Move', 'view_type': 'tree', 'res_model': 'stock.move', 'field_parent': type, 'view_id': (view_id,'View'), 'type': 'ir.actions.act_window' } return value def _action_traceability_open2(uid, datas, type='move_history_ids2'): return _action_traceability_open(uid, datas, type) def _action_traceability_open3(uid, datas, type='move_history_ids', field='prodlot_id'): return _action_traceability_open(uid, datas, type) def _action_traceability_open4(uid, datas, type='move_history_ids2', field='prodlot_id'): return _action_traceability_open(uid, datas, type) class wiz_journal(wizard.interface): states = { 'init': { 'actions': [], 'result': {'type': 'action', 'action': _action_traceability_open, 'state':'end'} } } wiz_journal('stock.traceability.aval') class wiz_journal2(wizard.interface): states = { 'init': { 'actions': [], 'result': {'type': 'action', 'action': _action_traceability_open2, 'state':'end'} } } wiz_journal2('stock.traceability.amont') class wiz_journal3(wizard.interface): states = { 'init': { 'actions': [], 'result': {'type': 'action', 'action': _action_traceability_open3, 'state':'end'} } } wiz_journal3('stock.traceability.lot.aval') class wiz_journal4(wizard.interface): states = { 'init': { 'actions': [], 'result': {'type': 'action', 'action': _action_traceability_open4, 'state':'end'} } } wiz_journal4('stock.traceability.lot.amont')