| 123456789101112131415 |
- using InABox.Core;
- using InABox.Mobile;
- namespace PRS.Mobile
- {
- public class StockLocationStockTakeStatusConverter : AbstractConverter<StockLocationShell, bool>
- {
- public bool Active { get; set; }
-
- protected override bool Convert(StockLocationShell? value, object? parameter = null)
- {
- return Active && value != null && !value.CurrentStocktake.IsEmpty();
- }
- }
- }
|