blob: 48b77fe62f9145b5ea9394fe39a18fd4f8d77444 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<?php
class ModelExtensionTotalSubTotal extends Model {
public function getTotal($total) {
$this->load->language('extension/total/sub_total');
$sub_total = $this->cart->getSubTotal();
if (!empty($this->session->data['vouchers'])) {
foreach ($this->session->data['vouchers'] as $voucher) {
$sub_total += $voucher['amount'];
}
}
$total['totals'][] = array(
'code' => 'sub_total',
'title' => $this->language->get('text_sub_total'),
'value' => $sub_total,
'sort_order' => $this->config->get('sub_total_sort_order')
);
$total['total'] += $sub_total;
}
}
|