|
@@ -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
|