fix: adjust PurchaseFilter type

This commit is contained in:
ValdiANS
2026-04-23 16:38:31 +07:00
parent b9a1e94a29
commit 68c13c48c7
+6
View File
@@ -148,10 +148,16 @@ export type UpdatePurchaseRequestPayload = CreatePurchaseRequestPayload;
export type PurchaseFilter = {
poDate: string;
category: string[];
category_labels?: { label: string; value: number }[];
status: string[];
supplier_id?: number;
supplier_label?: string;
area_id?: number;
area_label?: string;
location_id?: number;
location_label?: string;
project_flock_id?: number;
project_flock_label?: string;
project_flock_kandang_id?: number;
project_flock_kandang_label?: string;
};