perf: PayPal 已录入订单但是外联没有设置邮箱, 忽略了

webht/payment
Lei OT 1 year ago
parent 56db24fc56
commit a1d4c4cce1

@ -1064,6 +1064,10 @@ class Index extends CI_Controller {
$opi_firstname = 'contact@arachina.com'; $opi_firstname = 'contact@arachina.com';
} }
//没有外联信息表示订单未分配 //没有外联信息表示订单未分配
if (empty($opi_email) && !empty($opi_firstname)) {
$this->Note_model->update_send($item->pn_txn_id, 'send', $item->pn_sn);
continue;
}
if (empty($opi_email) || empty($opi_firstname)) { if (empty($opi_email) || empty($opi_firstname)) {
$this->Note_model->update_send($item->pn_txn_id, 'sendfail', $item->pn_sn); $this->Note_model->update_send($item->pn_txn_id, 'sendfail', $item->pn_sn);
continue; continue;

Loading…
Cancel
Save