nuget packages update; fixes
This commit is contained in:
parent
0035725399
commit
d02d4dcb09
|
|
@ -202,7 +202,7 @@ public class FruitBankDbContext : MgDbContextBase,
|
||||||
var dbShippingItem = await ShippingItems.GetByIdAsync(shippingItem.Id, false);
|
var dbShippingItem = await ShippingItems.GetByIdAsync(shippingItem.Id, false);
|
||||||
if (dbShippingItem == null) throw new Exception($"dbShippingItem == null; shippingItem.Id: {shippingItem.Id}");
|
if (dbShippingItem == null) throw new Exception($"dbShippingItem == null; shippingItem.Id: {shippingItem.Id}");
|
||||||
|
|
||||||
var isMeasuredPrerequisite = productDto != null && shippingItem.PalletsOnDocument == shippingItem.ShippingItemPallets.Count
|
var isMeasuredPrerequisite = productDto != null && shippingItem.MeasuringCount == shippingItem.ShippingItemPallets.Count
|
||||||
&& shippingItem.ShippingItemPallets.All(x => x.IsMeasuredAndValid(shippingItem.IsMeasurable));
|
&& shippingItem.ShippingItemPallets.All(x => x.IsMeasuredAndValid(shippingItem.IsMeasurable));
|
||||||
|
|
||||||
SetupShippingItemMeasuringValues(shippingItem, isMeasuredPrerequisite);
|
SetupShippingItemMeasuringValues(shippingItem, isMeasuredPrerequisite);
|
||||||
|
|
|
||||||
|
|
@ -26,10 +26,10 @@
|
||||||
<PackageReference Include="DevExtreme.AspNet.Data" Version="5.1.0" />
|
<PackageReference Include="DevExtreme.AspNet.Data" Version="5.1.0" />
|
||||||
|
|
||||||
<!-- Your existing packages -->
|
<!-- Your existing packages -->
|
||||||
<PackageReference Include="Microsoft.AspNetCore.SignalR.Common" Version="9.0.9" />
|
<PackageReference Include="Microsoft.AspNetCore.SignalR.Common" Version="9.0.10" />
|
||||||
<PackageReference Include="Microsoft.AspNetCore.SignalR.Protocols.Json" Version="9.0.9" />
|
<PackageReference Include="Microsoft.AspNetCore.SignalR.Protocols.Json" Version="9.0.10" />
|
||||||
<PackageReference Include="Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson" Version="9.0.9" />
|
<PackageReference Include="Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson" Version="9.0.10" />
|
||||||
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.9" />
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.10" />
|
||||||
<PackageReference Include="PdfPig" Version="0.1.11" />
|
<PackageReference Include="PdfPig" Version="0.1.11" />
|
||||||
<PackageReference Include="PdfPig.Rendering.Skia" Version="0.1.11.5" />
|
<PackageReference Include="PdfPig.Rendering.Skia" Version="0.1.11.5" />
|
||||||
<PackageReference Include="SendGrid" Version="9.29.3" />
|
<PackageReference Include="SendGrid" Version="9.29.3" />
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue