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

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2026-03-26 10:18:08 +07:00
commit c7accb6044
3 changed files with 5 additions and 1 deletions

View file

@ -305,7 +305,7 @@ watch(
outlined outlined
option-label="name" option-label="name"
option-value="id" option-value="id"
@update:model-value="rows = []" @update:model-value="(rows = []), (selected = [])"
/> />
</div> </div>
</div> </div>

View file

@ -222,6 +222,7 @@ const itemsCard = ref([
* @param id กล * @param id กล
*/ */
async function fetchDataQuota(id: string) { async function fetchDataQuota(id: string) {
if (!id) return;
await http await http
.get(config.API.salaryListPeriodQuota(id)) .get(config.API.salaryListPeriodQuota(id))
.then((res) => { .then((res) => {
@ -254,6 +255,7 @@ async function fetchDataQuota(id: string) {
* @param id กล * @param id กล
*/ */
async function fetchDataPeriod(id: string, force: boolean = false) { async function fetchDataPeriod(id: string, force: boolean = false) {
if (!id) return;
force && showLoader(); force && showLoader();
let formData = { let formData = {
...params.value, ...params.value,

View file

@ -215,6 +215,7 @@ const itemsCard = ref([
* @param id กล * @param id กล
*/ */
async function fetchDataQuota(id: string) { async function fetchDataQuota(id: string) {
if (!id) return;
await http await http
.get(config.API.salaryListPeriodQuotaEmp(id)) .get(config.API.salaryListPeriodQuotaEmp(id))
.then((res) => { .then((res) => {
@ -246,6 +247,7 @@ async function fetchDataQuota(id: string) {
* @param id กล * @param id กล
*/ */
async function fetchDataPeriod(id: string, force: boolean = false) { async function fetchDataPeriod(id: string, force: boolean = false) {
if (!id) return;
force && showLoader(); force && showLoader();
let formData = { let formData = {
...params.value, ...params.value,