feat: create PurchaseFilter type

This commit is contained in:
ValdiANS
2026-04-02 11:41:02 +07:00
parent 449c2030fe
commit 529ba21f47
+6
View File
@@ -144,3 +144,9 @@ export type DeletePurchaseRequestItemPayload = {
};
export type UpdatePurchaseRequestPayload = CreatePurchaseRequestPayload;
export type PurchaseFilter = {
poDate: string;
category: string[];
status: string[];
};