no message

This commit is contained in:
Bright 2025-01-06 11:28:08 +07:00
parent e943b3037c
commit e221b3fc0d

View file

@ -160,6 +160,43 @@ export class CommandTypeController extends Controller {
};
_commandType = _commandType10;
}
else if (["C-PM-21", "C-PM-23"].includes(_commandType.code)) {
let _commandType21and23: any;
_commandType21and23 = {
id: _commandType.id,
name: _commandType.name,
commandSysId: _commandType.commandSysId,
code: _commandType.code,
fileCover: _commandType.fileCover,
fileAttachment: _commandType.fileAttachment,
isActive: _commandType.isActive,
detailHeader: _commandType.detailHeader,
detailBody: _commandType.detailBody,
detailFooter: _commandType.detailFooter,
subtitle: _commandType.subtitle,
isAttachment: _commandType.isAttachment,
name1: "๑. ..........................ประธาน",
name2: "๒. ..........................กรรมการ",
name3: "๓. ..........................กรรมการ",
name4: "๔. ..........................กรรมการ",
persons: [
{
no: "-",
org: "-",
fullName: "-",
citizenId: "-",
position: "-",
posLevel: "-",
posNo: "-",
amount: "-",
dateRetire: "-",
dateExecute: "-",
remark: "-"
}
]
};
_commandType = _commandType21and23;
}
return new HttpSuccess(_commandType);
}