29 $viewBlock = $this->salesOrderView->getOrderTotalsBlock();
30 $actualPrices[
'subtotal_excl_tax'] = $viewBlock->getSubtotalExclTax();
31 $actualPrices[
'subtotal_incl_tax'] = $viewBlock->getSubtotalInclTax();
33 $actualPrices[
'discount'] = $viewBlock->getDiscount();
35 $actualPrices[
'shipping_excl_tax'] = $viewBlock->getShippingExclTax();
36 $actualPrices[
'shipping_incl_tax'] = $viewBlock->getShippingInclTax();
37 $actualPrices[
'tax'] = $viewBlock->getTax();
38 $actualPrices[
'grand_total_excl_tax'] = $viewBlock->getGrandTotalExclTax();
39 $actualPrices[
'grand_total_incl_tax'] = $viewBlock->getGrandTotalInclTax();
52 $totalsBlock = $this->orderInvoiceNew->getTotalsBlock();
53 $actualPrices[
'subtotal_excl_tax'] = $totalsBlock->getSubtotalExclTax();
54 $actualPrices[
'subtotal_incl_tax'] = $totalsBlock->getSubtotalInclTax();
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->getGrandTotalExclTax();
63 $actualPrices[
'grand_total_incl_tax'] = $totalsBlock->getGrandTotalInclTax();
76 $totalsBlock = $this->orderCreditMemoNew->getTotalsBlock();
77 $actualPrices[
'subtotal_excl_tax'] = $totalsBlock->getSubtotalExclTax();
78 $actualPrices[
'subtotal_incl_tax'] = $totalsBlock->getSubtotalInclTax();
80 $actualPrices[
'discount'] = $totalsBlock->getDiscount();
82 $actualPrices[
'tax'] = $totalsBlock->getTax();
83 $actualPrices[
'grand_total_excl_tax'] = $totalsBlock->getGrandTotalExclTax();
84 $actualPrices[
'grand_total_incl_tax'] = $totalsBlock->getGrandTotalInclTax();
getInvoiceNewTotals($actualPrices)
getCreditMemoNewTotals($actualPrices)
getOrderTotals($actualPrices)