This is an automated email from the ASF dual-hosted git repository.
pawan pushed a commit to branch trunk
in repository
https://gitbox.apache.org/repos/asf/ofbiz-framework.gitThe following commit(s) were added to refs/heads/trunk by this push:
new d106b91 Improved: UI improvement on View Order page(OFBIZ-10985)
d106b91 is described below
commit d106b91dd048fb0f1bb0864672aead972d7aac01
Author: Pawan Verma <
[hidden email]>
AuthorDate: Tue Jun 2 17:34:29 2020 +0530
Improved: UI improvement on View Order page(OFBIZ-10985)
Thanks, Rashi for report and Aishwary for initial patch and garima and jacques for the review.
---
applications/order/template/order/OrderContactInfo.ftl | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/applications/order/template/order/OrderContactInfo.ftl b/applications/order/template/order/OrderContactInfo.ftl
index a4513ba..a70176d 100644
--- a/applications/order/template/order/OrderContactInfo.ftl
+++ b/applications/order/template/order/OrderContactInfo.ftl
@@ -83,7 +83,7 @@ under the License.
${displayPartyNameResult.fullName?default("[${uiLabelMap.OrderPartyNameNotFound}]")}
</#if>
<#if partyId??>
- (<a href="${customerDetailLink}${partyId}${StringUtil.wrapString(externalKeyParam)}" target="partymgr" class="buttontext">${partyId}</a>)
+ <a href="${customerDetailLink}${partyId}${StringUtil.wrapString(externalKeyParam)}" target="partymgr" class="buttontext">(${partyId})</a>
<br/>
<#if (orderHeader.salesChannelEnumId)?? && orderHeader.salesChannelEnumId != "POS_SALES_CHANNEL">
<div>
@@ -148,7 +148,7 @@ under the License.
<div>
${contactMech.infoString}
<#if security.hasEntityPermission("ORDERMGR", "_SEND_CONFIRMATION", session)>
- (<a href="<@ofbizUrl>confirmationmailedit?orderId=${orderId}&partyId=${partyId}&sendTo=${contactMech.infoString}</@ofbizUrl>" class="buttontext">${uiLabelMap.OrderSendConfirmationEmail}</a>)
+ <a href="<@ofbizUrl>confirmationmailedit?orderId=${orderId}&partyId=${partyId}&sendTo=${contactMech.infoString}</@ofbizUrl>" class="buttontext">${uiLabelMap.OrderSendConfirmationEmail}</a>
<#else>
<a href="mailto:${contactMech.infoString}" class="buttontext">(${uiLabelMap.OrderSendEmail})</a>
</#if>