Migrate อัตรากำลังลูกจ้างประจำ เพิ่มเมนูคัดลอก/จัดการตำแหน่งติดเงื่อนไข #2316
All checks were successful
Build & Deploy on Dev / build (push) Successful in 1m25s

&& Fix Bug กดลบถาวรคำสั่งแล้ว error #216
This commit is contained in:
harid 2026-02-23 15:06:32 +07:00
parent 673da9940d
commit f6c726baa5
4 changed files with 66 additions and 0 deletions

View file

@ -1244,6 +1244,7 @@ export class CommandController extends Controller {
await this.commandSendCCRepository.delete({ commandSendId: In(commandSend.map((x) => x.id)) });
await this.commandReciveRepository.delete({ commandId: command.id });
await this.commandSendRepository.delete({ commandId: command.id });
await this.commandOperatorRepository.delete({ commandId: command.id });
await this.commandRepository.delete(command.id);
return new HttpSuccess();
}