박권수

Merge branch 'server' into web

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