⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 createopportunityform.bsh

📁 Sequoia ERP是一个真正的企业级开源ERP解决方案。它提供的模块包括:电子商务应用(e-commerce), POS系统(point of sales),知识管理,存货与仓库管理
💻 BSH
字号:
/* * Copyright (C) 2006  Open Source Strategies, Inc. *  * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. *  * 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., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA *//* * The purpose of this script is to make the createOpportunityForm form intelligent. * * There are three input cases: basic create opportunity, create opportunity for * account, create opportunity for lead. In the latter two, an accountPartyId or * leadPartyId will be supplied. If these IDs resolved to real accounts and leads, * then we present a view of the form with the Initial Account or Initial Lead filled * in with the full name of the party displayed. If the ID was invalid or for all other * cases, we present the basic form. * * If the form returns an error, then we always present the basic form. This is to avoid * issues with locking the user into an unusable form where the Initial Account or Lead * names are filled in and undeditable. */import org.ofbiz.base.util.UtilMisc;// don't do anything if both account and lead are specifiedif (parameters.get("accountPartyId") != null && parameters.get("leadPartyId") != null) return;// get the account or lead party Id (not both) from the parameterspartyId = parameters.get("accountPartyId");if (partyId == null) partyId = parameters.get("leadPartyId");// if neither are specified, do nothingif (partyId == null) return null;// get the account or lead and store itopportunityParty = delegator.findByPrimaryKey("PartySummaryCRMView", UtilMisc.toMap("partyId", partyId));if (opportunityParty == null) return;if (parameters.get("accountPartyId") != null) context.put("account", opportunityParty);else if (parameters.get("leadPartyId") != null) context.put("lead", opportunityParty);// get the contact if an account is present (TODO: note this is highly debatable, prevents user from changing it)contactPartyId = parameters.get("contactPartyId");if (accountPartyId != null && contactPartyId != null) {    contact = delegator.findByPrimaryKey("PartySummaryCRMView", UtilMisc.toMap("partyId", contactPartyId));    context.put("contact", contact);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -