29 $reviewBlock = $this->checkoutOnepage->getReviewBlock();
30 $actualPrices[
'subtotal_excl_tax'] =
null;
31 $actualPrices[
'subtotal_incl_tax'] = $reviewBlock->getSubtotal();
32 $actualPrices[
'discount'] = $reviewBlock->getDiscount();
33 $actualPrices[
'shipping_excl_tax'] = $reviewBlock->getShippingExclTax();
34 $actualPrices[
'shipping_incl_tax'] = $reviewBlock->getShippingInclTax();
35 $actualPrices[
'tax'] = $reviewBlock->getTax();
36 $actualPrices[
'grand_total_excl_tax'] = $reviewBlock->getGrandTotalExclTax();
37 $actualPrices[
'grand_total_incl_tax'] = $reviewBlock->getGrandTotalInclTax();
50 $viewBlock = $this->customerOrderView->getOrderViewBlock();
51 $actualPrices[
'subtotal_excl_tax'] =
null;
52 $actualPrices[
'subtotal_incl_tax'] = $viewBlock->getSubtotal();
53 $actualPrices[
'discount'] = $viewBlock->getDiscount();
54 $actualPrices[
'shipping_excl_tax'] = $viewBlock->getShippingExclTax();
55 $actualPrices[
'shipping_incl_tax'] = $viewBlock->getShippingInclTax();
56 $actualPrices[
'tax'] = $viewBlock->getTax();
57 $actualPrices[
'grand_total_excl_tax'] = $viewBlock->getGrandTotal();
58 $actualPrices[
'grand_total_incl_tax'] = $viewBlock->getGrandTotalInclTax();
getOrderTotals($actualPrices)
getReviewTotals($actualPrices)