fix
This commit is contained in:
parent
2acd1ac237
commit
6861515843
1 changed files with 6 additions and 6 deletions
|
|
@ -4780,14 +4780,14 @@ export class ReportController extends Controller {
|
|||
no: Extension.ToThaiNumber((index + 1).toLocaleString()),
|
||||
fullName: fullName,
|
||||
affiliation: affiliation,
|
||||
position: profile.position,
|
||||
posLevel: profile.posLevel,
|
||||
posNumber:
|
||||
position: profile.position??"-",
|
||||
posLevel: profile.posLevel? Extension.ToThaiNumber(profile.posLevel.toLocaleString()):"-",
|
||||
posNumber: profile.orgShortName || profile.posMasterNo ?
|
||||
Extension.ToThaiNumber(profile.orgShortName) +
|
||||
Extension.ToThaiNumber(profile.posMasterNo.toLocaleString()),
|
||||
amount: profile.amount ? Extension.ToThaiNumber(profile.amount.toLocaleString()) : null,
|
||||
Extension.ToThaiNumber(profile.posMasterNo.toLocaleString()):"-",
|
||||
amount: profile.amount ? Extension.ToThaiNumber(profile.amount.toLocaleString()) : "-",
|
||||
reason: null,
|
||||
score: profile.result,
|
||||
score: profile.result??"-",
|
||||
signature: profile.remark,
|
||||
};
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue