增加价格排序

This commit is contained in:
qiyunfanbo126.com 2024-08-02 10:38:08 +08:00
parent b12b23fa6a
commit 9841a6989d
1 changed files with 2 additions and 2 deletions

View File

@ -216,8 +216,8 @@ func OrderNotify(request front.YouChuRequest) (NotifyResponse front.YouChuOrderN
return front.YouChuOrderNotifyResponse{RespCode: "000003", RespMsg: "订单不存在"}
}
_, err = ordersmodel.GetInstance().GetDb().Where("id = ?", order.Id).Update(ordersmodel.Orders{ExchangeTime: time.Now()})
utils.Log(nil, "更新订单err", order.Id, err)
_, err = ordersmodel.GetInstance().GetDb().Where("id = ?", orderDetail.Id).Update(ordersmodel.Orders{ExchangeTime: time.Now()})
utils.Log(nil, "更新订单err", orderDetail.Id, err)
var productDetail productsmodel.Products
has, err = productsmodel.GetInstance().GetDb().Where("id = ?", orderDetail.ProductId).Get(&productDetail)
if err != nil || !has {