690402:2240 fix dashboard
CI / CD Pipeline / build (push) Failing after 4m18s
CI / CD Pipeline / deploy (push) Has been skipped

This commit is contained in:
2026-04-02 22:40:11 +07:00
parent c188219e28
commit d4f0d02c62
22 changed files with 396 additions and 232 deletions
+3 -3
View File
@@ -45,11 +45,11 @@ export const circulationService = {
},
/**
* ดึงรายการใบเวียนของ correspondence (by correspondence UUID)
* ดึงรายการใบเวียนของ correspondence (by correspondence publicId)
*/
getByCorrespondenceUuid: async (correspondenceUuid: string) => {
getByCorrespondenceUuid: async (correspondencePublicId: string) => {
const response = await apiClient.get('/circulations', {
params: { correspondenceUuid, limit: 50 },
params: { correspondencePublicId, limit: 50 },
});
return response.data;
},