|
@ -78,7 +78,7 @@ public class DoctorFeldsherTemplateJob implements Job {
|
|
|
Time tempTime = Time.valueOf("00:00:00");
|
|
|
long tempTo = tempTime.getTime();
|
|
|
long from = beforeBreakfastTime.getTime();
|
|
|
int minutes = (int) ((from - tempTo) / (1000 * 60));
|
|
|
int minutes = (int) ((from - to) / (1000 * 60));
|
|
|
try {
|
|
|
sendPatientHealth(minutes,1,schemecode,tempTime,beforeBreakfastTime,"早餐前");
|
|
|
} catch (Exception e) {
|
|
@ -169,7 +169,7 @@ public class DoctorFeldsherTemplateJob implements Job {
|
|
|
Time tempTime = Time.valueOf("00:00:00");
|
|
|
long tempTo = tempTime.getTime();
|
|
|
long from = earlyMorningTime.getTime();
|
|
|
int minutes = (int) ((from - tempTo) / (1000 * 60));
|
|
|
int minutes = (int) ((from - to) / (1000 * 60));
|
|
|
try {
|
|
|
sendPatientHealth(minutes,2,schemecode,tempTime,earlyMorningTime,"");
|
|
|
} catch (Exception e) {
|