Set IsMeasured=true in AddOrUpdateMeasuredStockTakingItemPallet
Ensure all stock taking item pallets are marked as measured before adding or updating them via the SignalR endpoint.
This commit is contained in:
parent
910a7aa852
commit
9bc7d4a27e
|
|
@ -162,6 +162,7 @@ public class StockSignalREndpointServer(StockTakingDbContext ctx, SignalRSendToC
|
|||
[SignalR(SignalRTags.AddOrUpdateMeasuredStockTakingItemPallet)]
|
||||
public async Task<StockTakingItemPallet> AddOrUpdateMeasuredStockTakingItemPallet(StockTakingItemPallet stockTakingItemPallet)
|
||||
{
|
||||
stockTakingItemPallet.IsMeasured = true;
|
||||
return await ctx.AddOrUpdateMeasuredStockTakingItemPallet(stockTakingItemPallet);
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue