/****************************************************************************** * 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.sql.Timestamp; import java.util.ArrayList; import java.util.List; import java.util.logging.Level; import org.adempiere.exceptions.AdempiereException; import org.compiere.model.MAllocationHdr; import org.compiere.model.MProcessPara; import org.compiere.model.POResultSet; import org.compiere.model.Query; import org.compiere.util.AdempiereUserError; import org.compiere.util.Msg; import org.compiere.util.Trx; /** * Reset (delete) Allocations * * @author Jorg Janke * @version $Id: AllocationReset.java,v 1.2 2006/07/30 00:51:01 jjanke Exp $ */ @org.adempiere.base.annotation.Process public class AllocationReset extends SvrProcess { /** BP Group */ private int p_C_BP_Group_ID = 0; /** BPartner */ private int p_C_BPartner_ID = 0; /** Date Acct From */ private Timestamp p_DateAcct_From = null; /** Date Acct To */ private Timestamp p_DateAcct_To = null; /** Allocation directly */ private int p_C_AllocationHdr_ID = 0; /** All Allocations */ private boolean p_AllAllocations = false; /** Transaction */ private Trx m_trx = null; /** * Prepare - e.g., get Parameters. */ protected void prepare() { ProcessInfoParameter[] para = getParameter(); for (int i = 0; i < para.length; i++) { if (log.isLoggable(Level.FINE)) log.fine("prepare - " + para[i]); String name = para[i].getParameterName(); if (para[i].getParameter() == null && para[i].getParameter_To() == null) ; else if (name.equals("C_BP_Group_ID")) p_C_BP_Group_ID = para[i].getParameterAsInt(); else if (name.equals("C_BPartner_ID")) p_C_BPartner_ID = para[i].getParameterAsInt(); else if (name.equals("C_AllocationHdr_ID")) p_C_AllocationHdr_ID = para[i].getParameterAsInt(); else if (name.equals("DateAcct")) { p_DateAcct_From = (Timestamp)para[i].getParameter(); p_DateAcct_To = (Timestamp)para[i].getParameter_To(); } else if (name.equals("AllAllocations")) p_AllAllocations = "Y".equals(para[i].getParameter()); else MProcessPara.validateUnknownParameter(getProcessInfo().getAD_Process_ID(), para[i]); } if ( !p_AllAllocations && getTable_ID() == MAllocationHdr.Table_ID && getRecord_ID() > 0 ) { p_C_AllocationHdr_ID = getRecord_ID(); } } // prepare /** * Process * @return message * @throws Exception */ protected String doIt() throws Exception { if (log.isLoggable(Level.INFO)) log.info ("C_BP_Group_ID=" + p_C_BP_Group_ID + ", C_BPartner_ID=" + p_C_BPartner_ID + ", DateAcct= " + p_DateAcct_From + " - " + p_DateAcct_To + ", C_AllocationHdr_ID=" + p_C_AllocationHdr_ID + ", AllAllocations=" + p_AllAllocations); if (p_C_AllocationHdr_ID == 0 && ! p_AllAllocations) throw new AdempiereUserError(Msg.parseTranslation(getCtx(), "@Mandatory@: @C_AllocationHdr_ID@")); m_trx = Trx.get(Trx.createTrxName("AllocReset"), true); m_trx.setDisplayName(getClass().getName()+"_doIt"); int count = 0; if (p_C_AllocationHdr_ID != 0) { try { MAllocationHdr hdr = new MAllocationHdr(getCtx(), p_C_AllocationHdr_ID, m_trx.getTrxName()); if (delete(hdr)) count++; else throw new AdempiereException("Cannot delete"); } finally { m_trx.close(); } StringBuilder msgreturn = new StringBuilder("@Deleted@ #").append(count); return msgreturn.toString(); } List params = new ArrayList(); StringBuilder where = new StringBuilder("EXISTS (SELECT * FROM C_AllocationLine al WHERE C_AllocationHdr.C_AllocationHdr_ID=al.C_AllocationHdr_ID"); if (p_C_BPartner_ID != 0) { where.append(" AND al.C_BPartner_ID=?"); params.add(p_C_BPartner_ID); } else if (p_C_BP_Group_ID != 0) { where.append(" AND EXISTS (SELECT * FROM C_BPartner bp WHERE bp.C_BPartner_ID=al.C_BPartner_ID AND bp.C_BP_Group_ID=?)"); params.add(p_C_BP_Group_ID); } else { where.append(" AND AD_Client_ID=?"); params.add(getAD_Client_ID()); } if (p_DateAcct_From != null) { where.append(" AND TRUNC(C_AllocationHdr.DateAcct) >= ?"); params.add(p_DateAcct_From); } if (p_DateAcct_To != null) { where.append(" AND TRUNC(C_AllocationHdr.DateAcct) <= ?"); params.add(p_DateAcct_To); } // Do not delete Cash Trx where.append(" AND al.C_CashLine_ID IS NULL)"); // Open Period where.append(" AND EXISTS (SELECT * FROM C_Period p") .append(" INNER JOIN C_PeriodControl pc ON (p.C_Period_ID=pc.C_Period_ID AND pc.DocBaseType='CMA') ") .append("WHERE C_AllocationHdr.DateAcct BETWEEN p.StartDate AND p.EndDate)"); try (POResultSet pors = new Query(getCtx(), MAllocationHdr.Table_Name, where.toString(), get_TrxName()) .setClient_ID() .setParameters(params) .scroll()) { while (pors.hasNext()) { MAllocationHdr hdr = pors.next(); if (delete(hdr)) count++; } } StringBuilder msgreturn = new StringBuilder("@Deleted@ #").append(count); return msgreturn.toString(); } // doIt private boolean delete(MAllocationHdr hdr) { // m_trx.start(); boolean success = false; if (hdr.delete(true, m_trx.getTrxName())) { if (log.isLoggable(Level.FINE)) log.fine(hdr.toString()); success = true; } if (success) success = m_trx.commit(); else m_trx.rollback(); return success; } // delete } // AllocationReset