form.setPriceTotal(formatter.formatCurrency(orderEngine.getOrderSubTotal()));
form.setTaxTotal(formatter.formatCurrency(orderEngine.getOrderTaxTotal()));
form.setShippingTotal(formatter.formatCurrency(orderHeader.getShippingTotal()));
form.setShippingDiscountTotal(formatter.formatCurrency(orderHeader.getShippingDiscountTotal()));
form.setShippingOrderTotal(formatter.formatCurrency(orderHeader.getShippingTotal() - orderHeader.getShippingDiscountTotal()));
form.setOrderTotal(formatter.formatCurrency(orderHeader.getOrderTotal()));
OrderAddress custAddress = orderHeader.getCustAddress();
if (custAddress != null) {
ShoppingCartAddressActionForm custAddressForm = new ShoppingCartAddressActionForm();
custAddressForm.setCustUseAddress(custAddress.getCustUseAddress());