/****************************************************************************** * 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.math.BigDecimal; import java.math.RoundingMode; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.Timestamp; import java.util.ArrayList; import java.util.Properties; import java.util.logging.Level; import org.compiere.util.CLogger; import org.compiere.util.DB; import org.compiere.util.Env; import org.compiere.util.TimeUtil; import org.compiere.util.Util; /** * Invoice Payment Schedule Model * * @author Jorg Janke * @version $Id: MInvoicePaySchedule.java,v 1.3 2006/07/30 00:51:03 jjanke Exp $ */ public class MInvoicePaySchedule extends X_C_InvoicePaySchedule { /** * generated serial id */ private static final long serialVersionUID = 4613382619117842586L; /** * Get Payment Schedule of invoice * @param ctx context * @param C_Invoice_ID invoice id (direct) * @param C_InvoicePaySchedule_ID id (indirect) * @param trxName transaction * @return array of schedule */ public static MInvoicePaySchedule[] getInvoicePaySchedule(Properties ctx, int C_Invoice_ID, int C_InvoicePaySchedule_ID, String trxName) { StringBuilder sql = new StringBuilder("SELECT * FROM C_InvoicePaySchedule ips WHERE IsActive='Y' "); if (C_Invoice_ID != 0) sql.append("AND C_Invoice_ID=? "); else sql.append("AND EXISTS (SELECT * FROM C_InvoicePaySchedule x") .append(" WHERE x.C_InvoicePaySchedule_ID=? AND ips.C_Invoice_ID=x.C_Invoice_ID) "); sql.append("ORDER BY DueDate"); // ArrayList list = new ArrayList(); PreparedStatement pstmt = null; ResultSet rs = null; try { pstmt = DB.prepareStatement(sql.toString(), trxName); if (C_Invoice_ID != 0) pstmt.setInt(1, C_Invoice_ID); else pstmt.setInt(1, C_InvoicePaySchedule_ID); rs = pstmt.executeQuery(); while (rs.next()) { list.add (new MInvoicePaySchedule(ctx, rs, trxName)); } } catch (Exception e) { s_log.log(Level.SEVERE, "getInvoicePaySchedule", e); } finally { DB.close(rs, pstmt); rs = null; pstmt = null; } MInvoicePaySchedule[] retValue = new MInvoicePaySchedule[list.size()]; list.toArray(retValue); return retValue; } // getSchedule /** Static Logger */ private static CLogger s_log = CLogger.getCLogger (MInvoicePaySchedule.class); /** * UUID based Constructor * @param ctx Context * @param C_InvoicePaySchedule_UU UUID key * @param trxName Transaction */ public MInvoicePaySchedule(Properties ctx, String C_InvoicePaySchedule_UU, String trxName) { super(ctx, C_InvoicePaySchedule_UU, trxName); if (Util.isEmpty(C_InvoicePaySchedule_UU)) setInitialDefaults(); } /** * Standard Constructor * @param ctx context * @param C_InvoicePaySchedule_ID id * @param trxName transaction */ public MInvoicePaySchedule (Properties ctx, int C_InvoicePaySchedule_ID, String trxName) { super(ctx, C_InvoicePaySchedule_ID, trxName); if (C_InvoicePaySchedule_ID == 0) setInitialDefaults(); } // MInvoicePaySchedule /** * Set the initial defaults for a new record */ private void setInitialDefaults() { setIsValid (false); } /** * Load Constructor * @param ctx context * @param rs result set * @param trxName transaction */ public MInvoicePaySchedule (Properties ctx, ResultSet rs, String trxName) { super(ctx, rs, trxName); } // MInvoicePaySchedule /** * Parent Constructor * @param invoice invoice * @param paySchedule payment schedule */ public MInvoicePaySchedule (MInvoice invoice, MPaySchedule paySchedule) { super (invoice.getCtx(), 0, invoice.get_TrxName()); m_parent = invoice; setClientOrg(invoice); setC_Invoice_ID(invoice.getC_Invoice_ID()); setC_PaySchedule_ID(paySchedule.getC_PaySchedule_ID()); // Amounts int scale = MCurrency.getStdPrecision(getCtx(), invoice.getC_Currency_ID()); BigDecimal due = invoice.getGrandTotal(); if (due.compareTo(Env.ZERO) == 0) { setDueAmt (Env.ZERO); setDiscountAmt (Env.ZERO); setIsValid(false); } else { due = due.multiply(paySchedule.getPercentage()) .divide(Env.ONEHUNDRED, scale, RoundingMode.HALF_UP); setDueAmt (due); BigDecimal discount = due.multiply(paySchedule.getDiscount()) .divide(Env.ONEHUNDRED, scale, RoundingMode.HALF_UP); setDiscountAmt (discount); setIsValid(true); } // Dates Timestamp dueDate = TimeUtil.addDays(invoice.getDateInvoiced(), paySchedule.getNetDays()); setDueDate (dueDate); Timestamp discountDate = TimeUtil.addDays(invoice.getDateInvoiced(), paySchedule.getDiscountDays()); setDiscountDate (discountDate); } // MInvoicePaySchedule /** Parent */ private MInvoice m_parent = null; /** * @return parent invoice */ public MInvoice getParent () { if (m_parent == null) m_parent = new MInvoice (getCtx(), getC_Invoice_ID(), get_TrxName()); return m_parent; } // getParent /** * @param parent The parent to set. */ public void setParent (MInvoice parent) { m_parent = parent; } // setParent /** * String Representation * @return info */ @Override public String toString() { StringBuilder sb = new StringBuilder("MInvoicePaySchedule["); sb.append(get_ID()).append("-Due=").append(getDueDate()).append("/").append(getDueAmt()) .append(";Discount=").append(getDiscountDate()).append("/").append(getDiscountAmt()) .append("]"); return sb.toString(); } // toString @Override protected boolean beforeSave (boolean newRecord) { // Reset IsValid to false after change of DueAmt. if (is_ValueChanged("DueAmt")) { if (log.isLoggable(Level.FINE)) log.fine("beforeSave"); setIsValid(false); } return true; } // beforeSave @Override protected boolean afterSave (boolean newRecord, boolean success) { if (!success) return success; if (newRecord || is_ValueChanged("DueAmt") || is_ValueChanged("IsActive")) { // Validate pay schedule if (log.isLoggable(Level.FINE)) log.fine("afterSave"); getParent(); m_parent.validatePaySchedule(); m_parent.saveEx(); } return success; } // afterSave @Override protected boolean afterDelete(boolean success) { if (!success) return success; if (log.isLoggable(Level.FINE)) log.fine("afterDelete"); // Load m_parent and validate pay schedule getParent(); m_parent.validatePaySchedule(); m_parent.saveEx(); return success; } } // MInvoicePaySchedule