Auto-deploy: 2026-01-13 13:04:11 | 2 arquivo(s) alterado(s)

This commit is contained in:
daivid.alves 2026-01-13 13:04:11 -03:00
parent cadd2c947f
commit 9d168a9475
2 changed files with 19 additions and 19 deletions

View File

@ -93,11 +93,11 @@ export const IncomesView = () => {
<div className="p-4">
<ExcelTable
columns={[
{ key: 'id', label: 'ID', width: '80px' },
{ key: 'cliente', label: 'Cliente', width: '250px' },
{ key: 'vencimento', label: 'Vencimento', width: '120px' },
{ key: 'valor', label: 'Valor', width: '120px', type: 'currency' },
{ key: 'status', label: 'Status', width: '120px' },
{ field: 'id', header: 'ID', width: '80px' },
{ field: 'cliente', header: 'Cliente', width: '250px' },
{ field: 'vencimento', header: 'Vencimento', width: '120px' },
{ field: 'valor', header: 'Valor', width: '120px', type: 'currency' },
{ field: 'status', header: 'Status', width: '120px' },
]}
data={MOCK_BOLETOS}
/>
@ -108,11 +108,11 @@ export const IncomesView = () => {
<div className="p-4">
<ExcelTable
columns={[
{ key: 'id', label: 'ID', width: '80px' },
{ key: 'nome', label: 'Nome Fantasia', width: '300px' },
{ key: 'cnpj', label: 'CNPJ', width: '180px' },
{ key: 'status', label: 'Status Contrato', width: '150px' },
{ key: 'total_faturado', label: 'Faturamento Total', width: '180px', type: 'currency' },
{ field: 'id', header: 'ID', width: '80px' },
{ field: 'nome', header: 'Nome Fantasia', width: '300px' },
{ field: 'cnpj', header: 'CNPJ', width: '180px' },
{ field: 'status', header: 'Status Contrato', width: '150px' },
{ field: 'total_faturado', header: 'Faturamento Total', width: '180px', type: 'currency' },
]}
data={MOCK_CLIENTS}
/>
@ -123,10 +123,10 @@ export const IncomesView = () => {
<div className="p-4">
<ExcelTable
columns={[
{ key: 'id', label: 'ID', width: '80px' },
{ key: 'descricao', label: 'Descrição do Serviço', width: '400px' },
{ key: 'categoria', label: 'Categoria', width: '200px' },
{ key: 'preco_base', label: 'Preço Base', width: '150px', type: 'currency' },
{ field: 'id', header: 'ID', width: '80px' },
{ field: 'descricao', header: 'Descrição do Serviço', width: '400px' },
{ field: 'categoria', header: 'Categoria', width: '200px' },
{ field: 'preco_base', header: 'Preço Base', width: '150px', type: 'currency' },
]}
data={MOCK_SERVICES}
/>

View File

@ -101,11 +101,11 @@ export const ReconciliationView = () => {
<div className="p-4">
<ExcelTable
columns={[
{ key: 'id', label: 'ID', width: '80px' },
{ key: 'data', label: 'Data', width: '120px' },
{ key: 'descricao', label: 'Descrição da Transação', width: '350px' },
{ key: 'valor', label: 'Valor', width: '150px', type: 'currency' },
{ key: 'tipo', label: 'Tipo', width: '120px' },
{ field: 'id', header: 'ID', width: '80px' },
{ field: 'data', header: 'Data', width: '120px' },
{ field: 'descricao', header: 'Descrição da Transação', width: '350px' },
{ field: 'valor', header: 'Valor', width: '150px', type: 'currency' },
{ field: 'tipo', header: 'Tipo', width: '120px' },
]}
data={MOCK_PENDING_TRANSACTIONS}
/>