fix: add is_paid to BaseExpense

This commit is contained in:
ValdiANS
2026-05-12 11:09:40 +07:00
parent 5767a078d9
commit e3d3e744b0
+1
View File
@@ -50,6 +50,7 @@ export type BaseExpense = {
total_pengajuan: number;
total_realisasi: number;
latest_approval: BaseApproval;
is_paid: boolean;
};
export type Expense = BaseMetadata & BaseExpense;