diff options
Diffstat (limited to 'public/catalog/model/extension/payment/realex.php')
-rw-r--r-- | public/catalog/model/extension/payment/realex.php | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/public/catalog/model/extension/payment/realex.php b/public/catalog/model/extension/payment/realex.php new file mode 100644 index 0000000..a71db08 --- /dev/null +++ b/public/catalog/model/extension/payment/realex.php @@ -0,0 +1,58 @@ +<?php +class ModelExtensionPaymentRealex extends Model { + public function getMethod($address, $total) { + $this->load->language('extension/payment/realex'); + + $query = $this->db->query("SELECT * FROM " . DB_PREFIX . "zone_to_geo_zone WHERE geo_zone_id = '" . (int)$this->config->get('payment_realex_geo_zone_id') . "' AND country_id = '" . (int)$address['country_id'] . "' AND (zone_id = '" . (int)$address['zone_id'] . "' OR zone_id = '0')"); + + if ($this->config->get('payment_realex_total') > 0 && $this->config->get('payment_realex_total') > $total) { + $status = false; + } elseif (!$this->config->get('payment_realex_geo_zone_id')) { + $status = true; + } elseif ($query->num_rows) { + $status = true; + } else { + $status = false; + } + + $method_data = array(); + + if ($status) { + $method_data = array( + 'code' => 'realex', + 'title' => $this->language->get('text_title'), + 'terms' => '', + 'sort_order' => $this->config->get('payment_realex_sort_order') + ); + } + + return $method_data; + } + + public function addOrder($order_info, $pas_ref, $auth_code, $account, $order_ref) { + if ($this->config->get('payment_realex_auto_settle') == 1) { + $settle_status = 1; + } else { + $settle_status = 0; + } + + $this->db->query("INSERT INTO `" . DB_PREFIX . "realex_order` SET `order_id` = '" . (int)$order_info['order_id'] . "', `settle_type` = '" . (int)$this->config->get('payment_realex_auto_settle') . "', `order_ref` = '" . $this->db->escape($order_ref) . "', `order_ref_previous` = '" . $this->db->escape($order_ref) . "', `date_added` = now(), `date_modified` = now(), `capture_status` = '" . (int)$settle_status . "', `currency_code` = '" . $this->db->escape($order_info['currency_code']) . "', `pasref` = '" . $this->db->escape($pas_ref) . "', `pasref_previous` = '" . $this->db->escape($pas_ref) . "', `authcode` = '" . $this->db->escape($auth_code) . "', `account` = '" . $this->db->escape($account) . "', `total` = '" . $this->currency->format($order_info['total'], $order_info['currency_code'], $order_info['currency_value'], false) . "'"); + + return $this->db->getLastId(); + } + + public function addTransaction($realex_order_id, $type, $order_info) { + $this->db->query("INSERT INTO `" . DB_PREFIX . "realex_order_transaction` SET `realex_order_id` = '" . (int)$realex_order_id . "', `date_added` = now(), `type` = '" . $this->db->escape($type) . "', `amount` = '" . $this->currency->format($order_info['total'], $order_info['currency_code'], $order_info['currency_value'], false) . "'"); + } + + public function addHistory($order_id, $order_status_id, $comment) { + $this->db->query("INSERT INTO " . DB_PREFIX . "order_history SET order_id = '" . (int)$order_id . "', order_status_id = '" . (int)$order_status_id . "', notify = '0', comment = '" . $this->db->escape($comment) . "', date_added = NOW()"); + } + + public function logger($message) { + if ($this->config->get('payment_realex_debug') == 1) { + $log = new Log('realex.log'); + $log->write($message); + } + } +}
\ No newline at end of file |