Auto-deploy: 2026-01-13 13:04:11 | 2 arquivo(s) alterado(s)
This commit is contained in:
parent
cadd2c947f
commit
9d168a9475
|
|
@ -93,11 +93,11 @@ export const IncomesView = () => {
|
||||||
<div className="p-4">
|
<div className="p-4">
|
||||||
<ExcelTable
|
<ExcelTable
|
||||||
columns={[
|
columns={[
|
||||||
{ key: 'id', label: 'ID', width: '80px' },
|
{ field: 'id', header: 'ID', width: '80px' },
|
||||||
{ key: 'cliente', label: 'Cliente', width: '250px' },
|
{ field: 'cliente', header: 'Cliente', width: '250px' },
|
||||||
{ key: 'vencimento', label: 'Vencimento', width: '120px' },
|
{ field: 'vencimento', header: 'Vencimento', width: '120px' },
|
||||||
{ key: 'valor', label: 'Valor', width: '120px', type: 'currency' },
|
{ field: 'valor', header: 'Valor', width: '120px', type: 'currency' },
|
||||||
{ key: 'status', label: 'Status', width: '120px' },
|
{ field: 'status', header: 'Status', width: '120px' },
|
||||||
]}
|
]}
|
||||||
data={MOCK_BOLETOS}
|
data={MOCK_BOLETOS}
|
||||||
/>
|
/>
|
||||||
|
|
@ -108,11 +108,11 @@ export const IncomesView = () => {
|
||||||
<div className="p-4">
|
<div className="p-4">
|
||||||
<ExcelTable
|
<ExcelTable
|
||||||
columns={[
|
columns={[
|
||||||
{ key: 'id', label: 'ID', width: '80px' },
|
{ field: 'id', header: 'ID', width: '80px' },
|
||||||
{ key: 'nome', label: 'Nome Fantasia', width: '300px' },
|
{ field: 'nome', header: 'Nome Fantasia', width: '300px' },
|
||||||
{ key: 'cnpj', label: 'CNPJ', width: '180px' },
|
{ field: 'cnpj', header: 'CNPJ', width: '180px' },
|
||||||
{ key: 'status', label: 'Status Contrato', width: '150px' },
|
{ field: 'status', header: 'Status Contrato', width: '150px' },
|
||||||
{ key: 'total_faturado', label: 'Faturamento Total', width: '180px', type: 'currency' },
|
{ field: 'total_faturado', header: 'Faturamento Total', width: '180px', type: 'currency' },
|
||||||
]}
|
]}
|
||||||
data={MOCK_CLIENTS}
|
data={MOCK_CLIENTS}
|
||||||
/>
|
/>
|
||||||
|
|
@ -123,10 +123,10 @@ export const IncomesView = () => {
|
||||||
<div className="p-4">
|
<div className="p-4">
|
||||||
<ExcelTable
|
<ExcelTable
|
||||||
columns={[
|
columns={[
|
||||||
{ key: 'id', label: 'ID', width: '80px' },
|
{ field: 'id', header: 'ID', width: '80px' },
|
||||||
{ key: 'descricao', label: 'Descrição do Serviço', width: '400px' },
|
{ field: 'descricao', header: 'Descrição do Serviço', width: '400px' },
|
||||||
{ key: 'categoria', label: 'Categoria', width: '200px' },
|
{ field: 'categoria', header: 'Categoria', width: '200px' },
|
||||||
{ key: 'preco_base', label: 'Preço Base', width: '150px', type: 'currency' },
|
{ field: 'preco_base', header: 'Preço Base', width: '150px', type: 'currency' },
|
||||||
]}
|
]}
|
||||||
data={MOCK_SERVICES}
|
data={MOCK_SERVICES}
|
||||||
/>
|
/>
|
||||||
|
|
|
||||||
|
|
@ -101,11 +101,11 @@ export const ReconciliationView = () => {
|
||||||
<div className="p-4">
|
<div className="p-4">
|
||||||
<ExcelTable
|
<ExcelTable
|
||||||
columns={[
|
columns={[
|
||||||
{ key: 'id', label: 'ID', width: '80px' },
|
{ field: 'id', header: 'ID', width: '80px' },
|
||||||
{ key: 'data', label: 'Data', width: '120px' },
|
{ field: 'data', header: 'Data', width: '120px' },
|
||||||
{ key: 'descricao', label: 'Descrição da Transação', width: '350px' },
|
{ field: 'descricao', header: 'Descrição da Transação', width: '350px' },
|
||||||
{ key: 'valor', label: 'Valor', width: '150px', type: 'currency' },
|
{ field: 'valor', header: 'Valor', width: '150px', type: 'currency' },
|
||||||
{ key: 'tipo', label: 'Tipo', width: '120px' },
|
{ field: 'tipo', header: 'Tipo', width: '120px' },
|
||||||
]}
|
]}
|
||||||
data={MOCK_PENDING_TRANSACTIONS}
|
data={MOCK_PENDING_TRANSACTIONS}
|
||||||
/>
|
/>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue