Ekdant-Online-Store/extension/opencart/catalog/model/total/voucher.php
2024-08-06 18:06:00 +05:45

86 lines
2.2 KiB
PHP

<?php
namespace Opencart\Catalog\Model\Extension\Opencart\Total;
/**
* Class Voucher
*
* @package
*/
class Voucher extends \Opencart\System\Engine\Model {
/**
* @param array $totals
* @param array $taxes
* @param float $total
*
* @return void
*/
public function getTotal(array &$totals, array &$taxes, float &$total): void {
if (isset($this->session->data['voucher'])) {
$this->load->language('extension/opencart/total/voucher', 'voucher');
$this->load->model('checkout/voucher');
$voucher_info = $this->model_checkout_voucher->getVoucher($this->session->data['voucher']);
if ($voucher_info) {
$amount = min($voucher_info['amount'], $total);
if ($amount > 0) {
$totals[] = [
'extension' => 'opencart',
'code' => 'voucher',
'title' => sprintf($this->language->get('voucher_text_voucher'), $this->session->data['voucher']),
'value' => -$amount,
'sort_order' => (int)$this->config->get('total_voucher_sort_order')
];
$total -= $amount;
} else {
unset($this->session->data['voucher']);
}
} else {
unset($this->session->data['voucher']);
}
}
}
/**
* @param array $order_info
* @param array $order_total
*
* @return int
*/
public function confirm(array $order_info, array $order_total): int {
$code = '';
$start = strpos($order_total['title'], '(') + 1;
$end = strrpos($order_total['title'], ')');
if ($start && $end) {
$code = substr($order_total['title'], $start, $end - $start);
}
if ($code) {
$this->load->model('checkout/voucher');
$voucher_info = $this->model_checkout_voucher->getVoucher($code);
if ($voucher_info) {
$this->db->query("INSERT INTO `" . DB_PREFIX . "voucher_history` SET `voucher_id` = '" . (int)$voucher_info['voucher_id'] . "', `order_id` = '" . (int)$order_info['order_id'] . "', `amount` = '" . (float)$order_total['value'] . "', `date_added` = NOW()");
} else {
return $this->config->get('config_fraud_status_id');
}
}
return 0;
}
/**
* @param int $order_id
*
* @return void
*/
public function unconfirm(int $order_id): void {
$this->db->query("DELETE FROM `" . DB_PREFIX . "voucher_history` WHERE `order_id` = '" . (int)$order_id . "'");
}
}