fix: PayPal 收款记录审核提示

webht/payment
Lei OT 1 year ago
parent e1829d5685
commit 3c0dcfa90c

@ -99,12 +99,12 @@ class Paypal_model extends CI_Model {
where GAI_COLI_SN = $coli_sn and GAI_AccreditNo = '$pn_txn_id'"; where GAI_COLI_SN = $coli_sn and GAI_AccreditNo = '$pn_txn_id'";
$info_query = $this->HT->query($info_sql); $info_query = $this->HT->query($info_sql);
$info_result = $info_query->result(); $info_result = $info_query->result_array();
$group_accout_info = array( $group_accout_info = array(
'GAI_SN' => 0, 'GAI_SN' => 0,
'GAI_State' => 0 'GAI_State' => 0
); );
if (!empty($info_empty)) { if (!empty($info_result)) {
$group_accout_info = $info_result[0]; $group_accout_info = $info_result[0];
} }
return $group_accout_info; return $group_accout_info;

Loading…
Cancel
Save