李昊 il y a 4 ans
Parent
commit
10131484c9

+ 1 - 0
gx_api/GxPress/Repository/GxPress.Repository.Implement/Order/OrderRepository.cs

@@ -56,6 +56,7 @@ namespace GxPress.Repository.Implement.Order
             if (request.UserId > 0)
                 query.Where(nameof(Entity.Order.Order.UserId), request.UserId);
             result.Total = await _repository.CountAsync(query);
+            query.OrderByDesc(nameof(Entity.Order.Order.CreatedDate));
             result.Items = await _repository.GetAllAsync(query.ForPage(request.Page, request.PerPage));
             return result;
         }

+ 3 - 2
gx_api/GxPress/Service/GxPress.Service.Implement/Order/OrderService.cs

@@ -35,7 +35,7 @@ namespace GxPress.Service.Implement.Order
         {
 
             var attach = data.GetValue("attach").ToString();
-            if (attach.Split('_').Length > 0)
+            if (attach.Split('_').Length > 1)
             {
                 return true;
             }
@@ -66,8 +66,9 @@ namespace GxPress.Service.Implement.Order
                     }
                     if (user.IsVip)
                         order.IsVip = true;
+                    await orderRepository.UpdateAsync(order);
                     Transaction.Complete();
-                    return await orderRepository.UpdateAsync(order);
+                    return true;
                 }
             }
             catch