|
@@ -72,7 +72,7 @@ namespace Comal.Classes
|
|
|
private class ProductLookupGenerator : LookupDefinitionGenerator<Product, BillLine>
|
|
|
{
|
|
|
public override Filter<Product>? DefineFilter(BillLine[] items)
|
|
|
- => new Filter<Product>(x => x.NonStock);
|
|
|
+ => new Filter<Product>(x => x.NonStock).IsEqualTo(true);
|
|
|
}
|
|
|
[EditorSequence(2)]
|
|
|
[LookupDefinition(typeof(ProductLookupGenerator))]
|