@ -1,7 +1,7 @@
<Project>
<PropertyGroup>
<LangVersion>latest</LangVersion>
<Version>0.1.3</Version>
<Version>0.1.4</Version>
<NoWarn>$(NoWarn);CS1591</NoWarn>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Authors>EasyAbp Team</Authors>
@ -41,7 +41,7 @@ namespace EasyAbp.EShop.Orders.Orders
return;
}
order.SetReducedInventoryAfterPaymentTime(_clock.Now);
order.SetReducedInventoryAfterPlacingTime(_clock.Now);
await _orderRepository.UpdateAsync(order, true);
</PropertyGroup>
@ -40,6 +40,11 @@ namespace EasyAbp.EShop.Payments.Payments
return false;
if (!order.ReducedInventoryAfterPlacingTime.HasValue)
{
var inputStoreIdString = inputExtraProperties.GetOrDefault("StoreId") as string;
if (order.StoreId.ToString() != inputStoreIdString)