支付修复Bug

This commit is contained in:
2025-03-25 10:05:10 +08:00
parent d7289713fc
commit 7f4dd6ce62

View File

@@ -153,8 +153,9 @@ class ProductOrderSubmitForm extends BaseModel
$t->rollback();
throw $exception;
}
// 暂时改成0
return [
'is_paid' => 1,
'is_paid' => 0,
'order_id' => $productOrder['id'],
];
}
@@ -209,7 +210,7 @@ class ProductOrderSubmitForm extends BaseModel
throw $exception;
}
return [
'is_paid' => 1,
'is_paid' => 0,
'order_id' => $productOrder['id'],
];
}