/****************************************************************************** * 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 * * Contributor(s): ______________________________________. * *****************************************************************************/ package org.compiere.model; import java.sql.ResultSet; import java.util.Properties; import org.compiere.util.DB; /** * Menu Model * * @author Jorg Janke * @version $Id: MMenu.java,v 1.5 2005/05/14 05:32:16 jjanke Exp $ */ public class MPackageExpDetail extends X_AD_Package_Exp_Detail { /** * */ private static final long serialVersionUID = 5110078103695767282L; /** * UUID based Constructor * @param ctx Context * @param AD_Package_Exp_Detail_UU UUID key * @param trxName Transaction */ public MPackageExpDetail(Properties ctx, String AD_Package_Exp_Detail_UU, String trxName) { super(ctx, AD_Package_Exp_Detail_UU, trxName); } /** * MPackageExpDetail * @param ctx * @param AD_Package_Exp_ID * @param trxName */ public MPackageExpDetail (Properties ctx, int AD_Package_Exp_ID, String trxName) { super(ctx, AD_Package_Exp_ID, trxName); } // MPackageExp /** * MPackageExp * @param ctx * @param rs */ public MPackageExpDetail (Properties ctx, ResultSet rs, String trxName) { super(ctx, rs, trxName); } // MPackageExp /* (non-Javadoc) * @see org.compiere.model.PO#beforeSave(boolean) */ @Override protected boolean beforeSave(boolean newRecord) { if (getLine() == 0) { final String sql = "SELECT max("+COLUMNNAME_Line+")" + "FROM "+Table_Name + " WHERE "+COLUMNNAME_AD_Package_Exp_ID+"=?" +" AND "+COLUMNNAME_AD_Package_Exp_Detail_ID+"<>?"; int lineNo = DB.getSQLValue(get_TrxName(), sql, getAD_Package_Exp_ID(), getAD_Package_Exp_Detail_ID()); if (lineNo >= 0) setLine(lineNo+10); } // return true; } /** * * @return record id to export */ public int getExpRecordId() { String type = getType(); if (TYPE_ApplicationOrModule.equals(type)) { return getAD_Menu_ID(); } else if (TYPE_DynamicValidationRule.equals(type)) { return getAD_Val_Rule_ID(); } else if (TYPE_Form.equals(type)) { return getAD_Form_ID(); } else if (TYPE_ImportFormat.equals(type)) { return getAD_ImpFormat_ID(); } else if (TYPE_Message.equals(type)) { return getAD_Message_ID(); } else if (TYPE_PrintFormat.equals(type)) { return getAD_PrintFormat_ID(); } else if (TYPE_ModelValidator.equals(type)) { return getAD_ModelValidator_ID(); } else if (TYPE_ProcessReport.equals(type)) { return getAD_Process_ID(); } else if (TYPE_Reference.equals(type)) { return getAD_Reference_ID(); } else if (TYPE_ReportView.equals(type)) { return getAD_ReportView_ID(); } else if (TYPE_Role.equals(type)) { return getAD_Role_ID(); } else if (TYPE_Table.equals(type)) { return getAD_Table_ID(); } else if (TYPE_Window.equals(type)) { return getAD_Window_ID(); } else if (TYPE_Workflow.equals(type)) { return getAD_Workflow_ID(); } else if (TYPE_EntityType.equals(type)) { return getAD_EntityType_ID(); } else if (TYPE_InfoWindow.equals(type)) { return getAD_InfoWindow_ID(); } else { return 0; } } } // MMenu