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>
33 lines
1.0 KiB
TypeScript
33 lines
1.0 KiB
TypeScript
export const INVOICE_PAYMENT_STATUS = {
|
|
PENDING: "pendente",
|
|
PAID: "pago",
|
|
} as const;
|
|
|
|
export const INVOICE_STATUS_VALUES = Object.values(INVOICE_PAYMENT_STATUS);
|
|
|
|
export type InvoicePaymentStatus =
|
|
(typeof INVOICE_PAYMENT_STATUS)[keyof typeof INVOICE_PAYMENT_STATUS];
|
|
|
|
export const INVOICE_STATUS_LABEL: Record<InvoicePaymentStatus, string> = {
|
|
[INVOICE_PAYMENT_STATUS.PENDING]: "Em aberto",
|
|
[INVOICE_PAYMENT_STATUS.PAID]: "Pago",
|
|
};
|
|
|
|
export const INVOICE_STATUS_BADGE_VARIANT: Record<
|
|
InvoicePaymentStatus,
|
|
"default" | "secondary" | "success" | "info"
|
|
> = {
|
|
[INVOICE_PAYMENT_STATUS.PENDING]: "info",
|
|
[INVOICE_PAYMENT_STATUS.PAID]: "success",
|
|
};
|
|
|
|
export const INVOICE_STATUS_DESCRIPTION: Record<InvoicePaymentStatus, string> =
|
|
{
|
|
[INVOICE_PAYMENT_STATUS.PENDING]:
|
|
"Esta fatura ainda não foi quitada. Você pode realizar o pagamento assim que revisar os lançamentos.",
|
|
[INVOICE_PAYMENT_STATUS.PAID]:
|
|
"Esta fatura está quitada. Caso tenha sido um engano, é possível desfazer o pagamento.",
|
|
};
|
|
|
|
export const PERIOD_FORMAT_REGEX = /^\d{4}-\d{2}$/;
|