yxk-20260708

党委会、所务会自动生成审批意见修改
This commit is contained in:
ye1023
2026-07-08 10:41:37 +08:00
parent af09027a06
commit eaa9fe6a36
2 changed files with 4 additions and 13 deletions
@@ -533,20 +533,11 @@
}
function buildLeaderDeptReason() {
const responDeptName = normalizeDeptNames(deptNameText.responDeptid);
if (!responDeptName) {
const deptNames = [deptNameText.responDeptid, deptNameText.assistDeptid].map(normalizeDeptNames).filter(Boolean);
if (!deptNames.length) {
return '';
}
const assistDeptName = normalizeDeptNames(deptNameText.assistDeptid);
const implementDeptName = normalizeDeptNames(mainForm.implementDeptid);
const reasonParts = [`${responDeptName}牵头办理`];
if (assistDeptName) {
reasonParts.push(`${assistDeptName}协办`);
}
if (implementDeptName) {
reasonParts.push(`${implementDeptName}落实`);
}
return `${reasonParts.join('')}`;
return `同意。请${deptNames.join('、')}反馈办理情况。`;
}
function buildDeptLeaderAssignReason() {