박권수

Merge branch 'server' into web

......@@ -36,7 +36,6 @@ doctor.get('/patient/:patientId', doctorCtrl.getPatientDetail);
*/
doctor.get('/bottle/:bottleId', doctorCtrl.getBottleDetail);
/**
* 현재 로그인한 유저(의사)의 특정 관리 환자의 특이사항을 기록함
* request parameter : reqUserId, info
......@@ -53,7 +52,6 @@ doctor.patch('/patient', doctorCtrl.writeReqPatientReport);
*/
doctor.post('/bottle', doctorCtrl.writeReqBottleFeedback);
/**
* 현재 로그인한 유저(의사)가 이메일로 유저를 검색함
* request parameter : patientId
......
......@@ -37,9 +37,9 @@ PatientInfoSchema.methods.setUseYn = function(useYn) {
PatientInfoSchema.methods.updateInfo = function(info) {
const date = moment(new Date()).format('YYYY-MM-DD hh:mm');
if(this.info.length)
this.info = this.info.concat('\n\n', `${date} => ${info}`);
this.info = this.info.concat('\n\n', `${date} ${info}`);
else
this.info = `${date} => ${info}`;
this.info = `${date} ${info}`;
};
......