/****************************************************************************** * 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.sql.Timestamp; import java.util.List; import java.util.Properties; import org.compiere.util.CLogger; import org.compiere.util.Env; /** * Performance Achievement * * @author Jorg Janke * @version $Id: MAchievement.java,v 1.2 2006/07/30 00:51:02 jjanke Exp $ * red1 - [ 2214883 ] Remove SQL code and Replace for Query */ public class MAchievement extends X_PA_Achievement { private static final long serialVersionUID = -1438593600498523664L; /** * Get achieved Achievements Of Measure * @param measure Measure * @return array of Achievements */ public static MAchievement[] get (MMeasure measure) { return getOfMeasure(measure.getCtx(), measure.getPA_Measure_ID()); } // get /** * Get achieved Achievements Of Measure * @param ctx context * @param PA_Measure_ID measure id * @return array of Achievements */ public static MAchievement[] getOfMeasure (Properties ctx, int PA_Measure_ID) { final String whereClause ="PA_Measure_ID=? AND IsAchieved='Y'"; List list = new Query(ctx,I_PA_Achievement.Table_Name, whereClause, null) .setParameters(PA_Measure_ID) .setOrderBy("SeqNo, DateDoc") .list(); MAchievement[] retValue = new MAchievement[list.size ()]; retValue = list.toArray (retValue); return retValue; } // getOfMeasure /** Logger */ @SuppressWarnings("unused") private static CLogger s_log = CLogger.getCLogger (MAchievement.class); /** * UUID based Constructor * @param ctx Context * @param PA_Achievement_UU UUID key * @param trxName Transaction */ public MAchievement(Properties ctx, String PA_Achievement_UU, String trxName) { super(ctx, PA_Achievement_UU, trxName); } /** * Standard Constructor * @param ctx context * @param PA_Achievement_ID id * @param trxName trx */ public MAchievement (Properties ctx, int PA_Achievement_ID, String trxName) { super (ctx, PA_Achievement_ID, trxName); } // MAchievement /** * Load Constructor * @param ctx context * @param rs result set * @param trxName trx */ public MAchievement (Properties ctx, ResultSet rs, String trxName) { super (ctx, rs, trxName); } // MAchievement /** * String Representation * @return info */ public String toString () { StringBuilder sb = new StringBuilder ("MAchievement["); sb.append (get_ID()).append ("-").append (getName()).append ("]"); return sb.toString (); } // toString @Override protected boolean beforeSave (boolean newRecord) { if (isAchieved()) { if (getManualActual().signum() == 0) setManualActual(Env.ONE); if (getDateDoc() == null) setDateDoc(new Timestamp(System.currentTimeMillis())); } return true; } // beforeSave @Override protected boolean afterSave (boolean newRecord, boolean success) { if (success) updateAchievementGoals(); return success; } // afterSave @Override protected boolean afterDelete (boolean success) { if (success) updateAchievementGoals(); return success; } // afterDelete /** * Update measurement goals with achievement */ private void updateAchievementGoals() { MMeasure measure = MMeasure.get (getCtx(), getPA_Measure_ID()); measure.updateGoals(); } // updateAchievementGoals } // MAchievement