fix เลขที่คำสั่ง

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2025-03-19 10:11:31 +07:00
parent 8ff3456a23
commit 51d717a677
2 changed files with 3 additions and 3 deletions

View file

@ -180,7 +180,7 @@ const baseColumns = ref<QTableColumn[]>([
field: "commandNo",
format(val, row) {
return row.commandNo && row.commandYear
? `${row.commandNo}/${row.commandYear}`
? `${row.commandNo}/${Number(row.commandYear) + 543}`
: "";
},
headerStyle: "font-size: 14px",

View file

@ -174,7 +174,7 @@ const baseColumns = ref<QTableProps["columns"]>([
style: "font-size: 14px",
format(val, row) {
return row.commandNo && row.commandYear
? `${row.commandNo}/${row.commandYear}`
? `${row.commandNo}/${Number(row.commandYear) + 543}`
: "";
},
},
@ -401,7 +401,7 @@ const baseColumnsHistory = ref<QTableProps["columns"]>([
style: "font-size: 14px",
format(val, row) {
return row.commandNo && row.commandYear
? `${row.commandNo}/${row.commandYear}`
? `${row.commandNo}/${Number(row.commandYear) + 543}`
: "";
},
},