From 9bbc6ad408fa29b01c25fb0dc7700ae9bade6798 Mon Sep 17 00:00:00 2001 From: Lei OT Date: Mon, 22 Jul 2024 10:07:28 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20Alipay=E9=80=80=E6=AC=BE=E8=B4=A6?= =?UTF-8?q?=E5=8D=95=E7=9A=84=E5=A4=84=E7=90=86,=E4=B8=8D=E5=8F=91?= =?UTF-8?q?=E9=80=81=E4=BB=A5=E5=89=8D=E7=9A=84=E9=82=AE=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- webht/third_party/pay/controllers/AlipayTradeService.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/webht/third_party/pay/controllers/AlipayTradeService.php b/webht/third_party/pay/controllers/AlipayTradeService.php index 8bc88efa..ea4abcbd 100644 --- a/webht/third_party/pay/controllers/AlipayTradeService.php +++ b/webht/third_party/pay/controllers/AlipayTradeService.php @@ -687,7 +687,11 @@ class AlipayTradeService extends CI_Controller $opi_firstname = !empty($advisor_info->OPI_FirstName) ? $advisor_info->OPI_FirstName : !empty($advisor_info->OPI_Name) ? $advisor_info->OPI_Name : ''; //lussie //没有外联信息表示订单未分配 - if (empty($opi_email) || empty($opi_firstname)) { + // if (empty($opi_email) && !empty($opi_firstname)) { + // $this->Alipay_note_model->update_send($item->ALI_dealId, 'send'); + // return false; + // } + if (empty($opi_email) && empty($opi_firstname)) { $this->Alipay_note_model->update_send($item->ALI_dealId, 'sendfail'); return false; }