Author: jleroux
Date: Sun Nov 26 09:22:59 2017 New Revision: 1816373 URL: http://svn.apache.org/viewvc?rev=1816373&view=rev Log: Fixed: No option to create the account contacts in SFA component (OFBIZ-10010) Steps to regenerate: 1) Open URL https://demo-trunk.ofbiz.apache.org/sfa/control/FindAccounts 2) Select an account from the list or create a new account. 3) In the account profile page, click on "Create New" in the "List Related Contacts" section. Actual: No option to create the account contacts. Expected: There should be an option to create account's contact. Creates new request-map and screen definition to redirect 'Create New' link on proper screen. So that user can add contacts to the Account. Thanks: Rubia Elza Joshep for report and Pradeep Choudhary for patch Modified: ofbiz/ofbiz-framework/trunk/applications/party/webapp/partymgr/WEB-INF/controller.xml ofbiz/ofbiz-framework/trunk/applications/party/widget/partymgr/PartyMenus.xml ofbiz/ofbiz-framework/trunk/applications/party/widget/partymgr/PartyScreens.xml ofbiz/ofbiz-framework/trunk/applications/party/widget/partymgr/ProfileScreens.xml Modified: ofbiz/ofbiz-framework/trunk/applications/party/webapp/partymgr/WEB-INF/controller.xml URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-framework/trunk/applications/party/webapp/partymgr/WEB-INF/controller.xml?rev=1816373&r1=1816372&r2=1816373&view=diff ============================================================================== --- ofbiz/ofbiz-framework/trunk/applications/party/webapp/partymgr/WEB-INF/controller.xml (original) +++ ofbiz/ofbiz-framework/trunk/applications/party/webapp/partymgr/WEB-INF/controller.xml Sun Nov 26 09:22:59 2017 @@ -58,7 +58,8 @@ under the License. <request-map uri="PartyInvitationGroupAssocs"><security https="true" auth="true"/><response name="success" type="view" value="PartyInvitationGroupAssocs"/></request-map> <request-map uri="PartyInvitationRoleAssocs"><security https="true" auth="true"/><response name="success" type="view" value="PartyInvitationRoleAssocs"/></request-map> <request-map uri="AddPartyRelatedAccount"><security https="true" auth="true"/><response name="success" type="view" value="AddPartyRelatedAccount"/></request-map> - <!--Party Invitation Services--> + <request-map uri="AddAccountRelatedContact"><security https="true" auth="true"/><response name="success" type="view" value="AddAccountRelatedContact"/></request-map> + <!--Party Invitation Services--> <request-map uri="createPartyInvitation"> <security https="true" auth="true"/> <event type="service" invoke="createPartyInvitation"/> @@ -1429,6 +1430,7 @@ under the License. <view-map name="PartyGeoLocation" type="screen" page="component://party/widget/partymgr/PartyScreens.xml#PartyGeoLocation"/> <view-map name="GetPartyGeoLocation" type="screen" page="component://party/widget/partymgr/PartyScreens.xml#GetPartyGeoLocation"/> <view-map name="AddPartyRelatedAccount" type="screen" page="component://party/widget/partymgr/PartyScreens.xml#CreatePartyRelatedAccount"/> + <view-map name="AddAccountRelatedContact" type="screen" page="component://party/widget/partymgr/PartyScreens.xml#CreateAccountRelatedContact"/> <view-map name="UpdateCommOrders" type="screen" page="component://party/widget/partymgr/CommunicationEventScreens.xml#UpdateCommOrders"/> <view-map name="UpdateCommProducts" type="screen" page="component://party/widget/partymgr/CommunicationEventScreens.xml#UpdateCommProducts"/> Modified: ofbiz/ofbiz-framework/trunk/applications/party/widget/partymgr/PartyMenus.xml URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-framework/trunk/applications/party/widget/partymgr/PartyMenus.xml?rev=1816373&r1=1816372&r2=1816373&view=diff ============================================================================== --- ofbiz/ofbiz-framework/trunk/applications/party/widget/partymgr/PartyMenus.xml (original) +++ ofbiz/ofbiz-framework/trunk/applications/party/widget/partymgr/PartyMenus.xml Sun Nov 26 09:22:59 2017 @@ -731,6 +731,16 @@ </menu-item> </menu> + <menu name="AddRelAccountContacts"> + <menu-item name="add" title="${uiLabelMap.CommonCreateNew}"> + <link target="AddAccountRelatedContact"> + <parameter param-name="partyId"/> + <parameter param-name="portalPageId"/> + <parameter param-name="editPartyRel" value="Y"/> + </link> + </menu-item> + </menu> + <menu name="NewPartyIdentification"> <menu-item name="new" title="${uiLabelMap.CommonNew}"> <link target="viewidentifications"> Modified: ofbiz/ofbiz-framework/trunk/applications/party/widget/partymgr/PartyScreens.xml URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-framework/trunk/applications/party/widget/partymgr/PartyScreens.xml?rev=1816373&r1=1816372&r2=1816373&view=diff ============================================================================== --- ofbiz/ofbiz-framework/trunk/applications/party/widget/partymgr/PartyScreens.xml (original) +++ ofbiz/ofbiz-framework/trunk/applications/party/widget/partymgr/PartyScreens.xml Sun Nov 26 09:22:59 2017 @@ -595,7 +595,27 @@ under the License. </widgets> </section> </screen> - + + <screen name="CreateAccountRelatedContact"> + <section> + <actions> + <set field="titleProperty" value="PartyAddRelatedAccount"/> + <set field="tabButtonItem" value="viewprofile"/> + <set field="labelTitleProperty" value="PartyAddRelatedContact"/> + <set field="partyId" from-field="parameters.partyId"/> + </actions> + <widgets> + <decorator-screen name="CommonPartyDecorator" location="${parameters.mainDecoratorLocation}"> + <decorator-section name="body"> + <screenlet title="${uiLabelMap.PartyAddRelatedContact}"> + <include-form name="AddContact" location="component://party/widget/partymgr/PartyForms.xml"/> + </screenlet> + </decorator-section> + </decorator-screen> + </widgets> + </section> + </screen> + <screen name="EditUserLoginSecurityGroups"> <section> <actions> Modified: ofbiz/ofbiz-framework/trunk/applications/party/widget/partymgr/ProfileScreens.xml URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-framework/trunk/applications/party/widget/partymgr/ProfileScreens.xml?rev=1816373&r1=1816372&r2=1816373&view=diff ============================================================================== --- ofbiz/ofbiz-framework/trunk/applications/party/widget/partymgr/ProfileScreens.xml (original) +++ ofbiz/ofbiz-framework/trunk/applications/party/widget/partymgr/ProfileScreens.xml Sun Nov 26 09:22:59 2017 @@ -524,8 +524,8 @@ <if-compare field="party.partyTypeId" operator="equals" value="PARTY_GROUP"/> </condition> <widgets> - <screenlet title="${uiLabelMap.PartyListRelatedContacts}" navigation-menu-name="AddRelContactAccounts"> - <include-menu name="AddRelContactAccounts" location="component://party/widget/partymgr/PartyMenus.xml"/> + <screenlet title="${uiLabelMap.PartyListRelatedContacts}" navigation-menu-name="AddRelAccountContacts"> + <include-menu name="AddRelAccountContacts" location="component://party/widget/partymgr/PartyMenus.xml"/> <section> <condition> <not><if-empty field="parameters.editPartyRel"/></not> |
Free forum by Nabble | Edit this page |