This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2026-02-25 15:13:12 +07:00
parent e632daa773
commit a2bad32c6d
2 changed files with 2 additions and 1 deletions

View file

@ -189,6 +189,7 @@ watch(modal, (val) => {
v-model="formDataQuery.isAct" v-model="formDataQuery.isAct"
label="แสดงเฉพาะรักษาการแทน" label="แสดงเฉพาะรักษาการแทน"
color="primary" color="primary"
@update:model-value="onSearchData"
> >
<q-tooltip>แสดงเฉพาะรกษาการแทน </q-tooltip> <q-tooltip>แสดงเฉพาะรกษาการแทน </q-tooltip>
</q-checkbox> </q-checkbox>

View file

@ -17,7 +17,7 @@ export function calculateFiscalYear(date: Date) {
*/ */
export function getColumnLabel(col: any, isAct: boolean) { export function getColumnLabel(col: any, isAct: boolean) {
if (col.name === "posNo" && isAct) { if (col.name === "posNo" && isAct) {
return `${col.label} (รักษาการแทน)`; return `${col.label}รักษาการแทน`;
} }
return col.label; return col.label;
} }