forked from git.gladyson/openmonetis
- Replace ESLint with Biome for linting and formatting - Configure Biome with tabs, double quotes, and organized imports - Move all SQL/Drizzle queries from page.tsx files to data.ts files - Create new data.ts files for: ajustes, dashboard, relatorios/categorias - Update existing data.ts files: extrato, fatura (add lancamentos queries) - Remove all drizzle-orm imports from page.tsx files - Update README.md with new tooling info Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
97 lines
2.6 KiB
TypeScript
97 lines
2.6 KiB
TypeScript
import { and, desc, eq, isNull, or, sql } from "drizzle-orm";
|
|
import { lancamentos, pagadores } from "@/db/schema";
|
|
import {
|
|
ACCOUNT_AUTO_INVOICE_NOTE_PREFIX,
|
|
INITIAL_BALANCE_NOTE,
|
|
} from "@/lib/accounts/constants";
|
|
import { toNumber } from "@/lib/dashboard/common";
|
|
import { db } from "@/lib/db";
|
|
import { PAGADOR_ROLE_ADMIN } from "@/lib/pagadores/constants";
|
|
|
|
export type InstallmentExpense = {
|
|
id: string;
|
|
name: string;
|
|
amount: number;
|
|
paymentMethod: string;
|
|
currentInstallment: number | null;
|
|
installmentCount: number | null;
|
|
dueDate: Date | null;
|
|
purchaseDate: Date;
|
|
period: string;
|
|
};
|
|
|
|
export type InstallmentExpensesData = {
|
|
expenses: InstallmentExpense[];
|
|
};
|
|
|
|
export async function fetchInstallmentExpenses(
|
|
userId: string,
|
|
period: string,
|
|
): Promise<InstallmentExpensesData> {
|
|
const rows = await db
|
|
.select({
|
|
id: lancamentos.id,
|
|
name: lancamentos.name,
|
|
amount: lancamentos.amount,
|
|
paymentMethod: lancamentos.paymentMethod,
|
|
currentInstallment: lancamentos.currentInstallment,
|
|
installmentCount: lancamentos.installmentCount,
|
|
dueDate: lancamentos.dueDate,
|
|
purchaseDate: lancamentos.purchaseDate,
|
|
period: lancamentos.period,
|
|
})
|
|
.from(lancamentos)
|
|
.innerJoin(pagadores, eq(lancamentos.pagadorId, pagadores.id))
|
|
.where(
|
|
and(
|
|
eq(lancamentos.userId, userId),
|
|
eq(lancamentos.period, period),
|
|
eq(lancamentos.transactionType, "Despesa"),
|
|
eq(lancamentos.condition, "Parcelado"),
|
|
eq(lancamentos.isAnticipated, false),
|
|
eq(pagadores.role, PAGADOR_ROLE_ADMIN),
|
|
or(
|
|
isNull(lancamentos.note),
|
|
and(
|
|
sql`${lancamentos.note} != ${INITIAL_BALANCE_NOTE}`,
|
|
sql`${lancamentos.note} NOT LIKE ${`${ACCOUNT_AUTO_INVOICE_NOTE_PREFIX}%`}`,
|
|
),
|
|
),
|
|
),
|
|
)
|
|
.orderBy(desc(lancamentos.purchaseDate), desc(lancamentos.createdAt));
|
|
|
|
const expenses = rows
|
|
.map(
|
|
(row): InstallmentExpense => ({
|
|
id: row.id,
|
|
name: row.name,
|
|
amount: Math.abs(toNumber(row.amount)),
|
|
paymentMethod: row.paymentMethod,
|
|
currentInstallment: row.currentInstallment,
|
|
installmentCount: row.installmentCount,
|
|
dueDate: row.dueDate ?? null,
|
|
purchaseDate: row.purchaseDate,
|
|
period: row.period,
|
|
}),
|
|
)
|
|
.sort((a, b) => {
|
|
// Calcula parcelas restantes para cada item
|
|
const remainingA =
|
|
a.installmentCount && a.currentInstallment
|
|
? a.installmentCount - a.currentInstallment
|
|
: 0;
|
|
const remainingB =
|
|
b.installmentCount && b.currentInstallment
|
|
? b.installmentCount - b.currentInstallment
|
|
: 0;
|
|
|
|
// Ordena do menor número de parcelas restantes para o maior
|
|
return remainingA - remainingB;
|
|
});
|
|
|
|
return {
|
|
expenses,
|
|
};
|
|
}
|