mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-20 21:41:57 +00:00
feat(FE-316): Support multi-select filters in UniformityTable
This commit is contained in:
@@ -18,12 +18,14 @@ export class UniformityApiService extends BaseApiService<
|
||||
}
|
||||
|
||||
async getUniformity(
|
||||
location_id?: number,
|
||||
project_flock_id?: number,
|
||||
kandang_id?: number,
|
||||
project_flock_kandang_id?: number,
|
||||
location_id?: string,
|
||||
project_flock_id?: string,
|
||||
kandang_id?: string,
|
||||
project_flock_kandang_id?: string,
|
||||
start_date?: string,
|
||||
end_date?: string
|
||||
end_date?: string,
|
||||
page?: number,
|
||||
limit?: number
|
||||
): Promise<BaseApiResponse<Uniformity> | undefined> {
|
||||
return await this.customRequest<BaseApiResponse<Uniformity>>('', {
|
||||
method: 'GET',
|
||||
@@ -34,6 +36,8 @@ export class UniformityApiService extends BaseApiService<
|
||||
project_flock_kandang_id: project_flock_kandang_id,
|
||||
start_date: start_date,
|
||||
end_date: end_date,
|
||||
page: page,
|
||||
limit: limit,
|
||||
},
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user