This commit is contained in:
dzl
2025-10-20 17:21:37 +08:00
parent e535e8a9c5
commit 4774262178

View File

@@ -1373,9 +1373,9 @@ router.post('/confirm-payment', auth, async (req, res) => {
}); });
await connection.execute( await connection.execute(
`UPDATE orders SET status = 'pending', address = ?, updated_at = NOW() `UPDATE orders SET status = 'pending', address = ?, updated_at = NOW(), coupon_record_id = ?
WHERE id = ?`, WHERE id = ?`,
[addressStr, order_id] [addressStr, couponRecordId === undefined ? null : couponRecordId, order_id]
); );
// 减组合库存 // 减组合库存