aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Modules/Tango.PPC.Maintenance/ViewModels/MaintenanceViewVM.cs
diff options
context:
space:
mode:
authorRoy Ben Shabat <Roy.mail.net@gmail.com>2021-01-28 22:03:03 +0200
committerRoy Ben Shabat <Roy.mail.net@gmail.com>2021-01-28 22:03:03 +0200
commit49c86b365b94cfc87e92e22dfa388c08215d4c88 (patch)
treef19e4e97669f6da641cb20de8660357aa0fc94d3 /Software/Visual_Studio/PPC/Modules/Tango.PPC.Maintenance/ViewModels/MaintenanceViewVM.cs
parent60dae81ccd16a1bd4f5af3b2c5b561e201ec97da (diff)
downloadTango-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.cs2
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,