feat: create ReportDepreciation and ReportDepreciationSearchParams type

This commit is contained in:
ValdiANS
2026-04-17 13:27:21 +07:00
parent 93083c7d2a
commit 16741aaa46
+15
View File
@@ -52,3 +52,18 @@ export type ReportExpenseSearchParams = {
category: string | null; category: string | null;
search: string; search: string;
}; };
export type ReportDepreciation = {
id: string;
flock: string;
totalCostPullet: number;
totalDepresiasi: number;
periode: string;
farm: string;
jumlahKandang: number;
};
export type ReportDepreciationSearchParams = {
farm: string | null;
period: string | null;
};