/****************************************************************************** * 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.process; import java.util.logging.Level; import org.adempiere.base.annotation.Parameter; import org.compiere.model.MBPartner; import org.compiere.model.MBPartnerLocation; import org.compiere.model.MLocator; import org.compiere.model.MOrg; import org.compiere.model.MOrgInfo; import org.compiere.model.MRole; import org.compiere.model.MRoleOrgAccess; import org.compiere.model.MWarehouse; import org.compiere.util.AdempiereUserError; import org.compiere.util.Msg; /** * Link Business Partner to Organization. * Either to existing or create new one * * @author Jorg Janke * @version $Id: BPartnerOrgLink.java,v 1.2 2006/07/30 00:51:02 jjanke Exp $ */ @org.adempiere.base.annotation.Process public class BPartnerOrgLink extends SvrProcess { /** Existing Org */ @Parameter private int p_AD_Org_ID; /** Info for New Org */ @Parameter private int p_AD_OrgType_ID; /** Role */ @Parameter private int p_AD_Role_ID; /** Business Partner */ private int p_C_BPartner_ID; /** * Prepare - e.g., get Parameters. */ protected void prepare(){ p_C_BPartner_ID = getRecord_ID(); } // prepare /** * Perform process. * @return Message (text with variables) * @throws Exception if not successful */ protected String doIt() throws Exception { if (log.isLoggable(Level.INFO)) log.info("C_BPartner_ID=" + p_C_BPartner_ID + ", AD_Org_ID=" + p_AD_Org_ID + ", AD_OrgType_ID=" + p_AD_OrgType_ID + ", AD_Role_ID=" + p_AD_Role_ID); if (p_C_BPartner_ID == 0) throw new AdempiereUserError ("No Business Partner ID"); MBPartner bp = new MBPartner (getCtx(), p_C_BPartner_ID, get_TrxName()); if (bp.get_ID() == 0) throw new AdempiereUserError (Msg.getMsg(getCtx(), "BPartnerNotFound") + " - C_BPartner_ID=" + p_C_BPartner_ID); // BP Location MBPartnerLocation[] locs = bp.getLocations(false); if (locs == null || locs.length == 0) throw new IllegalArgumentException (Msg.getMsg(getCtx(),"BPartnerHasNoLocation")); // Location int C_Location_ID = locs[0].getC_Location_ID(); if (C_Location_ID == 0) throw new IllegalArgumentException (Msg.getMsg(getCtx(),"BPartnerLocationHasNoAddress")); // Create Org boolean newOrg = p_AD_Org_ID == 0; MOrg org = new MOrg (getCtx(), p_AD_Org_ID, get_TrxName()); if (newOrg) { org.setValue (bp.getValue()); org.setName (bp.getName()); org.setDescription (bp.getDescription()); if (!org.save()) throw new Exception (Msg.getMsg(getCtx(),"OrganizationNotSaved")); } else // check if linked to already { int C_BPartner_ID = org.getLinkedC_BPartner_ID(get_TrxName()); if (C_BPartner_ID > 0) { MBPartner partner = new MBPartner (getCtx(), C_BPartner_ID, get_TrxName()); throw new IllegalArgumentException (Msg.getMsg(getCtx(),"OrganizationAlreadyLinkedBusinessPartner",new Object[] {org.getName(), partner.getName()} )); } } p_AD_Org_ID = org.getAD_Org_ID(); // Update Org Info MOrgInfo oInfo = org.getInfo(); oInfo.setAD_OrgType_ID (p_AD_OrgType_ID); if (newOrg) oInfo.setC_Location_ID(C_Location_ID); // Create Warehouse MWarehouse wh = null; if (!newOrg) { MWarehouse[] whs = MWarehouse.getForOrg(getCtx(), p_AD_Org_ID); if (whs != null && whs.length > 0) wh = whs[0]; // pick first } // New Warehouse if (wh == null) { wh = new MWarehouse(org); if (!wh.save(get_TrxName())) throw new Exception (Msg.getMsg(getCtx(),"WarehouseNotSaved")); } // Create Locator MLocator mLoc = wh.getDefaultLocator(); if (mLoc == null) { mLoc = new MLocator (wh, "Standard"); mLoc.setIsDefault(true); mLoc.saveEx(get_TrxName()); } // Update/Save Org Info oInfo.setM_Warehouse_ID(wh.getM_Warehouse_ID()); if (!oInfo.save(get_TrxName())) throw new Exception (Msg.getMsg(getCtx(),"OrganizationInfoNotSaved")); // Update BPartner bp.setAD_OrgBP_ID(p_AD_Org_ID); if (bp.getAD_Org_ID() != 0) bp.setClientOrg(bp.getAD_Client_ID(), 0); // Shared BPartner // Save BP if (!bp.save()) throw new Exception (Msg.getMsg(getCtx(),"BPartnerNotUpdated")); // Limit to specific Role if (p_AD_Role_ID != 0) { boolean found = false; MRoleOrgAccess[] orgAccesses = MRoleOrgAccess.getOfOrg (getCtx(), p_AD_Org_ID); // delete all accesses except the specific for (int i = 0; i < orgAccesses.length; i++) { if (orgAccesses[i].getAD_Role_ID() == p_AD_Role_ID) found = true; else orgAccesses[i].delete(true); } // create access if (!found) { MRoleOrgAccess orgAccess = new MRoleOrgAccess (org, p_AD_Role_ID); orgAccess.saveEx(get_TrxName()); } } // Reset Client Role MRole.getDefault(getCtx(), true); return Msg.getMsg(getCtx(),"BPartnerOrganizationLinkCreated"); } // doIt } // BPartnerOrgLink