Index: sources/gui/qml/pages/treatment/adjustments/TreatmentAdjustmentDurationStack.qml =================================================================== diff -u -r5c13b67267f6919fd7fcc7b970bd7c0ee7de12d3 -rdf03df4194214017799598ad8836e694db195d42 --- sources/gui/qml/pages/treatment/adjustments/TreatmentAdjustmentDurationStack.qml (.../TreatmentAdjustmentDurationStack.qml) (revision 5c13b67267f6919fd7fcc7b970bd7c0ee7de12d3) +++ sources/gui/qml/pages/treatment/adjustments/TreatmentAdjustmentDurationStack.qml (.../TreatmentAdjustmentDurationStack.qml) (revision df03df4194214017799598ad8836e694db195d42) @@ -87,10 +87,10 @@ _root.notificationText = "" } - onConfirmClicked : function(vNewTreatmentDuration) { + onConfirmClicked : function(vNewTreatmentDuration, vNewHeparinDuration, vRate) { // send new duration to TD and wait // if accepted moves to confirm screen, otherwise show error in notification - vTreatmentAdjustmentDurationConfirm.doConfirm(vNewTreatmentDuration) + vTreatmentAdjustmentDurationConfirm.doConfirm(vNewTreatmentDuration, vNewHeparinDuration, vRate) } } @@ -100,8 +100,10 @@ notification.text = "" _treatmentAdjustmentDurationConfirm.newTreatmentDuration = vTreatmentAdjustmentDurationEdit.duration + _treatmentAdjustmentDurationConfirm.newHeparinDuration = vTreatmentAdjustmentDurationEdit.heparinDuration _treatmentAdjustmentDurationConfirm.ufVolumeGoal = vTreatmentAdjustmentDurationEdit.ufVolumeGoal _treatmentAdjustmentDurationConfirm.ufRate = vTreatmentAdjustmentDurationEdit.ufRate + vTreatmentCreate.heparinDeliveryDuration = vTreatmentAdjustmentDurationEdit.heparinDuration _treatmentDurationStack.page(_treatmentAdjustmentDurationConfirm) }