This commit is contained in:
AdisakKanthawilang 2025-06-05 11:33:44 +07:00
parent ebcd94a701
commit 7992b1b3e3
2 changed files with 6 additions and 0 deletions

View file

@ -2432,6 +2432,8 @@ export class CommandController extends Controller {
"C-PM-37",
"C-PM-42",
"C-PM-43",
"C-PM-45",
"C-PM-46",
].includes(commandCode)
) {
let posMaster = await this.employeePosMasterRepository.find({

View file

@ -579,6 +579,10 @@ export function commandTypePath(commandCode: string): string | null {
return "/retirement/resign-employee/leave-cancel/report";
case "C-PM-43":
return "/retirement/out/command/report";
case "C-PM-45":
return "/salary/report/command35/officer/report"; //SALARY
case "C-PM-46":
return "/salary/report/command36/employee/report"; //SALARY
default:
return null;
}