fix
This commit is contained in:
parent
b59bcc9163
commit
5c6abbe412
2 changed files with 5 additions and 1 deletions
|
|
@ -2302,7 +2302,7 @@ export class ReportController extends Controller {
|
||||||
},
|
},
|
||||||
relations: ["salaryProfiles"],
|
relations: ["salaryProfiles"],
|
||||||
});
|
});
|
||||||
|
|
||||||
const salaryProfileSpecial = await this.salaryProfileRepository.find({
|
const salaryProfileSpecial = await this.salaryProfileRepository.find({
|
||||||
relations: ["salaryOrg"],
|
relations: ["salaryOrg"],
|
||||||
where: {
|
where: {
|
||||||
|
|
@ -2322,6 +2322,7 @@ export class ReportController extends Controller {
|
||||||
"posMasterNo",
|
"posMasterNo",
|
||||||
"amount",
|
"amount",
|
||||||
"amountSpecial",
|
"amountSpecial",
|
||||||
|
"remark",
|
||||||
],
|
],
|
||||||
order: {
|
order: {
|
||||||
salaryOrg: {
|
salaryOrg: {
|
||||||
|
|
|
||||||
|
|
@ -436,4 +436,7 @@ export class CreateSalaryProfile {
|
||||||
|
|
||||||
@Column()
|
@Column()
|
||||||
isSpecial: boolean;
|
isSpecial: boolean;
|
||||||
|
|
||||||
|
@Column()
|
||||||
|
remark: string | null;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue