fix rules เงินเดือน

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2025-05-23 11:34:22 +07:00
parent 9912c0c068
commit 409292b699
3 changed files with 15 additions and 14 deletions

View file

@ -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",