Compare commits

..

2 Commits

Author SHA1 Message Date
a9e48ef6b9 bug 处理 2025-04-16 00:06:21 +08:00
809faf1eed bug 处理 2025-04-16 00:05:41 +08:00
2 changed files with 2 additions and 1 deletions

View File

@ -271,6 +271,7 @@ public class PatientScriptServiceImpl implements PatientScriptService {
}
}catch (Exception e){
log.error(e.getMessage());
patientScript.setStatus("生成异常");
scriptMapper.updateStatus(patientScript);
}

View File

@ -342,7 +342,7 @@ export default {
if (flag) return;
const formData = this.form.map(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'
}));
addRecord(formData).then(response => {