blob: c57e27d3f0e0bb1965405869f46c3a10d1b6a0e2 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<!--
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.
-->
<screens xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://ofbiz.apache.org/Widget-Screen" xsi:schemaLocation="http://ofbiz.apache.org/Widget-Screen http://ofbiz.apache.org/dtds/widget-screen.xsd">
<screen name="LookupPartyName">
<section>
<condition>
<if-service-permission service-name="partyBasePermissionCheck" main-action="VIEW"/>
</condition>
<actions>
<property-map resource="PartyUiLabels" map-name="uiLabelMap" global="true"/>
<set field="title" value="${uiLabelMap.PartyLookupPartyByName}"/>
<set field="queryString" from-field="result.queryString"/>
<set field="viewIndex" from-field="parameters.VIEW_INDEX" type="Integer" default-value="0"/>
<property-to-field resource="widget" property="widget.form.defaultViewSize" field="viewSizeDefaultValue"/>
<set field="viewSize" from-field="parameters.VIEW_SIZE" type="Integer" default-value="${viewSizeDefaultValue}"/>
<!-- entries needed for lookup ajax auto completer -->
<!-- required: entity to search in -->
<set field="entityName" value="PartyNameView"/>
<!-- required: fields to search a match -->
<!-- the first element from searchFields is returned after user selection -->
<!-- it might be hidden based on widget.autocompleter.displayReturnField property in widget.properties -->
<set field="searchFields" value="[partyId, firstName, middleName, lastName, groupName]"/>
<!-- optional: fields to display in the given order, default is searchFields -->
<set field="displayFields" value="[firstName, lastName, groupName]"/>
<!-- optional: additional entity condition (named andCondition) added to search query -->
<script location="component://party/groovyScripts/party/StatusCondition.groovy"/>
</actions>
<widgets>
<decorator-screen name="LookupDecorator" location="component://common/widget/CommonScreens.xml">
<decorator-section name="search-options">
<include-form name="LookupPartyName" location="component://party/widget/partymgr/LookupForms.xml"/>
</decorator-section>
<decorator-section name="search-results">
<include-form name="ListLookupPartyName" location="component://party/widget/partymgr/LookupForms.xml"/>
</decorator-section>
</decorator-screen>
</widgets>
</section>
</screen>
<screen name="LookupPartyEmail">
<section>
<condition>
<if-service-permission service-name="partyBasePermissionCheck" main-action="VIEW"/>
</condition>
<actions>
<property-map resource="PartyUiLabels" map-name="uiLabelMap" global="true"/>
<set field="title" value="${uiLabelMap.PartyLookupPartyByName}"/>
<set field="queryString" from-field="result.queryString"/>
<set field="viewIndex" from-field="parameters.VIEW_INDEX" type="Integer" default-value="0"/>
<property-to-field resource="widget" property="widget.form.defaultViewSize" field="viewSizeDefaultValue"/>
<set field="viewSize" from-field="parameters.VIEW_SIZE" type="Integer" default-value="${viewSizeDefaultValue}"/>
<set field="entityName" value="PartyNameContactMechView"/>
<set field="searchFields" value="[contactMechId, partyId, firstName, middleName, lastName, groupName]"/>
</actions>
<widgets>
<decorator-screen name="LookupDecorator" location="component://common/widget/CommonScreens.xml">
<decorator-section name="search-options">
<include-form name="LookupPartyEmail" location="component://party/widget/partymgr/LookupForms.xml"/>
</decorator-section>
<decorator-section name="search-results">
<include-form name="ListLookupPartyEmail" location="component://party/widget/partymgr/LookupForms.xml"/>
</decorator-section>
</decorator-screen>
</widgets>
</section>
</screen>
<screen name="LookupCustomerName">
<section>
<condition>
<if-service-permission service-name="partyBasePermissionCheck" main-action="VIEW"/>
</condition>
<actions>
<property-map resource="PartyUiLabels" map-name="uiLabelMap" global="true"/>
<set field="title" value="${uiLabelMap.PartyLookupPartyByName}"/>
<set field="queryString" from-field="result.queryString"/>
<set field="viewIndex" from-field="parameters.VIEW_INDEX" type="Integer" default-value="0"/>
<property-to-field resource="widget" property="widget.form.defaultViewSize" field="viewSizeDefaultValue"/>
<set field="viewSize" from-field="parameters.VIEW_SIZE" type="Integer" default-value="${viewSizeDefaultValue}"/>
<set field="entityName" value="PartyRoleNameDetail"/>
<set field="searchFields" value="[partyId, firstName, middleName, lastName, groupName]"/>
<set field="conditionFields.roleTypeId" value="CUSTOMER" />
</actions>
<widgets>
<decorator-screen name="LookupDecorator" location="component://common/widget/CommonScreens.xml">
<decorator-section name="search-options">
<include-form name="LookupCustomerName" location="component://party/widget/partymgr/LookupForms.xml"/>
</decorator-section>
<decorator-section name="search-results">
<include-form name="ListLookupCustomerName" location="component://party/widget/partymgr/LookupForms.xml"/>
</decorator-section>
</decorator-screen>
</widgets>
</section>
</screen>
<!-- A specialized lookup to search for customers to which the logged in user is associated as a sales representative -->
<screen name="LookupCustomerNameForSalesRep">
<section>
<condition>
<if-service-permission service-name="partyBasePermissionCheck" main-action="VIEW"/>
</condition>
<actions>
<property-map resource="PartyUiLabels" map-name="uiLabelMap" global="true"/>
<set field="title" value="${uiLabelMap.PartyLookupPartyByName}"/>
<set field="queryString" from-field="result.queryString"/>
<set field="viewIndex" from-field="parameters.VIEW_INDEX" type="Integer" default-value="0"/>
<property-to-field resource="widget" property="widget.form.defaultViewSize" field="viewSizeDefaultValue"/>
<set field="viewSize" from-field="parameters.VIEW_SIZE" type="Integer" default-value="${viewSizeDefaultValue}"/>
</actions>
<widgets>
<decorator-screen name="LookupDecorator" location="component://common/widget/CommonScreens.xml">
<decorator-section name="search-options">
<include-form name="LookupCustomerNameForSalesRep" location="component://party/widget/partymgr/LookupForms.xml"/>
</decorator-section>
<decorator-section name="search-results">
<include-form name="ListLookupCustomerNameForSalesRep" location="component://party/widget/partymgr/LookupForms.xml"/>
</decorator-section>
</decorator-screen>
</widgets>
</section>
</screen>
<screen name="LookupPerson">
<section>
<condition>
<if-service-permission service-name="partyBasePermissionCheck" main-action="VIEW"/>
</condition>
<actions>
<property-map resource="PartyUiLabels" map-name="uiLabelMap" global="true"/>
<set field="title" value="${uiLabelMap.PartyLookupPartyPerson}"/>
<set field="queryString" from-field="result.queryString"/>
<set field="entityName" value="PartyAndPerson"/>
<set field="searchFields" value="[partyId, firstName, middleName, lastName]"/>
<script location="component://party/groovyScripts/party/StatusCondition.groovy"/>
</actions>
<widgets>
<decorator-screen name="LookupDecorator" location="component://common/widget/CommonScreens.xml">
<decorator-section name="search-options">
<include-form name="LookupPerson" location="component://party/widget/partymgr/LookupForms.xml"/>
</decorator-section>
<decorator-section name="search-results">
<include-form name="ListLookupPerson" location="component://party/widget/partymgr/LookupForms.xml"/>
</decorator-section>
</decorator-screen>
</widgets>
</section>
</screen>
<screen name="LookupContact">
<section>
<condition>
<if-service-permission service-name="partyBasePermissionCheck" main-action="VIEW"/>
</condition>
<actions>
<property-map resource="PartyUiLabels" map-name="uiLabelMap" global="true"/>
<set field="title" value="${uiLabelMap.PartyLookupContact}"/>
<set field="entityName" value="PartyRoleAndPartyDetail"/>
<set field="parameters.roleTypeId" value="CONTACT"/>
<set field="searchFields" value="[partyId, firstName, middleName, lastName]"/>
<script location="component://party/groovyScripts/party/StatusCondition.groovy"/>
<set field="conditionFields.roleTypeId" value="CONTACT" />
</actions>
<widgets>
<decorator-screen name="LookupDecorator" location="component://common/widget/CommonScreens.xml">
<decorator-section name="search-options">
<include-form name="LookupPerson" location="component://party/widget/partymgr/LookupForms.xml"/>
</decorator-section>
<decorator-section name="search-results">
<include-form name="ListLookupPerson" location="component://party/widget/partymgr/LookupForms.xml"/>
</decorator-section>
</decorator-screen>
</widgets>
</section>
</screen>
<screen name="LookupLead">
<section>
<condition>
<if-service-permission service-name="partyBasePermissionCheck" main-action="VIEW"/>
</condition>
<actions>
<property-map resource="PartyUiLabels" map-name="uiLabelMap" global="true"/>
<set field="title" value="${uiLabelMap.PartyLookupLead}"/>
<set field="entityName" value="PartyRoleAndPartyDetail"/>
<set field="parameters.roleTypeId" value="LEAD"/>
</actions>
<widgets>
<decorator-screen name="LookupDecorator" location="component://common/widget/CommonScreens.xml">
<decorator-section name="search-options">
<include-form name="LookupPerson" location="component://party/widget/partymgr/LookupForms.xml"/>
</decorator-section>
<decorator-section name="search-results">
<include-form name="ListLookupPerson" location="component://party/widget/partymgr/LookupForms.xml"/>
</decorator-section>
</decorator-screen>
</widgets>
</section>
</screen>
<screen name="LookupPartyAndUserLoginAndPerson">
<section>
<condition>
<if-service-permission service-name="partyBasePermissionCheck" main-action="VIEW"/>
</condition>
<actions>
<property-map resource="PartyUiLabels" map-name="uiLabelMap" global="true"/>
<set field="title" value="${uiLabelMap.PartyLookupPartyAndUserLoginAndPerson}"/>
<set field="entityName" value="PartyAndUserLoginAndPerson"/>
<set field="queryString" from-field="result.queryString"/>
<set field="viewIndex" from-field="parameters.VIEW_INDEX" type="Integer" default-value="0"/>
<property-to-field resource="widget" property="widget.form.defaultViewSize" field="viewSizeDefaultValue"/>
<set field="viewSize" from-field="parameters.VIEW_SIZE" type="Integer" default-value="${viewSizeDefaultValue}"/>
<set field="searchFields" value="[userLoginId, partyId, firstName, lastName]"/>
<script location="component://party/groovyScripts/party/StatusCondition.groovy"/>
</actions>
<widgets>
<decorator-screen name="LookupDecorator" location="component://common/widget/CommonScreens.xml">
<decorator-section name="search-options">
<include-form name="LookupPartyAndUserLoginAndPerson" location="component://party/widget/partymgr/LookupForms.xml"/>
</decorator-section>
<decorator-section name="search-results">
<include-form name="ListLookupPartyAndUserLoginAndPerson" location="component://party/widget/partymgr/LookupForms.xml"/>
</decorator-section>
</decorator-screen>
</widgets>
</section>
</screen>
<screen name="LookupUserLoginAndPartyDetails">
<section>
<condition>
<if-service-permission service-name="partyBasePermissionCheck" main-action="VIEW"/>
</condition>
<actions>
<property-map resource="PartyUiLabels" map-name="uiLabelMap" global="true"/>
<set field="title" value="${uiLabelMap.PartyLookupUserLoginAndPartyDetails}"/>
<set field="entityName" value="UserLoginAndPartyDetails"/>
<set field="queryString" from-field="result.queryString"/>
<set field="viewIndex" from-field="parameters.VIEW_INDEX" type="Integer" default-value="0"/>
<property-to-field resource="widget" property="widget.form.defaultViewSize" field="viewSizeDefaultValue"/>
<set field="viewSize" from-field="parameters.VIEW_SIZE" type="Integer" default-value="${viewSizeDefaultValue}"/>
<set field="searchFields" value="[userLoginId, partyId, firstName, lastName, groupName]"/>
<script location="component://party/groovyScripts/party/StatusCondition.groovy"/>
</actions>
<widgets>
<decorator-screen name="LookupDecorator" location="component://common/widget/CommonScreens.xml">
<decorator-section name="search-options">
<include-form name="LookupUserLoginAndPartyDetails" location="component://party/widget/partymgr/LookupForms.xml"/>
</decorator-section>
<decorator-section name="search-results">
<include-form name="ListLookupUserLoginAndPartyDetails" location="component://party/widget/partymgr/LookupForms.xml"/>
</decorator-section>
</decorator-screen>
</widgets>
</section>
</screen>
<screen name="LookupPartyGroup">
<section>
<condition>
<if-service-permission service-name="partyBasePermissionCheck" main-action="VIEW"/>
</condition>
<actions>
<property-map resource="PartyUiLabels" map-name="uiLabelMap" global="true"/>
<set field="title" value="${uiLabelMap.PartyLookupPartyGroup}"/>
<set field="entityName" value="PartyAndGroup"/>
<set field="searchFields" value="[partyId, groupName, comments]"/>
<script location="component://party/groovyScripts/party/StatusCondition.groovy"/>
</actions>
<widgets>
<decorator-screen name="LookupDecorator" location="component://common/widget/CommonScreens.xml">
<decorator-section name="search-options">
<include-form name="LookupPartyGroup" location="component://party/widget/partymgr/LookupForms.xml"/>
</decorator-section>
<decorator-section name="search-results">
<include-form name="ListLookupPartyGroup" location="component://party/widget/partymgr/LookupForms.xml"/>
</decorator-section>
</decorator-screen>
</widgets>
</section>
</screen>
<screen name="LookupAccount">
<section>
<condition>
<if-service-permission service-name="partyBasePermissionCheck" main-action="VIEW"/>
</condition>
<actions>
<property-map resource="PartyUiLabels" map-name="uiLabelMap" global="true"/>
<set field="title" value="${uiLabelMap.PartyLookupAccount}"/>
<set field="entityName" value="PartyRoleAndPartyDetail"/>
<set field="searchFields" value="[partyId, groupName, firstName, lastName]"/>
<set field="conditionFields.roleTypeId" value="ACCOUNT"/>
<set field="parameters.roleTypeId" value="ACCOUNT"/>
</actions>
<widgets>
<decorator-screen name="LookupDecorator" location="component://common/widget/CommonScreens.xml">
<decorator-section name="search-options">
<include-form name="LookupPartyGroup" location="component://party/widget/partymgr/LookupForms.xml"/>
</decorator-section>
<decorator-section name="search-results">
<include-form name="ListLookupPartyGroup" location="component://party/widget/partymgr/LookupForms.xml"/>
</decorator-section>
</decorator-screen>
</widgets>
</section>
</screen>
<!-- PartyClassificationGroup Lookup Screen -->
<screen name="LookupPartyClassificationGroup">
<section>
<condition>
<if-service-permission service-name="partyBasePermissionCheck" main-action="VIEW"/>
</condition>
<actions>
<property-map resource="PartyUiLabels" map-name="uiLabelMap" global="true"/>
<set field="title" value="${uiLabelMap.PartyLookupPartyClassificationGroup}"/>
<set field="entityName" value="PartyClassificationGroup"/>
<set field="searchFields" value="[partyClassificationGroupId, parentGroupId, description]"/>
<set field="queryString" from-field="result.queryString"/>
<set field="viewIndex" from-field="parameters.VIEW_INDEX" type="Integer" default-value="0"/>
<property-to-field resource="widget" property="widget.form.defaultViewSize" field="viewSizeDefaultValue"/>
<set field="viewSize" from-field="parameters.VIEW_SIZE" type="Integer" default-value="${viewSizeDefaultValue}"/>
</actions>
<widgets>
<decorator-screen name="LookupDecorator" location="component://common/widget/CommonScreens.xml">
<decorator-section name="search-options">
<include-form name="LookupPartyClassificationGroup" location="component://party/widget/partymgr/LookupForms.xml"/>
</decorator-section>
<decorator-section name="search-results">
<include-form name="ListLookupPartyClassificationGroup" location="component://party/widget/partymgr/LookupForms.xml"/>
</decorator-section>
</decorator-screen>
</widgets>
</section>
</screen>
<screen name="LookupCommEvent">
<section>
<actions>
<property-map resource="PartyUiLabels" map-name="uiLabelMap" global="true"/>
<property-map resource="MarketingUiLabels" map-name="uiLabelMap" global="true"/>
<set field="entityName" value="CommunicationEvent"/>
<set field="searchFields" value="[communicationEventId, subject]"/>
<set field="title" value="${uiLabelMap.PartyLookupPartyCommEvent}"/>
<set field="tabButtonItem" value="ContactList"/>
</actions>
<widgets>
<decorator-screen name="LookupDecorator" location="component://common/widget/CommonScreens.xml">
<decorator-section name="search-options">
<include-form name="LookupCommEvent" location="component://party/widget/partymgr/LookupForms.xml"/>
</decorator-section>
<decorator-section name="search-results">
<include-form name="ListLookupCommEvent" location="component://party/widget/partymgr/LookupForms.xml"/>
</decorator-section>
</decorator-screen>
</widgets>
</section>
</screen>
<screen name="LookupContactMech">
<section>
<actions>
<property-map resource="PartyUiLabels" map-name="uiLabelMap" global="true"/>
<set field="title" value="${uiLabelMap.PartyLookupContactMech}"/>
<set field="entityName" value="PartyAndContactMech"/>
<set field="searchFields" value="[contactMechId, partyId, contactMechTypeId, infoString, paToName]"/>
<script location="component://party/groovyScripts/party/StatusCondition.groovy"/>
<set field="viewIndex" from-field="parameters.VIEW_INDEX" type="Integer" default-value="0"/>
<property-to-field resource="widget" property="widget.form.defaultViewSize" field="viewSizeDefaultValue"/>
<set field="viewSize" from-field="parameters.VIEW_SIZE" type="Integer" default-value="${viewSizeDefaultValue}"/>
</actions>
<widgets>
<decorator-screen name="LookupDecorator" location="component://common/widget/CommonScreens.xml">
<decorator-section name="search-options">
<include-form name="LookupContactMech" location="component://party/widget/partymgr/LookupForms.xml"/>
</decorator-section>
<decorator-section name="search-results">
<include-form name="ListLookupContactMech" location="component://party/widget/partymgr/LookupForms.xml"/>
</decorator-section>
</decorator-screen>
</widgets>
</section>
</screen>
<screen name="LookupInternalOrganization">
<section>
<condition>
<if-service-permission service-name="partyBasePermissionCheck" main-action="VIEW"/>
</condition>
<actions>
<property-map resource="PartyUiLabels" map-name="uiLabelMap" global="true"/>
<set field="title" value="${uiLabelMap.PartyLookupInternalOrganization}"/>
<set field="entityName" value="PartyRoleAndPartyDetail"/>
<set field="roleTypeId" value="INTERNAL_ORGANIZATIO"/>
<set field="searchFields" value="[partyId, groupName, partyGroupComments]"/>
<script location="component://party/groovyScripts/party/StatusCondition.groovy"/>
<set field="conditionFields.roleTypeId" value="INTERNAL_ORGANIZATIO" />
</actions>
<widgets>
<decorator-screen name="LookupDecorator" location="component://common/widget/CommonScreens.xml">
<decorator-section name="search-options">
<include-form name="LookupInternalOrganization" location="component://party/widget/partymgr/LookupForms.xml"/>
</decorator-section>
<decorator-section name="search-results">
<include-form name="ListLookupPartyGroup" location="component://party/widget/partymgr/LookupForms.xml"/>
</decorator-section>
</decorator-screen>
</widgets>
</section>
</screen>
</screens>