fix 标准法规入库变更流程流程名称中标准编号改成长横杠

This commit is contained in:
赵霄
2024-03-21 09:32:04 +08:00
parent c69a7d9deb
commit 583ef8c033
@@ -584,7 +584,7 @@ export default {
}
// 入库流程需要有standard_class、standard_number_temp、year_number、standard_name
if (operateType === OperationType.ENTRY.value && !!standard_class && !!standard_number_temp && !!standard_name) {
const processName = `${standard_class} ${standard_number_temp}-${year_number ? year_number + '-' : ''}${standard_name}-${OperationType.ENTRY.text}`
const processName = `${standard_class} ${standard_number_temp}${year_number ? year_number + '-' : ''}${standard_name}-${OperationType.ENTRY.text}`
this.processInfoForm.setFieldsValue({ processName })
return
}