feat: create PurchaseFilter type

This commit is contained in:
ValdiANS
2026-04-02 09:57:48 +07:00
parent cae19d905b
commit 25b5165249
+6
View File
@@ -144,3 +144,9 @@ export type DeletePurchaseRequestItemPayload = {
};
export type UpdatePurchaseRequestPayload = CreatePurchaseRequestPayload;
export type PurchaseFilter = {
poDate: string;
category: string[];
status: string[];
};