🐛 Fix cannot get payer wallet
This commit is contained in:
parent
d6be6d2da4
commit
2271e7eaf1
@ -109,7 +109,7 @@ func payOrder(c *fiber.Ctx) error {
|
|||||||
return fiber.NewError(fiber.StatusForbidden, "the order cannot paid by you")
|
return fiber.NewError(fiber.StatusForbidden, "the order cannot paid by you")
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if err := database.C.Where("account_id = ?", order.ClientID).First(&payer).Error; err != nil {
|
if err := database.C.Where("account_id = ?", user.ID).First(&payer).Error; err != nil {
|
||||||
return fiber.NewError(fiber.StatusBadRequest, "account wallet was not found")
|
return fiber.NewError(fiber.StatusBadRequest, "account wallet was not found")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user