/****************************************************************************** * Product: Adempiere ERP & CRM Smart Business Solution * * Copyright (C) 1999-2006 ComPiere, Inc. All Rights Reserved. * * This program is free software; you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. 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. * * For the text or an alternative of this public license, you may reach us * * ComPiere, Inc., 2620 Augustine Dr. #245, Santa Clara, CA 95054, USA * * or via info@compiere.org or http://www.compiere.org/license.html * *****************************************************************************/ package org.compiere.process; import java.util.logging.Level; import org.compiere.model.MInOut; import org.compiere.model.MPackage; import org.compiere.model.MProcessPara; import org.compiere.model.MShipper; /** * Create Package from Shipment for Shipper * * @author Jorg Janke * @version $Id: PackageCreate.java,v 1.2 2006/07/30 00:51:01 jjanke Exp $ */ @org.adempiere.base.annotation.Process public class PackageCreate extends SvrProcess { /** Shipper */ private int p_M_Shipper_ID = 0; /** Parent */ private int p_M_InOut_ID = 0; /** No of Packages */ private int p_no_of_packages = 0; /** * Prepare - e.g., get Parameters. */ protected void prepare() { ProcessInfoParameter[] para = getParameter(); for (int i = 0; i < para.length; i++) { String name = para[i].getParameterName(); if (para[i].getParameter() == null) ; else if (name.equals("M_Shipper_ID")) p_M_Shipper_ID = para[i].getParameterAsInt(); else if (name.equals("M_InOut_ID")) // BF [ 1754889 ] Create Package error p_M_InOut_ID = para[i].getParameterAsInt(); else if (name.equals("NoOfPackages")) p_no_of_packages = para[i].getParameterAsInt(); else MProcessPara.validateUnknownParameter(getProcessInfo().getAD_Process_ID(), para[i]); } } // prepare /** * Process * @return message * @throws Exception */ protected String doIt () throws Exception { if (log.isLoggable(Level.INFO)) log.info("doIt - M_InOut_ID=" + p_M_InOut_ID + ", M_Shipper_ID=" + p_M_Shipper_ID); if (p_M_InOut_ID == 0) throw new IllegalArgumentException("No Shipment"); if (p_M_Shipper_ID == 0) throw new IllegalArgumentException("No Shipper"); MInOut shipment = new MInOut (getCtx(), p_M_InOut_ID, null); if (shipment.get_ID() != p_M_InOut_ID) throw new IllegalArgumentException("Cannot find Shipment ID=" + p_M_InOut_ID); MShipper shipper = new MShipper (getCtx(), p_M_Shipper_ID, get_TrxName()); if (shipper.get_ID() != p_M_Shipper_ID) throw new IllegalArgumentException("Cannot find Shipper ID=" + p_M_InOut_ID); // if (p_no_of_packages == 0) p_no_of_packages = shipment.getNoPackages(); if (p_no_of_packages <= 0) throw new IllegalArgumentException("No of Packages should not be 0"); StringBuilder info = new StringBuilder(); if (p_no_of_packages == 1) { MPackage pack = MPackage.create (shipment, shipper, null); info.append(pack.getDocumentNo()); } else { for (int i = 0; i < p_no_of_packages; i++) { MPackage pack = MPackage.createPackage (shipment, shipper, null); if (i != 0) info.append(", "); info.append(pack.getDocumentNo()); } } return info.toString(); } // doIt } // PackageCreate