|
|
@@ -208,7 +208,7 @@ class SupefinaSpeiCashierLogic implements CashierInterFace
|
|
|
// 01/02/00 视为成功,其它(如 03/04 等)视为失败;实际项目中可按回调字典表精细化。
|
|
|
$status = (string)($post['status'] ?? '');
|
|
|
$orderStatus = 0;
|
|
|
- if (in_array($status, ['00', '01'], true)) {
|
|
|
+ if (in_array($status, ['01'], true)) {
|
|
|
$orderStatus = 1; // 成功
|
|
|
} elseif ($status !== '') {
|
|
|
$orderStatus = 2; // 失败
|