# -*- encoding: utf-8 -*- ############################################################################## # # Copyright (c) 2007 TINY SPRL. (http://tiny.be) All Rights Reserved. # # 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 pooler import netsvc import time def _get_default(obj, cr, uid, data, context=None): pool = pooler.get_pool(cr.dbname) product = pool.get('product.product').browse(cr, uid, data['id'], context) return {'product_id': product.id, 'uom_id':product.uom_id.id, 'qty':1.0} def make_procurement(obj, cr, uid, data, context=None): '''Create procurement''' pool = pooler.get_pool(cr.dbname) wh = pool.get('stock.warehouse').browse(cr, uid, data['form']['warehouse_id'], context) user = pool.get('res.users').browse(cr, uid, uid, context) procure_id = pool.get('mrp.procurement').create(cr, uid, { 'name':'INT:'+str(user.login), 'date_planned':data['form']['date_planned'], 'product_id':data['form']['product_id'], 'product_qty':data['form']['qty'], 'product_uom':data['form']['uom_id'], 'location_id':wh.lot_stock_id.id, 'procure_method':'make_to_order', }, context=context) wf_service = netsvc.LocalService("workflow") wf_service.trg_validate(uid, 'mrp.procurement', procure_id, 'button_confirm', cr) return {} class MakeProcurement(wizard.interface): '''Wizard that create a procurement from a product form''' done_form = """