/****************************************************************************** * 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.Msg; import org.compiere.util.Util; import org.eevolution.model.MPPProductBOM; /** * Change Request Model * @author Jorg Janke * @version $Id: MChangeRequest.java,v 1.2 2006/07/30 00:51:03 jjanke Exp $ */ public class MChangeRequest extends X_M_ChangeRequest { /** * generated serial id */ private static final long serialVersionUID = 8374119541472311165L; /** * UUID based Constructor * @param ctx Context * @param M_ChangeRequest_UU UUID key * @param trxName Transaction */ public MChangeRequest(Properties ctx, String M_ChangeRequest_UU, String trxName) { super(ctx, M_ChangeRequest_UU, trxName); if (Util.isEmpty(M_ChangeRequest_UU)) setInitialDefaults(); } /** * Standard Constructor * @param ctx context * @param M_ChangeRequest_ID ix * @param trxName trx */ public MChangeRequest (Properties ctx, int M_ChangeRequest_ID, String trxName) { super (ctx, M_ChangeRequest_ID, trxName); if (M_ChangeRequest_ID == 0) setInitialDefaults(); } // MChangeRequest /** * Set the initial defaults for a new record */ private void setInitialDefaults() { setIsApproved(false); setProcessed(false); } /** * CRM Request Constructor * @param request request * @param group request group */ public MChangeRequest (MRequest request, MGroup group) { this (request.getCtx(), 0, request.get_TrxName()); setClientOrg(request); StringBuilder msgset = new StringBuilder().append(Msg.getElement(getCtx(), "R_Request_ID")).append(": ").append(request.getDocumentNo()); setName(msgset.toString()); setHelp(request.getSummary()); // setPP_Product_BOM_ID(group.getPP_Product_BOM_ID()); setM_ChangeNotice_ID(group.getM_ChangeNotice_ID()); } // MChangeRequest /** * Load Constructor * @param ctx context * @param rs result set * @param trxName trx */ public MChangeRequest (Properties ctx, ResultSet rs, String trxName) { super (ctx, rs, trxName); } // MChangeRequest /** * Get CRM Requests of Change Requests * TODO: implement it or delete * @return requests */ public MRequest[] getRequests() { return null; } // getRequests @Override protected boolean beforeSave (boolean newRecord) { // Must fill either one of Product BOM or Change Notice field. if (getPP_Product_BOM_ID() == 0 && getM_ChangeNotice_ID() == 0) { log.saveError("Error", Msg.parseTranslation(getCtx(), "@NotFound@: @M_BOM_ID@ / @M_ChangeNotice_ID@")); return false; } // Set ChangeNotice from Product BOM if (newRecord && getPP_Product_BOM_ID() != 0 && getM_ChangeNotice_ID() == 0) { MPPProductBOM bom = MPPProductBOM.get(getCtx(), getPP_Product_BOM_ID()); if (bom.getM_ChangeNotice_ID() != 0) { setM_ChangeNotice_ID(bom.getM_ChangeNotice_ID()); } } return true; } // beforeSave } // MChangeRequest