no message

This commit is contained in:
kittapath 2024-10-17 19:26:33 +07:00
parent 3d8b66d3cc
commit 25a7a8e1a8
4 changed files with 65 additions and 1 deletions

View file

@ -2759,6 +2759,25 @@ export class CommandController extends Controller {
) {
return new HttpSuccess();
}
@Post("command38/officer/report/delete")
public async command38SalaryOfficerDelete(
@Request() req: RequestWithUser,
@Body()
body: {
refIds: {
refId: string;
commandAffectDate: Date | null;
commandNo: string | null;
commandYear: number;
templateDoc: string | null;
amount: Double | null;
positionSalaryAmount: Double | null;
mouthSalaryAmount: Double | null;
}[];
},
) {
return new HttpSuccess();
}
commandTypePath(commandCode: string) {
switch (commandCode) {