csv en reservaciones

This commit is contained in:
Mariela 2022-08-28 01:47:26 -06:00
parent 7b7a3f27d2
commit cc9a83d550
4 changed files with 33 additions and 20 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

View File

@ -446,6 +446,8 @@ const App = () => {
<>
<Route path="/login" exact component={LogInUser} />
<Route path="/crud" component={Crud} />
</>
)

View File

@ -6,11 +6,11 @@ export const AppFooter = (props) => {
<img
src={
props.layoutColorMode === 'light'
? 'assets/layout/images/logo-dark.svg'
? 'images/deimos-logo.png'
: 'assets/layout/images/logo-white.svg'
}
alt="Logo"
height="20"
height="40"
className="mr-2"
/>
por

View File

@ -182,8 +182,17 @@ const Reservations = () => {
}
const exportCSV = () => {
//
if (selectedReservations) {
while (dt.current.props.value.length > 0)
dt.current.props.value.pop();
let n=0;
for (let n = 0; n < selectedReservations.length; n++){
dt.current.props.value.push(selectedReservations[n]);
}
}
dt.current.exportCSV();
selectedReservations.current.exportCSV();
};
@ -238,8 +247,9 @@ const Reservations = () => {
<Button
label="Nueva Reservación"
icon="pi pi-plus"
className="p-button-success mr-2"
className="p-button-primary mr-2"
onClick={openNewReservation}
/>
<Button
label="Eliminar"
@ -499,6 +509,7 @@ const Reservations = () => {
headerStyle={{ width: '3rem' }}
></Column>
<Column
exportFilename="Date"
field="date"
sortable
header={headerDate}