Index: shared/scripts/configuration/config.py =================================================================== diff -u -ra4f1e264727015d92baa065dde52c33c0bc33ef3 -r21e113990a26f27e696a29f9f46ceeb812985499 --- shared/scripts/configuration/config.py (.../config.py) (revision a4f1e264727015d92baa065dde52c33c0bc33ef3) +++ shared/scripts/configuration/config.py (.../config.py) (revision 21e113990a26f27e696a29f9f46ceeb812985499) @@ -600,10 +600,26 @@ PRE_TREATMENT_SCREENS = ["Create" , "Sample" , "Consumables" , "Disposables" , "Prime" , "Ultrafiltration" , "BP/HR" , "Connection" , "Start"] NUM_OF_PRETREATMENT_BULLETS = len(PRE_TREATMENT_SCREENS) -#tst_pretreatment_screens -PRE_TREATMENT_SCREENS = ["Create" , "Sample" , "Consumables" , "Disposables" , "Prime" , "Ultrafiltration" , "BP/HR" , "Connection" , "Start"] +#dictionary contains saline cumulative and saline delivered value +#key : saline cumulative value. +#value: saline delivered value +SALINE_BOLUS_VALUES = { + 0 : 0, + 1.0 : 1.0, + 125.56 : 100.56, + 165.87 : 145.87, + 220.65 : 220.65, + 325.25 : 300.25, + 400.86 : 380.86, + 500.00 : 500.25, + 634.76 : 634.76, + 823.65 : 800.65, + 999.99 : 999.99, + 1000 : 1000 +} + #tst_pretreatment_screens color palettes CURRENT_COLOR = '#000000' COMPLETE_COLOR= '#4290ec'