diff --git a/webht/third_party/paypal/controllers/index.php b/webht/third_party/paypal/controllers/index.php index 0dcb0f40..56824536 100644 --- a/webht/third_party/paypal/controllers/index.php +++ b/webht/third_party/paypal/controllers/index.php @@ -834,6 +834,11 @@ class Index extends CI_Controller { // $this->Note_model->update_send($item->pn_txn_id, 'send'); continue; } + // 撤销付款:允许手动处理 + if (strtolower($item->pn_payment_status) == 'reversed' && $handpick===true ) { + $this->send_refund($item, $handpick, $old_ssje); + continue; + } //只处理完成状态,其他状态由陆燕处理 if (strtolower($item->pn_payment_status) !== 'completed') {