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