/****************************************************************************** * 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.ResultSet; import java.util.Properties; import org.compiere.util.CLogger; import org.compiere.util.DB; /** * Cash Plan Line model * * @author Carlos Ruiz - GlobalQSS */ public class MCashPlanLine extends X_C_CashPlanLine { /** * generated serial id */ private static final long serialVersionUID = -5535407146793681944L; /** Logger */ @SuppressWarnings("unused") private static CLogger s_log = CLogger.getCLogger(MCashPlanLine.class); /** * UUID based Constructor * @param ctx Context * @param C_CashPlanLine_UU UUID key * @param trxName Transaction */ public MCashPlanLine(Properties ctx, String C_CashPlanLine_UU, String trxName) { super(ctx, C_CashPlanLine_UU, trxName); } /** * Standard Constructor * @param ctx context * @param C_CashPlanLine_ID id * @param trxName transaction */ public MCashPlanLine (Properties ctx, int C_CashPlanLine_ID, String trxName) { super (ctx, C_CashPlanLine_ID, trxName); } // MCashPlanLine /** * Load Constructor * @param ctx ctx * @param rs result set * @param trxName transaction */ public MCashPlanLine (Properties ctx, ResultSet rs, String trxName) { super(ctx, rs, trxName); } // MCashPlanLine @Override protected boolean beforeSave (boolean newRecord) { // Reset M_Product_ID to 0 if this is a Charge line if (getC_Charge_ID() != 0 && getM_Product_ID() != 0) setM_Product_ID(0); // Set Line No if (getLine() == 0) { String sql = "SELECT COALESCE(MAX(Line),0)+10 FROM C_CashPlanLine WHERE C_CashPlan_ID=?"; int ii = DB.getSQLValue (get_TrxName(), sql, getC_CashPlan_ID()); setLine (ii); } return true; } // beforeSave @Override protected boolean afterSave (boolean newRecord, boolean success) { if (!success) return success; return updateHeader(); } // afterSave /** * Update Header (C_CashPlan) * @return true if header updated */ protected boolean updateHeader() { // Update Cash Plan Header StringBuilder sql = new StringBuilder("UPDATE C_CashPlan ") .append(" SET GrandTotal=") .append("(SELECT COALESCE(SUM(LineTotalAmt),0) FROM C_CashPlanLine WHERE C_CashPlan.C_CashPlan_ID=C_CashPlanLine.C_CashPlan_ID) ") .append("WHERE C_CashPlan_ID=").append(getC_CashPlan_ID()); int no = DB.executeUpdate(sql.toString(), get_TrxName()); if (no != 1) log.warning("(1) #" + no); return no == 1; } // updateHeaderTax } // MCashPlanLine