blob: 869138de7fb99c8866b8a7e1f4ca3d625addbd20 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
<?php
/**
* @package OpenCart
* @author Meng Wenbin
* @copyright Copyright (c) 2010 - 2017, Chengdu Guangda Network Technology Co. Ltd. (https://www.opencart.cn/)
* @license https://opensource.org/licenses/GPL-3.0
* @link https://www.opencart.cn
*/
class ModelExtensionPaymentWechatPay extends Model {
public function getMethod($address, $total) {
$this->load->language('extension/payment/wechat_pay');
$query = $this->db->query("SELECT * FROM " . DB_PREFIX . "zone_to_geo_zone WHERE geo_zone_id = '" . (int)$this->config->get('payment_wechat_pay_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_wechat_pay_total') > 0 && $this->config->get('payment_wechat_pay_total') > $total) {
$status = false;
} elseif (!$this->config->get('payment_wechat_pay_geo_zone_id')) {
$status = true;
} elseif ($query->num_rows) {
$status = true;
} else {
$status = false;
}
$method_data = array();
if ($status) {
$method_data = array(
'code' => 'wechat_pay',
'title' => $this->language->get('text_title'),
'terms' => '',
'sort_order' => $this->config->get('payment_wechat_pay_sort_order')
);
}
return $method_data;
}
}
|