blob: 07b3b808f694615f5215c73dc2224fec15f74d95 [file] [log] [blame]
<#--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-->
<#assign extInfo = parameters.extInfo?default("N")>
<#assign inventoryItemId = parameters.inventoryItemId?default("")>
<#assign serialNumber = parameters.serialNumber?default("")>
<#assign softIdentifier = parameters.softIdentifier?default("")>
<#assign sortField = parameters.sortField!/>
<#-- Only allow the search fields to be hidden when we have some results -->
<#if partyList?has_content>
<#assign hideFields = parameters.hideFields?default("N")>
<#else>
<#assign hideFields = "N">
</#if>
<h1>${uiLabelMap.PageTitleFindParty}</h1>
<#if (parameters.firstName?has_content || parameters.lastName?has_content)>
<#assign createUrl = "editperson?create_new=Y&amp;lastName=${parameters.lastName!}&amp;firstName=${parameters.firstName!}"/>
<#elseif (parameters.groupName?has_content)>
<#assign createUrl = "editpartygroup?create_new=Y&amp;groupName=${parameters.groupName!}"/>
<#else>
<#assign createUrl = "createnew"/>
</#if>
<div class="button-bar"><a href="<@ofbizUrl>${createUrl}</@ofbizUrl>" class="buttontext create">${uiLabelMap.CommonCreateNew}</a></div>
<div class="screenlet">
<div class="screenlet-title-bar">
<#if partyList?has_content>
<ul>
<#if hideFields == "Y">
<li class="collapsed"><a href="<@ofbizUrl>findparty?hideFields=N&sortField=${sortField!}${paramList}</@ofbizUrl>" title="${uiLabelMap.CommonShowLookupFields}">&nbsp;</a></li>
<#else>
<li class="expanded"><a href="<@ofbizUrl>findparty?hideFields=Y&sortField=${sortField!}${paramList}</@ofbizUrl>" title="${uiLabelMap.CommonHideFields}">&nbsp;</a></li>
</#if>
</ul>
<br class="clear"/>
</#if>
</div>
<div class="screenlet-body">
<div id="findPartyParameters" <#if hideFields != "N"> style="display:none" </#if> >
<h2>${uiLabelMap.CommonSearchOptions}</h2>
<#-- NOTE: this form is setup to allow a search by partial partyId or userLoginId; to change it to go directly to
the viewprofile page when these are entered add the follow attribute to the form element:
onsubmit="javascript:lookupParty('<@ofbizUrl>viewprofile</@ofbizUrl>');"
-->
<form method="post" name="lookupparty" action="<@ofbizUrl>findparty</@ofbizUrl>" class="basic-form">
<input type="hidden" name="lookupFlag" value="Y"/>
<input type="hidden" name="hideFields" value="Y"/>
<table class="basic-table" cellspacing="0">
<tr>
<td class="label">${uiLabelMap.PartyContactInformation}</td>
<td>
<input type="radio" name="extInfo" value="N" onclick="javascript:refreshInfo();" <#if extInfo == "N">checked="checked"</#if>/>${uiLabelMap.CommonNone}&nbsp;
<input type="radio" name="extInfo" value="P" onclick="javascript:refreshInfo();" <#if extInfo == "P">checked="checked"</#if>/>${uiLabelMap.PartyPostal}&nbsp;
<input type="radio" name="extInfo" value="T" onclick="javascript:refreshInfo();" <#if extInfo == "T">checked="checked"</#if>/>${uiLabelMap.PartyTelecom}&nbsp;
<input type="radio" name="extInfo" value="O" onclick="javascript:refreshInfo();" <#if extInfo == "O">checked="checked"</#if>/>${uiLabelMap.CommonOther}&nbsp;
</td>
</tr>
<tr>
<td class="label">${uiLabelMap.PartyPartyId}</td>
<td><input type="text" name="partyId" value="${parameters.partyId!}"/></td>
</tr>
<tr>
<td class="label">${uiLabelMap.PartyUserLogin}</td>
<td><input type="text" name="userLoginId" value="${parameters.userLoginId!}"/></td>
</tr>
<tr>
<td class="label">${uiLabelMap.PartyLastName}</td>
<td><input type="text" name="lastName" value="${parameters.lastName!}"/></td>
</tr>
<tr>
<td class="label">${uiLabelMap.PartyFirstName}</td>
<td><input type="text" name="firstName" value="${parameters.firstName!}"/></td>
</tr>
<tr>
<td class="label">${uiLabelMap.PartyPartyGroupName}</td>
<td><input type="text" name="groupName" value="${parameters.groupName!}"/></td>
</tr>
<tr>
<td class="label">${uiLabelMap.PartyRoleType}</td>
<td>
<select name="roleTypeId">
<#if currentRole?has_content>
<option value="${currentRole.roleTypeId}">${currentRole.get("description",locale)}</option>
<option value="${currentRole.roleTypeId}">---</option>
</#if>
<option value="ANY">${uiLabelMap.CommonAnyRoleType}</option>
<#list roleTypes as roleType>
<option value="${roleType.roleTypeId}">${roleType.get("description",locale)}</option>
</#list>
</select>
</td>
</tr>
<tr>
<td class="label">${uiLabelMap.PartyType}</td>
<td>
<select name="partyTypeId">
<#if currentPartyType?has_content>
<option value="${currentPartyType.partyTypeId}">${currentPartyType.get("description",locale)}</option>
<option value="${currentPartyType.partyTypeId}">---</option>
</#if>
<option value="ANY">${uiLabelMap.CommonAny}</option>
<#list partyTypes as partyType>
<option value="${partyType.partyTypeId}">${partyType.get("description",locale)}</option>
</#list>
</select>
</td>
</tr>
<tr>
<td class="label">${uiLabelMap.ProductInventoryItemId}</td>
<td><input type="text" name="inventoryItemId" value="${parameters.inventoryItemId!}"/></td>
</tr>
<tr>
<td class="label">${uiLabelMap.ProductSerialNumber}</td>
<td><input type="text" name="serialNumber" value="${parameters.serialNumber!}"/></td>
</tr>
<tr>
<td class="label">${uiLabelMap.ProductSoftIdentifier}</td>
<td><input type="text" name="softIdentifier" value="${parameters.softIdentifier!}"/></td>
</tr>
<#if extInfo == "P">
<tr><td colspan="3"><hr /></td></tr>
<tr>
<td class="label">${uiLabelMap.CommonAddress1}</td>
<td><input type="text" name="address1" value="${parameters.address1!}"/></td>
</tr>
<tr>
<td class="label">${uiLabelMap.CommonAddress2}</td>
<td><input type="text" name="address2" value="${parameters.address2!}"/></td>
</tr>
<tr>
<td class="label">${uiLabelMap.CommonCity}</td>
<td><input type="text" name="city" value="${parameters.city!}"/></td>
</tr>
<tr>
<td class="label">${uiLabelMap.CommonStateProvince}</td>
<td>
<select name="stateProvinceGeoId">
<#if currentStateGeo?has_content>
<option value="${currentStateGeo.geoId}">${currentStateGeo.geoName?default(currentStateGeo.geoId)}</option>
<option value="${currentStateGeo.geoId}">---</option>
</#if>
<option value="ANY">${uiLabelMap.CommonAnyStateProvince}</option>
${screens.render("component://common/widget/CommonScreens.xml#states")}
</select>
</td>
</tr>
<tr>
<td class="label">${uiLabelMap.PartyPostalCode}</td>
<td><input type="text" name="postalCode" value="${parameters.postalCode!}"/></td>
</tr>
</#if>
<#if extInfo == "T">
<tr><td colspan="3"><hr /></td></tr>
<tr>
<td class="label">${uiLabelMap.CommonCountryCode}</td>
<td><input type="text" name="countryCode" value="${parameters.countryCode!}"/></td>
</tr>
<tr>
<td class="label">${uiLabelMap.PartyAreaCode}</td>
<td><input type="text" name="areaCode" value="${parameters.areaCode!}"/></td>
</tr>
<tr>
<td class="label">${uiLabelMap.PartyContactNumber}</td>
<td><input type="text" name="contactNumber" value="${parameters.contactNumber!}"/></td>
</tr>
</#if>
<#if extInfo == "O">
<tr><td colspan="3"><hr /></td></tr>
<tr>
<td class="label">${uiLabelMap.PartyContactInformation}</td>
<td><input type="text" name="infoString" value="${parameters.infoString!}"/></td>
</tr>
</#if>
<tr>
<td>&nbsp;</td>
<td>
<input type="submit" value="${uiLabelMap.CommonFind}" onclick="javascript:document.lookupparty.submit();"/>
</td>
</tr>
</table>
</form>
</div>
<script language="JavaScript" type="text/javascript">
document.lookupparty.partyId.focus();
</script>
<#if partyList??>
<#if hideFields != "Y">
<hr />
</#if>
<div id="findPartyResults">
<h2>${uiLabelMap.CommonSearchResults}</h2>
</div>
<#if partyList?has_content>
<#-- Pagination -->
<#include "component://common/webcommon/includes/htmlTemplate.ftl"/>
<#assign commonUrl = "findparty?hideFields=" + hideFields + paramList + "&sortField=" + (sortField!) + "&"/>
<#assign viewIndexFirst = 0/>
<#assign viewIndexPrevious = viewIndex - 1/>
<#assign viewIndexNext = viewIndex + 1/>
<#assign viewIndexLast = Static["org.ofbiz.base.util.UtilMisc"].getViewLastIndex(partyListSize, viewSize) />
<#assign messageMap = Static["org.ofbiz.base.util.UtilMisc"].toMap("lowCount", lowIndex, "highCount", highIndex, "total", partyListSize)/>
<#assign commonDisplaying = Static["org.ofbiz.base.util.UtilProperties"].getMessage("CommonUiLabels", "CommonDisplaying", messageMap, locale)/>
<@nextPrev commonUrl=commonUrl ajaxEnabled=false javaScriptEnabled=false paginateStyle="nav-pager" paginateFirstStyle="nav-first" viewIndex=viewIndex highIndex=highIndex listSize=partyListSize viewSize=viewSize ajaxFirstUrl="" firstUrl="" paginateFirstLabel="" paginatePreviousStyle="nav-previous" ajaxPreviousUrl="" previousUrl="" paginatePreviousLabel="" pageLabel="" ajaxSelectUrl="" selectUrl="" ajaxSelectSizeUrl="" selectSizeUrl="" commonDisplaying=commonDisplaying paginateNextStyle="nav-next" ajaxNextUrl="" nextUrl="" paginateNextLabel="" paginateLastStyle="nav-last" ajaxLastUrl="" lastUrl="" paginateLastLabel="" paginateViewSizeLabel="" />
<table class="basic-table hover-bar" cellspacing="0">
<tr class="header-row-2">
<td>${uiLabelMap.PartyPartyId}</td>
<td>${uiLabelMap.PartyUserLogin}</td>
<td>${uiLabelMap.PartyName}</td>
<#if extInfo?default("") == "P" >
<td>${uiLabelMap.PartyCity}</td>
</#if>
<#if extInfo?default("") == "P">
<td>${uiLabelMap.PartyPostalCode}</td>
</#if>
<#if extInfo?default("") == "T">
<td>${uiLabelMap.PartyAreaCode}</td>
</#if>
<#if inventoryItemId?default("") != "">
<td>${uiLabelMap.ProductInventoryItemId}</td>
</#if>
<#if serialNumber?default("") != "">
<td>${uiLabelMap.ProductSerialNumber}</td>
</#if>
<#if softIdentifier?default("") != "">
<td>${uiLabelMap.ProductSoftIdentifier}</td>
</#if>
<td>${uiLabelMap.PartyRelatedCompany}</td>
<td>${uiLabelMap.PartyType}</td>
<td>${uiLabelMap.PartyMainRole}</td>
<td>
<a href="<@ofbizUrl>findparty</@ofbizUrl>?<#if sortField?has_content><#if sortField == "createdDate">sortField=-createdDate<#elseif sortField == "-createdDate">sortField=createdDate<#else>sortField=createdDate</#if><#else>sortField=createdDate</#if>${paramList!}&VIEW_SIZE=${viewSize!}&VIEW_INDEX=${viewIndex!}"
<#if sortField?has_content><#if sortField == "createdDate">class="sort-order-desc"<#elseif sortField == "-createdDate">class="sort-order-asc"<#else>class="sort-order"</#if><#else>class="sort-order"</#if>>${uiLabelMap.FormFieldTitle_createdDate}
</a>
</td>
<td>
<a href="<@ofbizUrl>findparty</@ofbizUrl>?<#if sortField?has_content><#if sortField == "lastModifiedDate">sortField=-lastModifiedDate<#elseif sortField == "-lastModifiedDate">sortField=lastModifiedDate<#else>sortField=lastModifiedDate</#if><#else>sortField=lastModifiedDate</#if>${paramList!}&VIEW_SIZE=${viewSize!}&VIEW_INDEX=${viewIndex!}"
<#if sortField?has_content><#if sortField == "lastModifiedDate">class="sort-order-desc"<#elseif sortField == "-lastModifiedDate">class="sort-order-asc"<#else>class="sort-order"</#if><#else>class="sort-order"</#if>>${uiLabelMap.FormFieldTitle_lastModifiedDate}
</a>
</td>
<td>&nbsp;</td>
</tr>
<#assign alt_row = false>
<#assign rowCount = 0>
<#list partyList as partyRow>
<#assign partyType = partyRow.getRelatedOne("PartyType", false)!>
<tr valign="middle"<#if alt_row> class="alternate-row"</#if>>
<td><a href="<@ofbizUrl>viewprofile?partyId=${partyRow.partyId}</@ofbizUrl>">${partyRow.partyId}</a></td>
<td>
<#if partyRow.containsKey("userLoginId")>
${partyRow.userLoginId?default("N/A")}
<#else>
<#assign userLogins = partyRow.getRelated("UserLogin", null, null, false)>
<#if (userLogins.size() > 0)>
<#if (userLogins.size() > 1)>
(${uiLabelMap.CommonMany})
<#else>
<#assign userLogin = userLogins.get(0)>
${userLogin.userLoginId}
</#if>
<#else>
(${uiLabelMap.CommonNone})
</#if>
</#if>
</td>
<td>
<#if partyRow.getModelEntity().isField("lastName") && lastName?has_content>
${partyRow.lastName}<#if partyRow.firstName?has_content>, ${partyRow.firstName}</#if>
<#elseif partyRow.getModelEntity().isField("groupName") && partyRow.groupName?has_content>
${partyRow.groupName}
<#else>
<#assign partyName = Static["org.ofbiz.party.party.PartyHelper"].getPartyName(partyRow, true)>
<#if partyName?has_content>
${partyName}
<#else>
(${uiLabelMap.PartyNoNameFound})
</#if>
</#if>
</td>
<#if extInfo?default("") == "T">
<td>${partyRow.areaCode!}</td>
</#if>
<#if extInfo?default("") == "P" >
<td>${partyRow.city!}, ${partyRow.stateProvinceGeoId!}</td>
</#if>
<#if extInfo?default("") == "P">
<td>${partyRow.postalCode!}</td>
</#if>
<#if inventoryItemId?default("") != "">
<td>${partyRow.inventoryItemId!}</td>
</#if>
<#if serialNumber?default("") != "">
<td>${partyRow.serialNumber!}</td>
</#if>
<#if softIdentifier?default("") != "">
<td>${partyRow.softIdentifier!}</td>
</#if>
<#if partyType??>
<td>
<#if partyType.partyTypeId?has_content && partyType.partyTypeId=="PERSON">
<#assign partyRelateCom = delegator.findByAnd("PartyRelationship", {"partyIdTo", partyRow.partyId,"roleTypeIdFrom","ACCOUNT","roleTypeIdTo","CONTACT"}, null, false)>
<#if partyRelateCom?has_content>
<#list partyRelateCom as partyRelationship>
<#if partyRelationship.partyIdFrom?has_content>
<#assign companyName=Static["org.ofbiz.party.party.PartyHelper"].getPartyName(delegator, partyRelationship.partyIdFrom, true)>
${companyName!}
</#if>
</#list>
</#if>
</#if>
</td>
<td><#if partyType.description??>${partyType.get("description", locale)}<#else>???</#if></td>
<#else>
<td></td><td></td>
</#if>
<td>
<#assign mainRole = dispatcher.runSync("getPartyMainRole", Static["org.ofbiz.base.util.UtilMisc"].toMap("partyId", partyRow.partyId, "userLogin", userLogin))/>
${mainRole.description!}
</td>
<#assign partyDate = delegator.findOne("Party", {"partyId":partyRow.partyId}, true)/>
<td>${partyDate.createdDate!}</td>
<td>${partyDate.lastModifiedDate!}</td>
<td class="button-col align-float">
<a href="<@ofbizUrl>viewprofile?partyId=${partyRow.partyId}</@ofbizUrl>">${uiLabelMap.CommonDetails}</a>
<#if security.hasEntityPermission("ORDERMGR", "_VIEW", session)>
<form name= "searchorders_o_${rowCount}" method= "post" action= "/ordermgr/control/searchorders">
<input type= "hidden" name= "lookupFlag" value= "Y" />
<input type= "hidden" name= "hideFields" value= "Y" />
<input type= "hidden" name= "partyId" value= "${partyRow.partyId}" />
<input type= "hidden" name= "viewIndex" value= "1" />
<input type= "hidden" name= "viewSize" value= "20" />
<a href="javascript:document.searchorders_o_${rowCount}.submit()">${uiLabelMap.OrderOrders}</a>
</form>
<a href="/ordermgr/control/FindQuote?partyId=${partyRow.partyId + externalKeyParam}">${uiLabelMap.OrderOrderQuotes}</a>
</#if>
<#if security.hasEntityPermission("ORDERMGR", "_CREATE", session)>
<a href="/ordermgr/control/checkinits?partyId=${partyRow.partyId + externalKeyParam}">${uiLabelMap.OrderNewOrder}</a>
<a href="/ordermgr/control/EditQuote?partyId=${partyRow.partyId + externalKeyParam}">${uiLabelMap.OrderNewQuote}</a>
</#if>
</td>
</tr>
<#assign rowCount = rowCount + 1>
<#-- toggle the row color -->
<#assign alt_row = !alt_row>
</#list>
</table>
<#else>
<div id="findPartyResults_2">
<h3>${uiLabelMap.PartyNoPartiesFound}</h3>
</div>
</#if>
<#if lookupErrorMessage??>
<h3>${lookupErrorMessage}</h3>
</#if>
</div>
</#if>
</div>