|
|
|
@ -37,8 +37,9 @@ class PaymentService extends CI_Controller {
|
|
|
|
|
$this->permission->is_admin(true);
|
|
|
|
|
$data = array();
|
|
|
|
|
$method = $this->input->get_post("method");
|
|
|
|
|
$method = $method===false ? null : $method; // explode(',', $method);
|
|
|
|
|
$method = $method===false ? '15016,15035' : $method; // explode(',', $method);
|
|
|
|
|
$data['method_code'] = $method ? $method : '';
|
|
|
|
|
$method = $method==='all' ? null : $method; // explode(',', $method);
|
|
|
|
|
// $data["paytext"] = $this->payment_status();
|
|
|
|
|
if (isset($this->code_brandname[$method])) {
|
|
|
|
|
$data['method_code'] = $method;
|
|
|
|
|