Skip to content

Commit

Permalink
Added OrderReadHelper method to get order item tax for display just l…
Browse files Browse the repository at this point in the history
…ike the get order tax for display

git-svn-id: https://svn.apache.org/repos/asf/ofbiz/trunk@1079709 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
jonesde committed Mar 9, 2011
1 parent de3b8e3 commit 9ac72de
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2936,6 +2936,10 @@ public static Map<String, Object> getOrderTaxByTaxAuthGeoAndParty(List<GenericVa
return result;
}

public static Map<String, Object> getOrderItemTaxByTaxAuthGeoAndPartyForDisplay(GenericValue orderItem, List<GenericValue> orderAdjustmentsOriginal) {
return getOrderTaxByTaxAuthGeoAndPartyForDisplay(getOrderItemAdjustmentList(orderItem, orderAdjustmentsOriginal));
}

public static Map<String, Object> getOrderTaxByTaxAuthGeoAndPartyForDisplay(List<GenericValue> orderAdjustmentsOriginal) {
BigDecimal taxGrandTotal = BigDecimal.ZERO;
List<Map<String, Object>> taxByTaxAuthGeoAndPartyList = FastList.newInstance();
Expand Down

0 comments on commit 9ac72de

Please sign in to comment.