fix bug salary / nopaid
This commit is contained in:
parent
566b4db692
commit
dd06c1f71f
5 changed files with 13 additions and 18 deletions
|
|
@ -137,7 +137,7 @@ export class ProfileNopaidController extends Controller {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Delete("{nopaidId}")
|
@Delete("{nopaidId}")
|
||||||
public async deleteTraning(@Path() nopaidId: string) {
|
public async deleteNopaid(@Path() nopaidId: string) {
|
||||||
await this.nopaidHistoryRepository.delete({
|
await this.nopaidHistoryRepository.delete({
|
||||||
profileNopaidId: nopaidId,
|
profileNopaidId: nopaidId,
|
||||||
});
|
});
|
||||||
|
|
|
||||||
|
|
@ -122,7 +122,7 @@ export class ProfileNopaidEmployeeController extends Controller {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Delete("{nopaidId}")
|
@Delete("{nopaidId}")
|
||||||
public async deleteTraning(@Path() nopaidId: string) {
|
public async deleteNopaid(@Path() nopaidId: string) {
|
||||||
await this.nopaidHistoryRepository.delete({
|
await this.nopaidHistoryRepository.delete({
|
||||||
profileNopaidId: nopaidId,
|
profileNopaidId: nopaidId,
|
||||||
});
|
});
|
||||||
|
|
|
||||||
|
|
@ -15,15 +15,14 @@ import {
|
||||||
import { AppDataSource } from "../database/data-source";
|
import { AppDataSource } from "../database/data-source";
|
||||||
import {
|
import {
|
||||||
CreateProfileSalaryEmployee,
|
CreateProfileSalaryEmployee,
|
||||||
ProfileSalary,
|
ProfileSalaryEmployee,
|
||||||
UpdateProfileSalary,
|
UpdateProfileSalaryEmployee,
|
||||||
} from "../entities/ProfileSalary";
|
} from "../entities/ProfileSalaryEmployee";
|
||||||
import HttpSuccess from "../interfaces/http-success";
|
import HttpSuccess from "../interfaces/http-success";
|
||||||
import HttpStatus from "../interfaces/http-status";
|
import HttpStatus from "../interfaces/http-status";
|
||||||
import HttpError from "../interfaces/http-error";
|
import HttpError from "../interfaces/http-error";
|
||||||
import { ProfileSalaryHistory } from "../entities/ProfileSalaryHistory";
|
import { ProfileSalaryHistory } from "../entities/ProfileSalaryHistory";
|
||||||
import { RequestWithUser } from "../middlewares/user";
|
import { RequestWithUser } from "../middlewares/user";
|
||||||
import { Profile } from "../entities/Profile";
|
|
||||||
import { ProfileEmployee } from "../entities/ProfileEmployee";
|
import { ProfileEmployee } from "../entities/ProfileEmployee";
|
||||||
import { LessThan, MoreThan } from "typeorm";
|
import { LessThan, MoreThan } from "typeorm";
|
||||||
|
|
||||||
|
|
@ -32,13 +31,13 @@ import { LessThan, MoreThan } from "typeorm";
|
||||||
@Security("bearerAuth")
|
@Security("bearerAuth")
|
||||||
export class ProfileSalaryEmployeeController extends Controller {
|
export class ProfileSalaryEmployeeController extends Controller {
|
||||||
private profileRepo = AppDataSource.getRepository(ProfileEmployee);
|
private profileRepo = AppDataSource.getRepository(ProfileEmployee);
|
||||||
private salaryRepo = AppDataSource.getRepository(ProfileSalary);
|
private salaryRepo = AppDataSource.getRepository(ProfileSalaryEmployee);
|
||||||
private salaryHistoryRepo = AppDataSource.getRepository(ProfileSalaryHistory);
|
private salaryHistoryRepo = AppDataSource.getRepository(ProfileSalaryHistory);
|
||||||
|
|
||||||
@Get("{profileId}")
|
@Get("{profileId}")
|
||||||
public async getSalary(@Path() profileId: string) {
|
public async getSalary(@Path() profileId: string) {
|
||||||
const record = await this.salaryRepo.find({
|
const record = await this.salaryRepo.find({
|
||||||
where: { profileEmployeeId: profileId },
|
where: { profileId: profileId },
|
||||||
order: { order: "ASC" },
|
order: { order: "ASC" },
|
||||||
});
|
});
|
||||||
return new HttpSuccess(record);
|
return new HttpSuccess(record);
|
||||||
|
|
@ -57,22 +56,22 @@ export class ProfileSalaryEmployeeController extends Controller {
|
||||||
@Request() req: RequestWithUser,
|
@Request() req: RequestWithUser,
|
||||||
@Body() body: CreateProfileSalaryEmployee,
|
@Body() body: CreateProfileSalaryEmployee,
|
||||||
) {
|
) {
|
||||||
if (!body.profileEmployeeId) {
|
if (!body.profileId) {
|
||||||
throw new HttpError(HttpStatus.BAD_REQUEST, "กรุณากรอก profileId");
|
throw new HttpError(HttpStatus.BAD_REQUEST, "กรุณากรอก profileId");
|
||||||
}
|
}
|
||||||
|
|
||||||
const profile = await this.profileRepo.findOneBy({ id: body.profileEmployeeId });
|
const profile = await this.profileRepo.findOneBy({ id: body.profileId });
|
||||||
|
|
||||||
if (!profile) {
|
if (!profile) {
|
||||||
throw new HttpError(HttpStatus.BAD_REQUEST, "ไม่พบ profile ดังกล่าว");
|
throw new HttpError(HttpStatus.BAD_REQUEST, "ไม่พบ profile ดังกล่าว");
|
||||||
}
|
}
|
||||||
|
|
||||||
const dest_item = await this.salaryRepo.findOne({
|
const dest_item = await this.salaryRepo.findOne({
|
||||||
where: { profileId: body.profileEmployeeId },
|
where: { profileId: body.profileId },
|
||||||
order: { order: "DESC" },
|
order: { order: "DESC" },
|
||||||
});
|
});
|
||||||
|
|
||||||
const data = new ProfileSalary();
|
const data = new ProfileSalaryEmployee();
|
||||||
|
|
||||||
const meta = {
|
const meta = {
|
||||||
order: dest_item == null ? 1 : dest_item.order + 1,
|
order: dest_item == null ? 1 : dest_item.order + 1,
|
||||||
|
|
@ -92,7 +91,7 @@ export class ProfileSalaryEmployeeController extends Controller {
|
||||||
@Patch("{salaryId}")
|
@Patch("{salaryId}")
|
||||||
public async editSalary(
|
public async editSalary(
|
||||||
@Request() req: RequestWithUser,
|
@Request() req: RequestWithUser,
|
||||||
@Body() body: UpdateProfileSalary,
|
@Body() body: UpdateProfileSalaryEmployee,
|
||||||
@Path() salaryId: string,
|
@Path() salaryId: string,
|
||||||
) {
|
) {
|
||||||
const record = await this.salaryRepo.findOneBy({ id: salaryId });
|
const record = await this.salaryRepo.findOneBy({ id: salaryId });
|
||||||
|
|
|
||||||
|
|
@ -243,7 +243,7 @@ export class ProfileEmployee extends EntityBase {
|
||||||
profileNopaids: ProfileNopaid[];
|
profileNopaids: ProfileNopaid[];
|
||||||
|
|
||||||
@OneToMany(() => ProfileDiscipline, (v) => v.profileEmployee)
|
@OneToMany(() => ProfileDiscipline, (v) => v.profileEmployee)
|
||||||
profileDisciplines: ProfileNopaid[];
|
profileDisciplines: ProfileDiscipline[];
|
||||||
|
|
||||||
@OneToMany(() => ProfileChangeName, (v) => v.profileEmployee)
|
@OneToMany(() => ProfileChangeName, (v) => v.profileEmployee)
|
||||||
profileChangeNames: ProfileChangeName[];
|
profileChangeNames: ProfileChangeName[];
|
||||||
|
|
|
||||||
|
|
@ -146,10 +146,6 @@ export class ProfileSalary extends EntityBase {
|
||||||
@ManyToOne(() => Profile, (profile) => profile.profileSalary)
|
@ManyToOne(() => Profile, (profile) => profile.profileSalary)
|
||||||
@JoinColumn({ name: "profileId" })
|
@JoinColumn({ name: "profileId" })
|
||||||
profile: Profile;
|
profile: Profile;
|
||||||
|
|
||||||
@ManyToOne(() => ProfileEmployee, (ProfileEmployee) => ProfileEmployee.profileSalary)
|
|
||||||
@JoinColumn({ name: "profileEmployeeId" })
|
|
||||||
profileEmployee: ProfileEmployee;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export class CreateProfileSalary {
|
export class CreateProfileSalary {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue