|
@@ -1891,6 +1891,10 @@ func (c *DialysisAPIController) Finish() {
|
1891
|
1891
|
} else {
|
1892
|
1892
|
tempassessmentAfterDislysis.ActualDisplacement = endmonitorRecords.DisplacementQuantity
|
1893
|
1893
|
}
|
|
1894
|
+ //新化博翔
|
|
1895
|
+ if adminUserInfo.Org.Id == 10447 {
|
|
1896
|
+ tempassessmentAfterDislysis.Temperature = endmonitorRecords.Temperature
|
|
1897
|
+ }
|
1894
|
1898
|
|
1895
|
1899
|
}
|
1896
|
1900
|
|
|
@@ -2537,6 +2541,12 @@ func (this *DialysisAPIController) StartDialysis() {
|
2537
|
2541
|
record.PulseFrequency = befor.PulseFrequency
|
2538
|
2542
|
record.BreathingRate = befor.BreathingRate
|
2539
|
2543
|
}
|
|
2544
|
+ //新化博翔
|
|
2545
|
+ if adminUserInfo.Org.Id == 10447 {
|
|
2546
|
+ befor, _ := service.GetAssessmentBeforThrity(adminUserInfo.Org.Id, patientID, recordDate.Unix())
|
|
2547
|
+ record.SystolicBloodPressure = befor.SystolicBloodPressure
|
|
2548
|
+ record.DiastolicBloodPressure = befor.DiastolicBloodPressure
|
|
2549
|
+ }
|
2540
|
2550
|
err := service.CreateMonitor(&record)
|
2541
|
2551
|
|
2542
|
2552
|
key := strconv.FormatInt(adminUserInfo.Org.Id, 10) + ":" + strconv.FormatInt(patientID, 10) + ":" + strconv.FormatInt(recordDate.Unix(), 10) + ":monitor_records"
|