Linux altar53.supremepanel53.com 4.18.0-553.8.1.lve.el8.x86_64 #1 SMP Thu Jul 4 16:24:39 UTC 2024 x86_64
/ home/ bdapparelinfo/ dhakazone.com/ catalog/ model/ extension/ total/ |
|
<?php class ModelExtensionTotalLowOrderFee extends Model { public function getTotal($total) { if ($this->cart->getSubTotal() && ($this->cart->getSubTotal() < $this->config->get('total_low_order_fee_total'))) { $this->load->language('extension/total/low_order_fee'); $total['totals'][] = array( 'code' => 'low_order_fee', 'title' => $this->language->get('text_low_order_fee'), 'value' => $this->config->get('total_low_order_fee_fee'), 'sort_order' => $this->config->get('total_low_order_fee_sort_order') ); if ($this->config->get('total_low_order_fee_tax_class_id')) { $tax_rates = $this->tax->getRates($this->config->get('total_low_order_fee_fee'), $this->config->get('total_low_order_fee_tax_class_id')); foreach ($tax_rates as $tax_rate) { if (!isset($total['taxes'][$tax_rate['tax_rate_id']])) { $total['taxes'][$tax_rate['tax_rate_id']] = $tax_rate['amount']; } else { $total['taxes'][$tax_rate['tax_rate_id']] += $tax_rate['amount']; } } } $total['total'] += $this->config->get('total_low_order_fee_fee'); } } }