|
@@ -95,6 +95,7 @@ func (this *DialysisAPIController) AddMonitorRecord() {
|
95
|
95
|
blood_sugar, _ := this.GetFloat("blood_sugar")
|
96
|
96
|
monitor_anticoagulant, _ := this.GetInt64("monitor_anticoagulant")
|
97
|
97
|
monitor_anticoagulant_value := this.GetString("monitor_anticoagulant_value")
|
|
98
|
+ heparin_amount, _ := this.GetFloat("heparin_amount")
|
98
|
99
|
blood_pressure_monitoring_site, _ := this.GetInt64("blood_pressure_monitoring_site")
|
99
|
100
|
complication, _ := this.GetInt64("complication")
|
100
|
101
|
accumulated_blood_volume, _ := this.GetFloat("accumulated_blood_volume")
|
|
@@ -165,6 +166,7 @@ func (this *DialysisAPIController) AddMonitorRecord() {
|
165
|
166
|
UreaMonitoring: urea_monitoring,
|
166
|
167
|
BloodThickness: blood_thickness,
|
167
|
168
|
BloodMonitor: blood_monitor,
|
|
169
|
+ HeparinAmount: heparin_amount,
|
168
|
170
|
}
|
169
|
171
|
|
170
|
172
|
err := service.CreateMonitor(&record)
|