DeliveryAdminWindow: Allow Gr.Inzersdorf to select LesewagenInput

This commit is contained in:
2025-02-20 15:56:26 +01:00
parent 28af7f8dd3
commit 138dae715e
2 changed files with 12 additions and 4 deletions

View File

@ -23,6 +23,10 @@ namespace Elwig.Helpers {
public bool HasNetWeighing(Branch? b) => HasNetWeighing(b?.ZwstId);
public bool HasNetWeighing() => HasNetWeighing(App.ZwstId);
public bool HasBoxWeighing(string? zwstId) => IsWinzerkeller && (zwstId != "W");
public bool HasBoxWeighing(Branch? b) => HasBoxWeighing(b?.ZwstId);
public bool HasBoxWeighing() => HasBoxWeighing(App.ZwstId);
public string NameToken;
public string NameShort;
public string Name;