forked from git.gladyson/openmonetis
84 lines
2.0 KiB
TypeScript
84 lines
2.0 KiB
TypeScript
import { and, eq, isNull, or, sql } from "drizzle-orm";
|
|
import { lancamentos } from "@/db/schema";
|
|
import {
|
|
ACCOUNT_AUTO_INVOICE_NOTE_PREFIX,
|
|
INITIAL_BALANCE_NOTE,
|
|
} from "@/lib/contas/constants";
|
|
import { toNumber } from "@/lib/dashboard/common";
|
|
import { db } from "@/lib/db";
|
|
import { getAdminPagadorId } from "@/lib/pagadores/get-admin-id";
|
|
|
|
export type PaymentMethodSummary = {
|
|
paymentMethod: string;
|
|
amount: number;
|
|
percentage: number;
|
|
transactions: number;
|
|
};
|
|
|
|
export type PaymentMethodsData = {
|
|
methods: PaymentMethodSummary[];
|
|
};
|
|
|
|
export async function fetchPaymentMethods(
|
|
userId: string,
|
|
period: string,
|
|
): Promise<PaymentMethodsData> {
|
|
const adminPagadorId = await getAdminPagadorId(userId);
|
|
if (!adminPagadorId) {
|
|
return { methods: [] };
|
|
}
|
|
|
|
const rows = await db
|
|
.select({
|
|
paymentMethod: lancamentos.paymentMethod,
|
|
totalAmount: sql<number>`coalesce(sum(${lancamentos.amount}), 0)`,
|
|
transactions: sql<number>`count(${lancamentos.id})`,
|
|
})
|
|
.from(lancamentos)
|
|
.where(
|
|
and(
|
|
eq(lancamentos.userId, userId),
|
|
eq(lancamentos.period, period),
|
|
eq(lancamentos.transactionType, "Despesa"),
|
|
eq(lancamentos.pagadorId, adminPagadorId),
|
|
or(
|
|
isNull(lancamentos.note),
|
|
and(
|
|
sql`${lancamentos.note} != ${INITIAL_BALANCE_NOTE}`,
|
|
sql`${lancamentos.note} NOT LIKE ${`${ACCOUNT_AUTO_INVOICE_NOTE_PREFIX}%`}`,
|
|
),
|
|
),
|
|
),
|
|
)
|
|
.groupBy(lancamentos.paymentMethod);
|
|
|
|
const summaries = rows.map((row) => {
|
|
const amount = Math.abs(toNumber(row.totalAmount));
|
|
const transactions = Number(row.transactions ?? 0);
|
|
|
|
return {
|
|
paymentMethod: row.paymentMethod,
|
|
amount,
|
|
transactions,
|
|
};
|
|
});
|
|
|
|
const overallTotal = summaries.reduce((acc, item) => acc + item.amount, 0);
|
|
|
|
const methods = summaries
|
|
.map((item) => ({
|
|
paymentMethod: item.paymentMethod,
|
|
amount: item.amount,
|
|
transactions: item.transactions,
|
|
percentage:
|
|
overallTotal > 0
|
|
? Number(((item.amount / overallTotal) * 100).toFixed(2))
|
|
: 0,
|
|
}))
|
|
.sort((a, b) => b.amount - a.amount);
|
|
|
|
return {
|
|
methods,
|
|
};
|
|
}
|