29 $viewBlock = $this->salesOrderView->getOrderTotalsBlock();
30 $actualPrices[
'subtotal_excl_tax'] = $viewBlock->getSubtotal();
31 $actualPrices[
'subtotal_incl_tax'] =
null;
33 $actualPrices[
'discount'] = $viewBlock->getDiscount();
35 $actualPrices[
'shipping_excl_tax'] = $viewBlock->getShippingExclTax();
36 $actualPrices[
'shipping_incl_tax'] = $viewBlock->getShippingInclTax();
37 $actualPrices[
'tax'] = $viewBlock->getTax();
39 $actualPrices[
'grand_total_excl_tax'] = $viewBlock->getGrandTotal();
40 $actualPrices[
'grand_total_incl_tax'] =
null;
52 $totalsBlock = $this->orderInvoiceNew->getTotalsBlock();
53 $actualPrices[
'subtotal_excl_tax'] = $totalsBlock->getSubtotal();
54 $actualPrices[
'subtotal_incl_tax'] =
null;
56 $actualPrices[
'discount'] = $totalsBlock->getDiscount();
58 $actualPrices[
'shipping_excl_tax'] = $totalsBlock->getShippingExclTax();
59 $actualPrices[
'shipping_incl_tax'] = $totalsBlock->getShippingInclTax();
60 $actualPrices[
'tax'] = $totalsBlock->getTax();
62 $actualPrices[
'grand_total_excl_tax'] = $totalsBlock->getGrandTotal();
63 $actualPrices[
'grand_total_incl_tax'] =
null;
76 $totalsBlock = $this->orderCreditMemoNew->getTotalsBlock();
77 $actualPrices[
'subtotal_excl_tax'] = $totalsBlock->getSubtotal();
78 $actualPrices[
'subtotal_incl_tax'] =
null;
80 $actualPrices[
'discount'] = $totalsBlock->getDiscount();
82 $actualPrices[
'tax'] = $totalsBlock->getTax();
83 $actualPrices[
'grand_total_excl_tax'] = $totalsBlock->getGrandTotal();
84 $actualPrices[
'grand_total_incl_tax'] =
null;
getOrderTotals($actualPrices)
getInvoiceNewTotals($actualPrices)
getCreditMemoNewTotals($actualPrices)