/*********************************************************************** * This file is part of iDempiere ERP Open Source * * http://www.idempiere.org * * * * Copyright (C) Contributors * * * * 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., 51 Franklin Street, Fifth Floor, Boston, * * MA 02110-1301, USA. * **********************************************************************/ package org.adempiere.process; import java.sql.Timestamp; import org.compiere.model.MPackage; import org.compiere.model.MProcessPara; import org.compiere.model.MShippingTransaction; import org.compiere.process.ProcessInfoLog; import org.compiere.process.ProcessInfoParameter; import org.compiere.process.SvrProcess; /** * Shipping rate inquiry for shipment package (M_Package) */ @org.adempiere.base.annotation.Process public class RateInquiryProcess extends SvrProcess { private boolean p_IsPriviledgedRate = false; @Override 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(MShippingTransaction.COLUMNNAME_IsPriviledgedRate)) p_IsPriviledgedRate = ((String)para[i].getParameter()).equals("Y"); else MProcessPara.validateUnknownParameter(getProcessInfo().getAD_Process_ID(), para[i]); } } @Override protected String doIt() throws Exception { MPackage m_package = new MPackage(getCtx(), getRecord_ID(), get_TrxName()); boolean ok = m_package.processOnline(MShippingTransaction.ACTION_RateInquiry, p_IsPriviledgedRate); m_package.saveEx(); if (!ok) { getProcessInfo().setError(true); getProcessInfo().addLog(new ProcessInfoLog(getProcessInfo().getAD_Process_ID(), new Timestamp(System.currentTimeMillis()), null, m_package.getErrorMessage())); return m_package.getErrorMessage(); } getProcessInfo().addLog(new ProcessInfoLog(getProcessInfo().getAD_Process_ID(), new Timestamp(System.currentTimeMillis()), null, m_package.getRateInquiryMessage())); return m_package.getRateInquiryMessage(); } }