/****************************************************************************** * Product: Adempiere ERP & CRM Smart Business Solution * * Copyright (C) 2007 ADempiere, 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 * * Adempiere, Inc. * *****************************************************************************/ package org.compiere.process; import java.util.logging.Level; import org.compiere.model.MColumn; import org.compiere.model.MProcessPara; import org.compiere.model.MTable; import org.compiere.model.M_Element; import org.compiere.model.PO; import org.compiere.util.AdempiereSystemError; import org.compiere.util.Env; import org.compiere.util.Msg; /** * Copy columns from one table to other * * @author Carlos Ruiz - globalqss * @version $Id: CopyColumnsFromTable */ @org.adempiere.base.annotation.Process public class CopyColumnsFromTable extends SvrProcess { /** Target Table */ private int p_target_AD_Table_ID = 0; /** Source Table */ private int p_source_AD_Table_ID = 0; /** Column Count */ private int m_count = 0; /** * Prepare - e.g., get Parameters. */ protected void prepare () { ProcessInfoParameter[] para = getParameter(); for (int i = 0; i < para.length; i++) { String name = para[i].getParameterName(); if (para[i].getParameter() == null) ; else if (name.equals("AD_Table_ID")) p_source_AD_Table_ID = para[i].getParameterAsInt(); else MProcessPara.validateUnknownParameter(getProcessInfo().getAD_Process_ID(), para[i]); } p_target_AD_Table_ID = getRecord_ID(); } // prepare /** * Process * @return info * @throws Exception */ protected String doIt () throws Exception { if (p_target_AD_Table_ID == 0) throw new AdempiereSystemError("@NotFound@ @AD_Table_ID@ " + p_target_AD_Table_ID); if (p_source_AD_Table_ID == 0) throw new AdempiereSystemError("@NotFound@ @AD_Table_ID@ " + p_source_AD_Table_ID); if (log.isLoggable(Level.INFO)) log.info("Source AD_Table_ID=" + p_source_AD_Table_ID + ", Target AD_Table_ID=" + p_target_AD_Table_ID); MTable targetTable = new MTable(getCtx(), p_target_AD_Table_ID, get_TrxName()); MColumn[] targetColumns = targetTable.getColumns(true); if (targetColumns.length > 0) throw new AdempiereSystemError(Msg.getMsg(Env.getCtx(), "ErrorCopyColumns")); MTable sourceTable = new MTable(getCtx(), p_source_AD_Table_ID, get_TrxName()); MColumn[] sourceColumns = sourceTable.getColumns(true); for (int i = 0; i < sourceColumns.length; i++) { MColumn colTarget = new MColumn(targetTable); PO.copyValues(sourceColumns[i], colTarget); colTarget.setAD_Table_ID (targetTable.getAD_Table_ID()); colTarget.setEntityType(targetTable.getEntityType()); // special case the key -> sourceTable_ID if (sourceColumns[i].getColumnName().equals(sourceTable.getTableName()+"_ID")) { String targetColumnName = new String(targetTable.getTableName()+"_ID"); colTarget.setColumnName(targetColumnName); // if the element doesn't exist, create it M_Element element = M_Element.get (getCtx (), targetColumnName); if (element == null) { element = new M_Element (getCtx (), targetColumnName, targetTable.getEntityType(), get_TrxName ()); if (targetColumnName.equalsIgnoreCase (targetTable.getTableName() + "_ID")) { element.setColumnName(targetTable.getTableName() + "_ID"); element.setName(targetTable.getName()); element.setPrintName(targetTable.getName()); } element.saveEx(get_TrxName()); } colTarget.setAD_Element_ID(element.getAD_Element_ID()); colTarget.setName(targetTable.getName()); colTarget.setDescription(targetTable.getDescription()); colTarget.setHelp(targetTable.getHelp()); } // special case the UUID column -> sourceTable_UU if (sourceColumns[i].getColumnName().equals(sourceTable.getTableName()+"_UU")) { String targetColumnName = new String(targetTable.getTableName()+"_UU"); colTarget.setColumnName(targetColumnName); // if the element doesn't exist, create it M_Element element = M_Element.get (getCtx (), targetColumnName); if (element == null) { element = new M_Element (getCtx (), targetColumnName, targetTable.getEntityType(), get_TrxName ()); if (targetColumnName.equalsIgnoreCase (targetTable.getTableName() + "_UU")) { element.setColumnName(targetTable.getTableName() + "_UU"); element.setName(targetTable.getTableName() + "_UU"); element.setPrintName(targetTable.getTableName() + "_UU"); } element.saveEx(get_TrxName()); } colTarget.setAD_Element_ID(element.getAD_Element_ID()); colTarget.setName(targetTable.getName()); colTarget.setDescription(targetTable.getDescription()); colTarget.setHelp(targetTable.getHelp()); } colTarget.setIsActive(sourceColumns[i].isActive()); colTarget.saveEx(get_TrxName()); // TODO: Copy translations m_count++; } // return "#" + m_count; } // doIt } // CopyColumnsFromTable