Compare commits
2 Commits
ff78dc99fd
...
a9e48ef6b9
Author | SHA1 | Date | |
---|---|---|---|
a9e48ef6b9 | |||
809faf1eed |
@ -271,6 +271,7 @@ public class PatientScriptServiceImpl implements PatientScriptService {
|
|||||||
|
|
||||||
}
|
}
|
||||||
}catch (Exception e){
|
}catch (Exception e){
|
||||||
|
log.error(e.getMessage());
|
||||||
patientScript.setStatus("生成异常");
|
patientScript.setStatus("生成异常");
|
||||||
scriptMapper.updateStatus(patientScript);
|
scriptMapper.updateStatus(patientScript);
|
||||||
}
|
}
|
||||||
|
@ -342,7 +342,7 @@ export default {
|
|||||||
if (flag) return;
|
if (flag) return;
|
||||||
const formData = this.form.map(item => ({
|
const formData = this.form.map(item => ({
|
||||||
...item,
|
...item,
|
||||||
scanTime: dayjs(item.scanTime).format('YYYY-MM-DD HH:mm:ss'),
|
scanTime:item.scanTime? dayjs(item.scanTime).format('YYYY-MM-DD HH:mm:ss'):null,
|
||||||
type: 'noDti'
|
type: 'noDti'
|
||||||
}));
|
}));
|
||||||
addRecord(formData).then(response => {
|
addRecord(formData).then(response => {
|
||||||
|
Loading…
Reference in New Issue
Block a user