style(conciliacion): aumentar tamano de fuente en tabla Conciliadas
This commit is contained in:
@@ -529,7 +529,7 @@ export default function ConciliacionPage() {
|
|||||||
<CardContent className="pt-6">
|
<CardContent className="pt-6">
|
||||||
<h3 className="font-medium mb-4">Conciliadas ({conciliadasOrdenadas.length})</h3>
|
<h3 className="font-medium mb-4">Conciliadas ({conciliadasOrdenadas.length})</h3>
|
||||||
<div className="overflow-x-auto">
|
<div className="overflow-x-auto">
|
||||||
<table className="w-full text-sm">
|
<table className="w-full text-base">
|
||||||
<thead>
|
<thead>
|
||||||
<tr className="border-b text-center text-muted-foreground">
|
<tr className="border-b text-center text-muted-foreground">
|
||||||
<th className="pb-3 font-medium">UUID</th>
|
<th className="pb-3 font-medium">UUID</th>
|
||||||
@@ -549,34 +549,34 @@ export default function ConciliacionPage() {
|
|||||||
<tbody>
|
<tbody>
|
||||||
{conciliadasOrdenadas.length === 0 ? (
|
{conciliadasOrdenadas.length === 0 ? (
|
||||||
<tr>
|
<tr>
|
||||||
<td colSpan={8} className="py-4 text-sm text-muted-foreground text-center">
|
<td colSpan={8} className="py-4 text-base text-muted-foreground text-center">
|
||||||
No hay CFDIs conciliados
|
No hay CFDIs conciliados
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
) : (
|
) : (
|
||||||
conciliadasOrdenadas.map((cfdi) => (
|
conciliadasOrdenadas.map((cfdi) => (
|
||||||
<tr key={cfdi.id} className="border-b hover:bg-muted/50">
|
<tr key={cfdi.id} className="border-b hover:bg-muted/50">
|
||||||
<td className="py-2 font-mono text-xs text-center" title={cfdi.uuid}>
|
<td className="py-2 font-mono text-sm text-center" title={cfdi.uuid}>
|
||||||
{cfdi.uuid?.substring(0, 8)}
|
{cfdi.uuid?.substring(0, 8)}
|
||||||
</td>
|
</td>
|
||||||
<td className="py-2 text-xs text-center">
|
<td className="py-2 text-sm text-center">
|
||||||
{toCfdiDate(cfdi.fechaPagoP || cfdi.fechaEmision).toLocaleDateString('es-MX')}
|
{toCfdiDate(cfdi.fechaPagoP || cfdi.fechaEmision).toLocaleDateString('es-MX')}
|
||||||
</td>
|
</td>
|
||||||
<td className="py-2 font-mono text-xs text-center">{activeTab === 'EMITIDO' ? cfdi.rfcReceptor : cfdi.rfcEmisor}</td>
|
<td className="py-2 font-mono text-sm text-center">{activeTab === 'EMITIDO' ? cfdi.rfcReceptor : cfdi.rfcEmisor}</td>
|
||||||
<td className="py-2 text-xs truncate max-w-[120px] text-center">
|
<td className="py-2 text-sm truncate max-w-[120px] text-center">
|
||||||
{activeTab === 'EMITIDO' ? cfdi.nombreReceptor : cfdi.nombreEmisor}
|
{activeTab === 'EMITIDO' ? cfdi.nombreReceptor : cfdi.nombreEmisor}
|
||||||
</td>
|
</td>
|
||||||
<td className="py-2 text-xs font-medium text-center">
|
<td className="py-2 text-sm font-medium text-center">
|
||||||
{formatCurrencyConciliacion(getMonto(cfdi))}
|
{formatCurrencyConciliacion(getMonto(cfdi))}
|
||||||
</td>
|
</td>
|
||||||
<td className="py-2 text-xs text-center">
|
<td className="py-2 text-sm text-center">
|
||||||
{cfdi.conciliacion?.fechaDePago
|
{cfdi.conciliacion?.fechaDePago
|
||||||
? new Date(
|
? new Date(
|
||||||
(cfdi.conciliacion.fechaDePago.split('T')[0]) + 'T12:00:00',
|
(cfdi.conciliacion.fechaDePago.split('T')[0]) + 'T12:00:00',
|
||||||
).toLocaleDateString('es-MX')
|
).toLocaleDateString('es-MX')
|
||||||
: '-'}
|
: '-'}
|
||||||
</td>
|
</td>
|
||||||
<td className="py-2 text-xs text-center">
|
<td className="py-2 text-sm text-center">
|
||||||
{cfdi.conciliacion
|
{cfdi.conciliacion
|
||||||
? `${cfdi.conciliacion.banco} ****${cfdi.conciliacion.terminacionCuenta}`
|
? `${cfdi.conciliacion.banco} ****${cfdi.conciliacion.terminacionCuenta}`
|
||||||
: '-'}
|
: '-'}
|
||||||
|
|||||||
Reference in New Issue
Block a user