Merge branch 'develop' of github.com:Frappet/hrms-api-org into develop

This commit is contained in:
mamoss 2025-04-03 16:40:28 +07:00
commit 25edb18feb
2 changed files with 4 additions and 0 deletions

View file

@ -3575,6 +3575,7 @@ export class CommandController extends Controller {
lastUpdateFullName: req.user.name,
createdAt: new Date(),
lastUpdatedAt: new Date(),
status: "DONE"
};
Object.assign(dataAssis, metaAssis);

View file

@ -131,6 +131,7 @@ export class CreateProfileAssistance {
refCommandDate?: string | null;
commandId?: string | null;
isUpload?: boolean | null;
commandName?: string | null;
}
export class CreateProfileAssistanceEmployee {
@ -143,6 +144,7 @@ export class CreateProfileAssistanceEmployee {
refCommandDate?: string | null;
commandId?: string | null;
isUpload?: boolean | null;
commandName?: string | null;
}
export type UpdateProfileAssistance = {
@ -154,4 +156,5 @@ export type UpdateProfileAssistance = {
isUpload?: boolean | null;
refCommandDate?: string | null;
commandId?: string | null;
commandName?: string | null;
};