Skip to content
This repository has been archived by the owner on May 9, 2020. It is now read-only.

Commit

Permalink
Applied fix from trunk for revision: 827730
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.apache.org/repos/asf/ofbiz/branches/release4.0@827733 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
eigood committed Oct 20, 2009
1 parent 69af6d4 commit 3517b6c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions applications/order/webapp/ordermgr/order/orderlist.ftl
Expand Up @@ -194,9 +194,13 @@ under the License.
<#assign billToPartyNameResult = dispatcher.runSync("getPartyNameForDate", Static["org.ofbiz.base.util.UtilMisc"].toMap("partyId", billToParty.partyId, "compareDate", orderHeader.orderDate, "userLogin", userLogin))/>
<#assign billTo = billToPartyNameResult.fullName?default("[${uiLabelMap.OrderPartyNameNotFound}]")/>
<#-- <#assign billTo = Static["org.ofbiz.party.party.PartyHelper"].getPartyName(billToParty, true)?if_exists> -->
<#else>
<#assign billTo = ''/>
</#if>
<#if billFromParty?has_content>
<#assign billFrom = Static["org.ofbiz.party.party.PartyHelper"].getPartyName(billFromParty, true)?if_exists>
<#else>
<#assign billFrom = ''/>
</#if>
<tr><td colspan="9"><hr class="sepbar"/></td></tr>
<tr>
Expand Down
2 changes: 1 addition & 1 deletion mergefromtrunk.sh
@@ -1,5 +1,5 @@
#!/bin/sh

set -e
prevRev=`expr $1 - 1`
svn merge -r $prevRev:$1 https://svn.apache.org/repos/asf/ofbiz/trunk
svn commit -m "Applied fix from trunk for revision: $1"
Expand Down

0 comments on commit 3517b6c

Please sign in to comment.