61 lines
1.7 KiB
PHP
61 lines
1.7 KiB
PHP
<?php
|
|
namespace Opencart\Catalog\Model\Extension\Opencart\Total;
|
|
/**
|
|
* Class Credit
|
|
*
|
|
* @package
|
|
*/
|
|
class Credit 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 {
|
|
$this->load->language('extension/opencart/total/credit');
|
|
|
|
$balance = $this->customer->getBalance();
|
|
|
|
if ((float)$balance) {
|
|
$credit = min($balance, $total);
|
|
|
|
if ((float)$credit > 0) {
|
|
$totals[] = [
|
|
'extension' => 'opencart',
|
|
'code' => 'credit',
|
|
'title' => $this->language->get('text_credit'),
|
|
'value' => -$credit,
|
|
'sort_order' => (int)$this->config->get('total_credit_sort_order')
|
|
];
|
|
|
|
$total -= $credit;
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @param array $order_info
|
|
* @param array $order_total
|
|
*
|
|
* @return void
|
|
*/
|
|
public function confirm(array $order_info, array $order_total): void {
|
|
$this->load->language('extension/opencart/total/credit');
|
|
|
|
if ($order_info['customer_id']) {
|
|
$this->db->query("INSERT INTO `" . DB_PREFIX . "customer_transaction` SET `customer_id` = '" . (int)$order_info['customer_id'] . "', `order_id` = '" . (int)$order_info['order_id'] . "', `description` = '" . $this->db->escape(sprintf($this->language->get('text_order_id'), (int)$order_info['order_id'])) . "', `amount` = '" . (float)$order_total['value'] . "', `date_added` = NOW()");
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @param int $order_id
|
|
*
|
|
* @return void
|
|
*/
|
|
public function unconfirm(int $order_id): void {
|
|
$this->db->query("DELETE FROM `" . DB_PREFIX . "customer_transaction` WHERE `order_id` = '" . (int)$order_id . "'");
|
|
}
|
|
}
|