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">
|
||||
<h3 className="font-medium mb-4">Conciliadas ({conciliadasOrdenadas.length})</h3>
|
||||
<div className="overflow-x-auto">
|
||||
<table className="w-full text-sm">
|
||||
<table className="w-full text-base">
|
||||
<thead>
|
||||
<tr className="border-b text-center text-muted-foreground">
|
||||
<th className="pb-3 font-medium">UUID</th>
|
||||
@@ -549,34 +549,34 @@ export default function ConciliacionPage() {
|
||||
<tbody>
|
||||
{conciliadasOrdenadas.length === 0 ? (
|
||||
<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
|
||||
</td>
|
||||
</tr>
|
||||
) : (
|
||||
conciliadasOrdenadas.map((cfdi) => (
|
||||
<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)}
|
||||
</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')}
|
||||
</td>
|
||||
<td className="py-2 font-mono text-xs 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 font-mono text-sm text-center">{activeTab === 'EMITIDO' ? cfdi.rfcReceptor : cfdi.rfcEmisor}</td>
|
||||
<td className="py-2 text-sm truncate max-w-[120px] text-center">
|
||||
{activeTab === 'EMITIDO' ? cfdi.nombreReceptor : cfdi.nombreEmisor}
|
||||
</td>
|
||||
<td className="py-2 text-xs font-medium text-center">
|
||||
<td className="py-2 text-sm font-medium text-center">
|
||||
{formatCurrencyConciliacion(getMonto(cfdi))}
|
||||
</td>
|
||||
<td className="py-2 text-xs text-center">
|
||||
<td className="py-2 text-sm text-center">
|
||||
{cfdi.conciliacion?.fechaDePago
|
||||
? new Date(
|
||||
(cfdi.conciliacion.fechaDePago.split('T')[0]) + 'T12:00:00',
|
||||
).toLocaleDateString('es-MX')
|
||||
: '-'}
|
||||
</td>
|
||||
<td className="py-2 text-xs text-center">
|
||||
<td className="py-2 text-sm text-center">
|
||||
{cfdi.conciliacion
|
||||
? `${cfdi.conciliacion.banco} ****${cfdi.conciliacion.terminacionCuenta}`
|
||||
: '-'}
|
||||
|
||||
Reference in New Issue
Block a user