fix rules เงินเดือน
This commit is contained in:
parent
9912c0c068
commit
409292b699
3 changed files with 15 additions and 14 deletions
|
|
@ -136,7 +136,7 @@ const baseColumns = ref<QTableColumn[]>([
|
|||
field: "mouthSalaryAmount",
|
||||
headerStyle: "font-size: 14px",
|
||||
style: "font-size: 14px",
|
||||
format: (v) => Number(v).toLocaleString(),
|
||||
format: (v) => (v ? Number(v).toLocaleString() : "-"),
|
||||
},
|
||||
{
|
||||
name: "positionSalaryAmount",
|
||||
|
|
@ -146,7 +146,7 @@ const baseColumns = ref<QTableColumn[]>([
|
|||
field: "positionSalaryAmount",
|
||||
headerStyle: "font-size: 14px",
|
||||
style: "font-size: 14px",
|
||||
format: (v) => Number(v).toLocaleString(),
|
||||
format: (v) => (v ? Number(v).toLocaleString() : "-"),
|
||||
},
|
||||
{
|
||||
name: "organization",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue