se actualizo la parte visual del componente AmazonInvoiceStatus.

EfacturasUpdate
Luis Rendon 11 months ago
parent d986f06084
commit 9829fe1e54
  1. 23
      src/Components/Clientes/Amazon/Reportes/Estatus/RtpAmazonInvoiceStatus.tsx

@ -26,6 +26,7 @@ import DTO2096RptPayedOperations from '../../DTO/DTO2096RptPayedOperations'
import DTO2096InvoiceStatus from '../../DTO/DTO2096InvoiceStatus'
import IFileManager from '../../../../../Interfaces/Utils/IFileManager'
import * as XLSX from 'xlsx'
import { BsSearch, BsFileEarmarkExcel } from 'react-icons/bs'
export interface IRptAmazonInvoiceStatusProps {}
export default function RptAmazonInvoiceStatus(
@ -385,7 +386,7 @@ export default function RptAmazonInvoiceStatus(
<IconContext.Provider value={{ color: '#F6C34F', size: '8%' }}>
<FaAmazon />
</IconContext.Provider>
Operaciones Pagadas
Estatus Facturas
</Card.Title>
</Col>
<Col style={{ textAlign: 'right' }}>Inicio</Col>
@ -437,7 +438,11 @@ export default function RptAmazonInvoiceStatus(
loadReport()
}}
>
<Button variant="primary">Buscar</Button>
<Button variant="primary">
{' '}
<BsSearch />
Buscar
</Button>
</Col>
<Col>
<Button
@ -446,7 +451,7 @@ export default function RptAmazonInvoiceStatus(
downloadExcel()
}}
>
Excel
<BsFileEarmarkExcel /> Excel
</Button>
</Col>
</Row>
@ -483,9 +488,9 @@ export default function RptAmazonInvoiceStatus(
<th>Pedimento</th>
<th>Estatus</th>
<th style={{ width: '100px' }}>ACK</th>
<th style={{ width: '50px' }}>Clasificador</th>
<th style={{ width: '50px' }}>FechaRecepcion</th>
<th style={{ width: '50px' }}>CantidadASIN</th>
<th style={{ width: '100px' }}>Clasificador</th>
<th style={{ width: '80px' }}>Fecha Recepcion</th>
<th style={{ width: '80px' }}>Cantidad ASIN</th>
</tr>
</thead>
<tbody>
@ -685,13 +690,13 @@ export default function RptAmazonInvoiceStatus(
>
{getOnlyDate(MasterData.fhArchivoACK)}
</td>
<td style={{ textAlign: 'center', width: '200px' }}>
<td style={{ width: '200px', textAlign: 'center' }}>
{MasterData.clasificador}
</td>
<td style={{ textAlign: 'center', width: '200px' }}>
<td style={{ width: '80px', textAlign: 'center' }}>
{MasterData.fechaRecepcion}
</td>
<td style={{ textAlign: 'center', width: '200px' }}>
<td style={{ width: '80px', textAlign: 'center' }}>
{MasterData.cantidadASIN}
</td>
</tr>

Loading…
Cancel
Save