From fab7d63333b86b9fe0f1c52d2c642b52bbf506c0 Mon Sep 17 00:00:00 2001 From: gabrhr <73925454+gabrhr@users.noreply.github.com> Date: Mon, 6 Jun 2022 11:35:56 -0500 Subject: Add CRUD Camiones MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - están ok funcionando: listar, insertar, editar, eliminar #TODO - añadir todos los puntos - Mejorar el path del punto con funcion - añadir tiempos segun distancia - estetica al final (camion, colores, etc) - Arreglar combos - Añadir los reducer de pedidos, rutas, almacen Camiones CRUD - ver codigo de camion corelativo - añadir Ciudad origen --- front/odiparpack/app/components/Tables/CrudTableForm.js | 15 ++++++++++++--- .../app/components/Tables/tableParts/RowReadOnly.js | 2 +- 2 files changed, 13 insertions(+), 4 deletions(-) (limited to 'front/odiparpack/app/components/Tables') diff --git a/front/odiparpack/app/components/Tables/CrudTableForm.js b/front/odiparpack/app/components/Tables/CrudTableForm.js index 017a3fc..5e99280 100644 --- a/front/odiparpack/app/components/Tables/CrudTableForm.js +++ b/front/odiparpack/app/components/Tables/CrudTableForm.js @@ -15,21 +15,30 @@ class CrudTableForm extends React.Component { this.props.fetchData(this.props.dataInit, this.props.branch); } } + + renderData(){ + this.props.dispatch(this.props.getDataAPI()).then((res) => { + if (res) { + this.props.fetchData(res.data, this.props.branch); + } + }) + }6 + sendValues = (values) => { setTimeout(() => { this.props.submit(values, this.props.branch); }, 500); if (this.props.editingId === this.props.initValues.get('id')) { - this.props.dispatch(this.props.editRowAPI()).then((res) => { + this.props.dispatch(this.props.editRowAPI(values)).then((res) => { if (res) { console.log("EDIT RO ", res) } }) } else { - this.props.dispatch(this.props.addNewAPI()).then((res) => { + this.props.dispatch(this.props.addNewAPI(values)).then((res) => { if (res) { - console.log("ADD NEW FORM ", res) + this.renderData(); } }) } diff --git a/front/odiparpack/app/components/Tables/tableParts/RowReadOnly.js b/front/odiparpack/app/components/Tables/tableParts/RowReadOnly.js index f6be3fd..5e58ca7 100644 --- a/front/odiparpack/app/components/Tables/tableParts/RowReadOnly.js +++ b/front/odiparpack/app/components/Tables/tableParts/RowReadOnly.js @@ -29,7 +29,7 @@ class RowReadOnly extends React.Component { } = this.props; const eventDel = () => { removeRow(item, branch); - this.props.dispatch(removeRowAPI()).then((res) => { + this.props.dispatch(removeRowAPI(item.get('id'))).then((res) => { if (res) { console.log("REMOVE READ ONLY ", res) } -- cgit v1.2.3