/****************************************************************************** * 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.model; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.Timestamp; import java.util.ArrayList; import java.util.List; import java.util.Properties; import java.util.logging.Level; import org.compiere.util.DB; import org.compiere.util.Util; /** * Dunning Run Model * * @author Jorg Janke * @version $Id: MDunningRun.java,v 1.2 2006/07/30 00:51:03 jjanke Exp $ * * FR 2872010 - Dunning Run for a complete Dunning (not just level) - Developer: Carlos Ruiz - globalqss - Sponsor: Metas */ public class MDunningRun extends X_C_DunningRun { /** * generated serial id */ private static final long serialVersionUID = 6858939271415643483L; /** * UUID based Constructor * @param ctx Context * @param C_DunningRun_UU UUID key * @param trxName Transaction */ public MDunningRun(Properties ctx, String C_DunningRun_UU, String trxName) { super(ctx, C_DunningRun_UU, trxName); if (Util.isEmpty(C_DunningRun_UU)) setInitialDefaults(); } /** * Standard Constructor * @param ctx context * @param C_DunningRun_ID id * @param trxName transaction */ public MDunningRun (Properties ctx, int C_DunningRun_ID, String trxName) { super (ctx, C_DunningRun_ID, trxName); if (C_DunningRun_ID == 0) setInitialDefaults(); } // MDunningRun /** * Set the initial defaults for a new record */ private void setInitialDefaults() { setDunningDate (new Timestamp(System.currentTimeMillis())); setProcessed (false); } /** * Load Constructor * @param ctx context * @param rs result set * @param trxName transaction */ public MDunningRun (Properties ctx, ResultSet rs, String trxName) { super(ctx, rs, trxName); } // MDunningRun private MDunningRunEntry[] m_entries = null; private MDunningLevel[] m_levels = null; /** * Get Dunning Levels * @return array of level */ public MDunningLevel[] getLevels() { if (m_levels != null) return m_levels; List levels; if (getC_DunningLevel_ID() > 0) { // just one level levels = new Query( getCtx(), I_C_DunningLevel.Table_Name, "C_Dunning_ID=? AND C_DunningLevel_ID=?", get_TrxName()) .setOnlyActiveRecords(true) .setParameters(getC_Dunning_ID(), getC_DunningLevel_ID()) .setOrderBy("DaysAfterDue DESC, C_DunningLevel_ID") .list(); } else { // all levels of the dun levels = new Query( getCtx(), MDunningLevel.Table_Name, "C_Dunning_ID=?", get_TrxName()) .setOnlyActiveRecords(true) .setParameters(getC_Dunning_ID()) .setOrderBy("DaysAfterDue DESC, C_DunningLevel_ID") .list(); } m_levels = new MDunningLevel[levels.size()]; levels.toArray (m_levels); return m_levels; } /** * Get Entries * @param requery true to requery * @return entries */ public MDunningRunEntry[] getEntries (boolean requery) { return getEntries(requery, false); } /** * Get Entries * @param requery true to requery * @param onlyInvoices true for entries with invoice only * @return entries */ public MDunningRunEntry[] getEntries (boolean requery, boolean onlyInvoices) { if (m_entries != null && !requery) return m_entries; String sql = "SELECT * FROM C_DunningRunEntry WHERE C_DunningRun_ID=? ORDER BY C_DunningLevel_ID, C_DunningRunEntry_ID"; ArrayList list = new ArrayList(); PreparedStatement pstmt = null; ResultSet rs = null; try { pstmt = DB.prepareStatement (sql, get_TrxName()); pstmt.setInt (1, getC_DunningRun_ID()); rs = pstmt.executeQuery (); while (rs.next ()) { MDunningRunEntry thisEntry = new MDunningRunEntry(getCtx(), rs, get_TrxName()); if (!(onlyInvoices && thisEntry.hasInvoices())) list.add (new MDunningRunEntry(getCtx(), rs, get_TrxName())); } } catch (Exception e) { log.log(Level.SEVERE, sql, e); } finally { DB.close(rs, pstmt); rs = null; pstmt = null; } m_entries = new MDunningRunEntry[list.size ()]; list.toArray (m_entries); return m_entries; } // getEntries /** * Delete all Entries * @param force true to delete also processed records * @return true if deleted */ public boolean deleteEntries(boolean force) { getEntries(true); for (MDunningRunEntry entry : m_entries) { entry.delete(force); } boolean ok = getEntries(true).length == 0; if (ok) m_entries = null; return ok; } // deleteEntries /** * Get/Create Entry for BPartner * @param C_BPartner_ID business partner * @param C_Currency_ID currency * @param SalesRep_ID sales rep * @param C_DunningLevel_ID dunning level * @return entry */ public MDunningRunEntry getEntry (int C_BPartner_ID, int C_Currency_ID, int SalesRep_ID, int C_DunningLevel_ID) { // TODO: Related BP int C_BPartnerRelated_ID = C_BPartner_ID; // getEntries(false); for (int i = 0; i < m_entries.length; i++) { MDunningRunEntry entry = m_entries[i]; if (entry.getC_BPartner_ID() == C_BPartnerRelated_ID && entry.getC_DunningLevel_ID() == C_DunningLevel_ID) return entry; } // New Entry MDunningRunEntry entry = new MDunningRunEntry (this); MBPartner bp = new MBPartner (getCtx(), C_BPartnerRelated_ID, get_TrxName()); entry.setBPartner(bp, true); // AR hardcoded // if (entry.getSalesRep_ID() == 0) entry.setSalesRep_ID (SalesRep_ID); entry.setC_Currency_ID (C_Currency_ID); entry.setC_DunningLevel_ID(C_DunningLevel_ID); // m_entries = null; return entry; } // getEntry } // MDunningRun