Compare commits

..

No commits in common. "932a283d7c618781ffa60af5f373ff1ca96af481" and "ddbfc3e25eec969c7e0234a8f6c4a0d826c0cd3d" have entirely different histories.

View file

@ -9198,8 +9198,8 @@ export class ReportController extends Controller {
return null; // refId ที่ไม่พบ salary → กรองออก (เหมือนเดิมที่ข้ามไป)
}),
);
return { result: result.filter(Boolean) }; // return array ของ salary data ให้ org ทำงานต่อ
}
return result.filter(Boolean); // return array ของ salary data ให้ org ทำงานต่อ
}
/**
* API C-PM-34
@ -9330,7 +9330,7 @@ async SalaryReportExcecute34(
return null;
}),
);
return { result: result.filter(Boolean) };
return result.filter(Boolean);
}
/**
@ -9463,7 +9463,7 @@ async SalaryReportExcecute34(
return null;
}),
);
return { result: result.filter(Boolean) };
return result.filter(Boolean);
}
/**
@ -9607,7 +9607,7 @@ async SalaryReportExcecute34(
return null;
}),
);
return { result: result.filter(Boolean) };
return result.filter(Boolean);
}
/**
@ -9749,7 +9749,7 @@ async SalaryReportExcecute34(
return null;
}),
);
return { result: result.filter(Boolean) };
return result.filter(Boolean);
}
/**