diff options
| author | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2021-01-28 22:03:03 +0200 |
|---|---|---|
| committer | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2021-01-28 22:03:03 +0200 |
| commit | 49c86b365b94cfc87e92e22dfa388c08215d4c88 (patch) | |
| tree | f19e4e97669f6da641cb20de8660357aa0fc94d3 /Software/Visual_Studio/PPC/Modules/Tango.PPC.Maintenance/ViewModels/MaintenanceViewVM.cs | |
| parent | 60dae81ccd16a1bd4f5af3b2c5b561e201ec97da (diff) | |
| download | Tango-49c86b365b94cfc87e92e22dfa388c08215d4c88.tar.gz Tango-49c86b365b94cfc87e92e22dfa388c08215d4c88.zip | |
Added support for:
Lubricant Mid Tank.
No Mid Tank.
Lubricant Dispenser.
Cleaner Dispenser.
Light Inks Lubricant Formula.
Light Inks Cleaner Formula.
MID_TANK_TYPE. HAS_LEVEL_MEASURE.
Diffstat (limited to 'Software/Visual_Studio/PPC/Modules/Tango.PPC.Maintenance/ViewModels/MaintenanceViewVM.cs')
| -rw-r--r-- | Software/Visual_Studio/PPC/Modules/Tango.PPC.Maintenance/ViewModels/MaintenanceViewVM.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.Maintenance/ViewModels/MaintenanceViewVM.cs b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Maintenance/ViewModels/MaintenanceViewVM.cs index c0dc61150..1279a0ba4 100644 --- a/Software/Visual_Studio/PPC/Modules/Tango.PPC.Maintenance/ViewModels/MaintenanceViewVM.cs +++ b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Maintenance/ViewModels/MaintenanceViewVM.cs @@ -158,7 +158,7 @@ namespace Tango.PPC.Maintenance.ViewModels { base.OnApplicationReady(); - MidTankLevels = MachineProvider.Machine.Configuration.NoneEmptyIdsPacks.OrderBy(x => x.PackIndex).Select(x => new MidTankLevelModel() + MidTankLevels = MachineProvider.Machine.Configuration.NoneEmptyIdsPacks.Where(x => x.MidTankType.HasLevelMeasure).OrderBy(x => x.PackIndex).Select(x => new MidTankLevelModel() { Max = MachineOperator.MAX_MIDTANK_LITERS, IDSPack = x, |
