Merge branch 'develop' into dev
All checks were successful
Build & Deploy on Dev / build (push) Successful in 1m10s

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2026-02-25 15:13:32 +07:00
commit 05c40ab314
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;
} }