{option.CUENTA_ALUMNO} div>\r\n
{option.NOMBRE_COMPLETO}
\r\n div>\r\n);\r\n\r\nexport default withStyles(styles) ( \r\nclass App extends React.Component {\r\n\r\ntablaRef = React.createRef();\r\nvtRef = React.createRef();\r\ndescripcionRef = React.createRef();\r\nfechaInicioRef = React.createRef();\r\n\r\n constructor (props) {\r\n super(props);\r\n this.l=props.l\r\n this.e=props.e\r\n this.i=props.i\r\n this.state = {\r\n isLoggin : undefined,\r\n heightTableMain: 0,\r\n loadingMain: true,\r\n rows: [],\r\n expandedGroups: [],\r\n idRowSelected: null,\r\n openModal: false,\r\n id_proceso: 0,\r\n optionAutocomplete: [],\r\n loadingClientes: true,\r\n openAutoComplete: false,\r\n valueAutoComplete: null,\r\n optionAutocompleteTipo: [],\r\n valueAutoCompleteTipo: null,\r\n checkedTime: false, \r\n selectedDateInicio: new Date(),\r\n selectedDateFin: new Date(),\r\n openBackDrop: false, \r\n openModalConfirm: false,\r\n };\r\n this.descripcion = null;\r\n this.botones = [\r\n {icono: 'Add', toolt: 'Agregar sanción', nombre: 'Agregar' ,escritura:true, onclick: this.addEvent, display: 'auto'},\r\n {icono: 'Edit', toolt: 'Modificar sanción', nombre: 'Modificar' ,escritura:true, onclick: this.editEvent, display:'auto'},\r\n {icono: 'Delete', toolt: 'Eliminar sanción', nombre: 'Eliminar' ,escritura:true, onclick: this.deleteEvent, color: colores.naranja, display: 'auto'}, \r\n ];\r\n this.botones_agregar =[\r\n {icono: 'Save', toolt: '', nombre: 'Guardar',escritura:true, onclick: this.handleOk, display:'auto'},\r\n {icono: 'Close', toolt: '', nombre: 'Cerrar' ,onclick: this.handleClose, display:'auto', color: 'red'},\r\n ];\r\n this.botones_eliminar =[\r\n {icono: 'Check', toolt: '', nombre: 'Aceptar', onclick: this.handleOk, display:'auto'},\r\n {icono: 'Close', toolt: '', nombre: 'Cerrar' , onclick: this.handleCloseConfirm, display:'auto', color: 'red'},\r\n ];\r\n}\r\n\r\nchangeExpandedGroups = expandedGroups =>\r\n{\r\n this.setState({ expandedGroups });\r\n}\r\n\r\nhandleRowClick = (idRow) => event => { \r\n this.setState({ idRowSelected: idRow }); \r\n}\r\n\r\nchangeFilters = filters => { \r\n \r\n if (this.state.idRowSelected !== null)\r\n this.setState({ idRowSelected: null });\r\n \r\n}\r\n\r\naddEvent = ()=>{\r\n \r\nthis.descripcion = null;\r\nthis.setState({ valueAutoComplete: null,\r\n valueAutoCompleteTipo: null,\r\n checkedTime: true,\r\n selectedDateInicio: new Date(),\r\n selectedDateFin: new Date(),\r\n id_proceso: 1,\r\n openModal: true });\r\n\r\n}\r\n\r\neditEvent = ()=>{\r\n\r\nif (this.state.idRowSelected === null)\r\n return;\r\n\r\nconst idRowSelected = this.state.rows.find(x => x.ID_SANCION === this.state.idRowSelected); \r\nthis.descripcion = idRowSelected.DESCRIPCION;\r\n\r\nconst alumno = this.state.optionAutocomplete.find(x => x.CUENTA_ALUMNO === idRowSelected.CUENTA_ALUMNO);\r\nconst tipo = this.state.optionAutocompleteTipo.find(x => x.ID_TIPO_SANCION === idRowSelected.ID_TIPO_SANCION);\r\n\r\nthis.setState({ valueAutoComplete: alumno !== undefined ? alumno : null,\r\n valueAutoCompleteTipo: tipo !== undefined ? tipo : null,\r\n checkedTime: idRowSelected.TIEMPO_INDEFINIDO === 1 ? false : true,\r\n selectedDateInicio: idRowSelected.TIEMPO_INDEFINIDO === 1 ? new Date() : new Date(idRowSelected.FECHA_INICIO.substr(0,19)),\r\n selectedDateFin: idRowSelected.TIEMPO_INDEFINIDO === 1 ? new Date() : new Date(idRowSelected.FECHA_FINAL.substr(0,19)),\r\n id_proceso: 2,\r\n openModal: true });\r\n\r\n}\r\n\r\ndeleteEvent = ()=>{\r\n\r\nif (this.state.idRowSelected === null)\r\n return;\r\n\r\n\r\nthis.setState({ id_proceso: 3, \r\n openModalConfirm: true });\r\n\r\n}\r\n\r\nhandleClose = ()=>{\r\n this.setState({ openModal: false }); \r\n}\r\n\r\nhandleCloseConfirm =()=>{\r\n this.setState({ openModalConfirm: false });\r\n}\r\n\r\nonBlurAutoComplete = ()=>{\r\n\r\n if (this.state.openAutoComplete)\r\n this.setState({ openAutoComplete: false }); \r\n \r\n}\r\n\r\nonChangeAutocomplete = (event, value) =>{\r\n this.setState({ valueAutoComplete: value, openAutoComplete: false });\r\n}\r\n\r\nonChangeInput = (e, value)=>{ \r\n \r\n if (e === null || e.target.value === undefined)\r\n {\r\n if (this.state.openAutoComplete) \r\n this.setState({ openAutoComplete: false });\r\n \r\n return;\r\n }\r\n \r\n if ((e.target.value.toString().trim().length < 3 || (this.state.valueAutoComplete !== null && value === this.state.valueAutoComplete.CUENTA_ALUMNO + ' | ' + this.state.valueAutoComplete.NOMBRE_COMPLETO)) && this.state.openAutoComplete)\r\n this.setState({ openAutoComplete: false });\r\n else if (e.target.value.toString().trim().length >= 3 && !this.state.openAutoComplete)\r\n this.setState({ openAutoComplete: true });\r\n \r\n}\r\n\r\nfiltersClientes = (value)=>{ \r\n \r\n new Request\r\n .get(`${globales.ip}/sanciones/estudiantes/${value}`)\r\n .set({'authorization': 'Bearer ' + Auth.getToken() })\r\n .retry(0)\r\n .timeout({ response: 20000, deadline: 30000, }) \r\n .end((err, res) => {\r\n \r\n if (err) { \r\n \r\n if (err.toString().substr(0,16) === 'Error: Forbidden')\r\n {\r\n window.location.reload();\r\n return; \r\n }\r\n \r\n this.setState({ optionAutocomplete: [], openAutoComplete: false, loadingClientes: false }, ()=>{\r\n funciones.showToast('e', 'No hay conexión');\r\n });\r\n \r\n return;\r\n }\r\n \r\n const rows = JSON.parse(res.text);\r\n this.setState({ optionAutocomplete: rows, loadingClientes: false }); \r\n \r\n \r\n});\r\n \r\n}\r\n\r\nonChangeAutocompleteTipo = (event, value)=>{\r\n this.setState({ valueAutoCompleteTipo: value });\r\n}\r\n\r\nobtenerTipoSanciones = ()=>{\r\n\r\nnew Request\r\n.get(`${globales.ip}/sanciones/tipos`)\r\n.set({'authorization': 'Bearer ' + Auth.getToken() })\r\n.retry(1)\r\n.timeout({ response: 15000, deadline: 30000, })\r\n.end((err, res) => {\r\n \r\n if (err) { \r\n\r\n if (err.toString().substr(0,16) === 'Error: Forbidden')\r\n {\r\n \r\n window.location.reload();\r\n return;\r\n \r\n }\r\n\r\n funciones.showToast('e', 'No hay conexión');\r\n \r\n return;\r\n }\r\n \r\n const rows = JSON.parse(res.text);\r\n\r\n if (rows.length > 0)\r\n { \r\n this.setState({ optionAutocompleteTipo: rows });\r\n }\r\n \r\n \r\n});\r\n \r\n}\r\n\r\nonEntering = ()=>{\r\n if (!movil)\r\n document.getElementById('est-sanciones').focus();\r\n}\r\n\r\nhandleDateChangeInicio = (date)=>{\r\n this.setState({ selectedDateInicio: date });\r\n}\r\n\r\nhandleDateChangeFin = (date)=>{\r\n this.setState({ selectedDateFin: date });\r\n}\r\n\r\nhandleChangeCheckTime = (event)=>{\r\n this.setState({ checkedTime: event.target.checked });\r\n}\r\n\r\nvalidaciones = ()=>{\r\n const r = false;\r\n\r\n if (funciones.isEmpty(this.state.valueAutoComplete)){\r\n document.getElementById('est-sanciones').focus();\r\n funciones.showToast('w', 'Seleccione el estudiante');\r\n return r;\r\n }\r\n\r\n if (funciones.isEmpty(this.state.valueAutoCompleteTipo)){\r\n document.getElementById('tipo-sanciones').focus();\r\n funciones.showToast('w', 'Seleccione un tipo de sanción');\r\n return r;\r\n }\r\n\r\n if (this.state.checkedTime && new Date(funciones.getDateSelect(this.state.selectedDateInicio)) > new Date(funciones.getDateSelect(this.state.selectedDateFin))){ \r\n this.fechaInicioRef.current.focus();\r\n funciones.showToast('w', 'La fecha de inicio no debe ser mayor a la fecha final');\r\n return r;\r\n }\r\n\r\n if (funciones.isEmpty(this.descripcionRef.current.value)){\r\n this.descripcionRef.current.focus();\r\n funciones.showToast('w', 'Ingrese una descripción');\r\n return r;\r\n }\r\n\r\n return true;\r\n}\r\n\r\nhandleOk = ()=>{\r\n\r\n if (this.state.openModal && !this.validaciones())\r\n return;\r\n\r\n const {id_proceso} = this.state;\r\n const id_sancion = id_proceso === 1 ? 0 : this.state.idRowSelected;\r\n const cuenta_alumno = id_proceso === 3 ? '-' : this.state.valueAutoComplete.CUENTA_ALUMNO;\r\n const id_tipo_sancion = id_proceso === 3 ? 0 : this.state.valueAutoCompleteTipo.ID_TIPO_SANCION;\r\n const fecha_inicio = (id_proceso === 3 || !this.state.checkedTime) ? null : funciones.getDateSelect(this.state.selectedDateInicio) + 'T00:00:00.000';\r\n const fecha_final = (id_proceso === 3 || !this.state.checkedTime) ? null : funciones.getDateSelect(this.state.selectedDateFin) + 'T00:00:00.000';\r\n const descripcion = id_proceso === 3 ? null : this.descripcionRef.current.value.trim();\r\n \r\n this.setState({ openBackDrop: true, openModalConfirm: false }, ()=>{\r\n\r\n new Request\r\n .post(`${globales.ip}/sanciones/operaciones`)\r\n .set({'authorization': 'Bearer ' + Auth.getToken() })\r\n .set('Content-Type', 'application/json') \r\n .send({ id_proceso, \r\n id_sancion,\r\n cuenta_alumno,\r\n id_tipo_sancion,\r\n fecha_inicio,\r\n fecha_final,\r\n descripcion,\r\n ad_usuario: tokenInfo.user })\r\n .retry(0)\r\n .timeout({ response: 15000, deadline: 30000, }) \r\n .end((err, res) => {\r\n \r\n if (err) { \r\n \r\n if (err.toString().substr(0,16) === 'Error: Forbidden')\r\n {\r\n window.location.reload();\r\n return; \r\n }\r\n \r\n this.setState({ openBackDrop: false }, ()=>{ \r\n funciones.showToast('e', 'No hay conexión'); \r\n });\r\n \r\n return;\r\n }\r\n \r\n const rows = JSON.parse(res.text);\r\n \r\n if (rows[0].RESP === 'OK'){\r\n\r\n const row = id_proceso === 3 ? [{ ID_SANCION: rows[0].ID_SANCION }] :\r\n [{ ID_SANCION: rows[0].ID_SANCION, \r\n ID_TIPO_SANCION: id_tipo_sancion,\r\n TIPO_SANCION: this.state.optionAutocompleteTipo.find(x => x.ID_TIPO_SANCION === id_tipo_sancion).DESCRIPCION,\r\n CUENTA_ALUMNO: cuenta_alumno,\r\n NOMBRE_COMPLETO: this.state.optionAutocomplete.find(x => x.CUENTA_ALUMNO === cuenta_alumno).NOMBRE_COMPLETO,\r\n TIEMPO_INDEFINIDO: this.state.checkedTime ? 0 : 1,\r\n FECHA_INICIO: this.state.checkedTime ? fecha_inicio : null,\r\n FECHA_FINAL: this.state.checkedTime ? fecha_final : null,\r\n DESCRIPCION: descripcion\r\n }];\r\n const newStructure = funciones.refreshTable(id_proceso,\r\n this.state.rows,\r\n this.state.expandedGroups,\r\n row,\r\n 'ID_SANCION');\r\n\r\n this.setState({ expandedGroups: newStructure.refreshGroups,\r\n rows: newStructure.refreshRows,\r\n idRowSelected: id_proceso === 3 ? null : rows[0].ID_SANCION,\r\n openBackDrop: false}, ()=>{\r\n\r\n if (id_proceso === 3)\r\n return funciones.showToast('s', 'Se ha eliminado la sanción'); \r\n\r\n if (movil && newStructure.moveScroll){ window.scrollTo(0, this.state.heightTableMain); }\r\n if (newStructure.moveScroll){ this.vtRef.current.scrollToRow(rows[0].ID_SANCION); }\r\n\r\n funciones.showToast('s', id_proceso === 1 ? 'Se ha registrado la sanción' : 'Se han registrado los cambios');\r\n this.handleClose();\r\n });\r\n \r\n }\r\n else\r\n this.setState({ openBackDrop: false }, ()=> {\r\n funciones.showToast('w', rows[0].RESP);\r\n });\r\n\r\n });\r\n\r\n});\r\n\r\n}\r\n\r\nobtener_sanciones = ()=>{\r\n\r\n new Request\r\n .get(`${globales.ip}/sanciones/historial/${'-'}/${'-'}`)\r\n .set({'authorization': 'Bearer ' + Auth.getToken() })\r\n .retry(1)\r\n .timeout({ response: 15000, deadline: 40000, }) \r\n .end((err, res) => {\r\n \r\n if (err) { \r\n \r\n if (err.toString().substr(0,16) === 'Error: Forbidden')\r\n {\r\n \r\n window.location.reload();\r\n return;\r\n \r\n }\r\n \r\n this.setState({ loadingMain: false }, ()=>{ \r\n funciones.showToast('e', 'No hay conexión');\r\n });\r\n \r\n return;\r\n }\r\n \r\n const rows = JSON.parse(res.text);\r\n \r\n this.setState({ rows: rows, loadingMain: false }); \r\n \r\n }); \r\n\r\n}\r\n\r\ncomponentDidMount() { \r\n \r\n tokenInfo = Auth.getProfile(); //Token decodificado \r\n \r\n this.setState({ isLoggin: tokenInfo.plataforma !== undefined ? true : false }, ()=>{ \r\n\r\n if (tokenInfo.plataforma === 1) // Usuario Admin\r\n {\r\n this.obtener_sanciones(); \r\n }\r\n else if (tokenInfo.plataforma === 2) //Usuario estudiante\r\n { \r\n \r\n }\r\n \r\n this.setState({ heightTableMain: funciones.getHeightTableMain(movil, this).heightTable }); \r\n this.filtersClientes('-');\r\n this.obtenerTipoSanciones();\r\n\r\n}); \r\n \r\n}\r\n\r\nrender() {\r\nconst { classes } = this.props;\r\n\r\n if (this.state.isLoggin === true)\r\n {\r\n return (\r\n \r\n
\r\n \r\n {\r\n (() => {\r\n\r\n if (tokenInfo.plataforma === 1) //Si es Usuario Admin\r\n {\r\n \r\n return (\r\n \r\n \r\n \r\n \r\n
\r\n \r\n ),\r\n }}\r\n fullWidth\r\n required\r\n InputLabelProps={{ shrink: (this.state.valueAutoComplete !== null) ? true : undefined }}\r\n />}\r\n renderOption={RenderOption} \r\n onChange={this.onChangeAutocomplete}\r\n open={this.state.openAutoComplete}\r\n loading={this.state.loadingClientes}\r\n ListboxComponent={virtual.ListboxComponent}\r\n value={this.state.valueAutoComplete}\r\n classes= {{ popper: classes.popper }}\r\n onInputChange={this.onChangeInput}\r\n popupIcon={null} \r\n PaperComponent={(props)=>()} \r\n />\r\n option.DESCRIPCION} \r\n renderInput={(params) => } \r\n onChange={this.onChangeAutocompleteTipo}\r\n value={this.state.valueAutoCompleteTipo}\r\n classes={{ popper: classes.popper }}\r\n getOptionDisabled={(option) => !Boolean(option.ESTATUS)}\r\n PaperComponent={(props)=>()} \r\n /> \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n {this.state.id_proceso === 3 ? 'Eliminando...' : 'Guardando...'}\r\n \r\n \r\n\r\n \r\n );\r\n\r\n } \r\n \r\n })()\r\n\r\n }\r\n\r\n \r\n \r\n \r\n );\r\n }\r\nelse if (this.state.isLoggin === false)\r\n{\r\n //Auth.logout();\r\n window.location.reload();\r\n return; //((
))\r\n}\r\nreturn null;\r\n\r\n}//FIN RENDER\r\n}\r\n\r\n)\r\n","import React from 'react';\r\nimport CustomTable from '../../components/CustomTable';\r\nimport {globales, colores, funciones } from '../../global';\r\nimport AuthService from '../../AuthService';\r\nimport Request from 'superagent';\r\nimport Paper from '@material-ui/core/Paper';\r\nimport BarraBotones from '../../components/Barra_menu';\r\nimport {withStyles} from '@material-ui/core/styles';\r\nimport DialogTitle from '@material-ui/core/DialogTitle';\r\nimport Dialog from '@material-ui/core/Dialog';\r\nimport CloseIcon from '@material-ui/icons/Close';\r\nimport DialogActions from '@material-ui/core/DialogActions';\r\nimport Backdrop from '@material-ui/core/Backdrop';\r\nimport CircularProgress from '@material-ui/core/CircularProgress';\r\nimport TextField from '@material-ui/core/TextField';\r\nimport DialogContent from '@material-ui/core/DialogContent';\r\nimport IconButton from '@material-ui/core/IconButton';\r\nimport Typography from '@material-ui/core/Typography';\r\nimport {Table} from '@devexpress/dx-react-grid-material-ui';\r\n\r\nlet Auth = new AuthService();\r\nlet tokenInfo = [];\r\n\r\nvar movil=/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent);\r\n\r\nconst styles = theme => ({\r\n\r\npaper: { \r\n borderRadius: globales.border_dialog,\r\n minWidth: !movil ? '405px' : undefined, \r\n maxWidth: !movil ? '405px' : undefined,\r\n minHeight: !movil ? '260px' : undefined, \r\n maxHeight: !movil ? '260px' : undefined\r\n}, \r\npaperConfirm: { \r\n borderRadius: globales.border_dialog,\r\n minWidth: '320px', \r\n maxWidth: '320px', \r\n},\t\r\ncloseButton: {\r\n position: 'absolute',\r\n right: theme.spacing(1),\r\n top: theme.spacing(1),\r\n color: theme.palette.grey[500],\r\n},\r\nbackdrop: {\r\n zIndex: 500000,\r\n color: '#fff', \r\n flexDirection: 'column'\r\n},\r\n});\r\nconst widthTable = !movil ? window.screen.width - (globales.tabla.marginleft + globales.tabla.marginright) : 1336;\r\nconst columns = [ \r\n { name: 'ID_TITULO', title: 'ID_TITULO'},\r\n { name: 'DESCRIPCION', title: 'Descripción'},\r\n { name: 'CODIGO', title: 'Código'},\r\n];\r\nconst columnExtensions = [\r\n { columnName: 'DESCRIPCION', width: widthTable * 0.40},\r\n { columnName: 'CODIGO', width: widthTable * 0.15}, \r\n];\r\n\r\nconst RowId = row => row.ID_TITULO;\r\nconst TableSelectionCellComponent= (props) =>{\r\n return ();\r\n}\r\n\r\nexport default withStyles(styles) ( \r\nclass App extends React.Component {\r\n\r\ntablaRef = React.createRef();\r\ninput1Ref = React.createRef();\r\ninput2Ref = React.createRef();\r\n\r\n constructor (props) {\r\n super(props);\r\n this.l=props.l\r\n this.e=props.e\r\n this.i=props.i\r\n this.state = {\r\n isLoggin : undefined,\r\n heightTableMain: 0,\r\n loadingMain: true,\r\n rows: [],\r\n openBackDrop: false,\r\n openModal: false,\r\n openModalConfirm: false,\r\n idRowSelected: null,\r\n input1Value: null,\r\n input2Value: null,\r\n tipo_proceso: 0,\r\n };\r\n this.botones = [\r\n {icono: 'Add', toolt: '', nombre: 'Agregar' ,escritura:true, onclick: this.addEvent, display: 'auto'},\r\n {icono: 'Edit', toolt: '', nombre: 'Modificar' ,escritura:true, onclick: this.editEvent, display:'auto'},\r\n {icono: 'Delete', toolt: '', nombre: 'Eliminar' ,escritura:true, onclick: this.deleteEvent, color: colores.naranja, display: 'auto'}, \r\n ];\r\n this.botones_agregar =[\r\n {icono: 'Save', toolt: '', nombre: 'Guardar', onclick: this.handleOK, display:'auto'},\r\n {icono: 'Close', toolt: '', nombre: 'Cerrar', onclick: this.handleClose, display:'auto', color: 'red'},\r\n ];\r\n this.botones_eliminar =[\r\n {icono: 'Check', toolt: '', nombre: 'Aceptar', onclick: this.handleOK , display:'auto'},\r\n {icono: 'Close', toolt: '', nombre: 'Cerrar' , onclick: this.handleCloseConfirm, display:'auto', color: 'red'},\r\n ]; \r\n}\r\n\r\nobtener_titulos =()=>{\r\n \r\nnew Request\r\n .get(`${globales.ip}/titulos`)\r\n .set({'authorization': 'Bearer ' + Auth.getToken() })\r\n .retry(1)\r\n .timeout({ response: 15000, deadline: 15000, }) \r\n .end((err, res) => {\r\n \r\n if (err) { \r\n \r\n if (err.toString().substr(0,16) === 'Error: Forbidden')\r\n {\r\n window.location.reload();\r\n return;\r\n }\r\n \r\n this.setState({ loadingMain: false }, ()=>{ \r\n funciones.showToast('e', 'No hay conexión'); \r\n }); \r\n \r\n return;\r\n }\r\n \r\n const rows = JSON.parse(res.text); \r\n this.setState({ rows, loadingMain: false }); \r\n});\r\n \r\n}\r\n\r\nhandleRowClick=(idRow)=>event => {\r\n this.setState({ idRowSelected: idRow });\r\n}\r\n\r\naddEvent = ()=>{\r\nthis.setState({ input1Value: null,\r\n input2Value: null,\r\n tipo_proceso: 1,\r\n openModal: true }); \r\n}\r\n\r\neditEvent = ()=>{\r\n\r\nif (funciones.isEmpty(this.state.idRowSelected))\r\n return;\r\n\r\nconst rowSelected = this.state.rows.find(x => x.ID_TITULO === this.state.idRowSelected);\r\nthis.setState({ input1Value: rowSelected.DESCRIPCION.trim(),\r\n input2Value: rowSelected.CODIGO.trim(),\r\n tipo_proceso: 2,\r\n openModal: true });\r\n\r\n}\r\n\r\ndeleteEvent = ()=>{\r\n\r\nif (funciones.isEmpty(this.state.idRowSelected))\r\n return;\r\n\r\nthis.setState({ tipo_proceso: 3,\r\n openModalConfirm: true }); \r\n}\r\n\r\nhandleClose=()=>{\r\n this.setState({ openModal: false });\r\n}\r\n\r\nhandleCloseConfirm=()=>{\r\nthis.setState({ openModalConfirm: false });\r\n}\r\n\r\nonEntering = ()=>{\r\n this.input1Ref.current.focus();\r\n}\r\n\r\nvalidaciones = ()=>{\r\n const r = false;\r\n \r\n if (funciones.isEmpty(this.input1Ref.current.value)){\r\n funciones.showToast(\"w\", \"Debe ingresar la descripción\");\r\n this.input1Ref.current.focus();\r\n return r;\r\n }\r\n\r\n if (funciones.isEmpty(this.input2Ref.current.value)){\r\n funciones.showToast(\"w\", \"Debe ingresar el código\");\r\n this.input2Ref.current.focus();\r\n return r;\r\n }\r\n\r\n return true;\r\n}\r\n\r\nchangeFilters = filters => { \r\nif (this.state.idRowSelected !== null)\r\n this.setState({ idRowSelected: null });\r\n}\r\n\r\nhandleOK = ()=>{\r\n\r\nif (this.state.openModal && !this.validaciones())\r\nreturn;\r\n\r\nthis.setState({ openBackDrop: true }, ()=>{\r\n\r\nif (!this.state.openModal)\r\n this.setState({ openModalConfirm: false });\r\n\r\nconst {tipo_proceso} = this.state;\r\nconst id_titulo = (tipo_proceso === 1) ? 0 : this.state.idRowSelected;\r\nconst descripcion = (this.state.openModal) ? this.input1Ref.current.value.trim() : null;\r\nconst codigo = (this.state.openModal) ? this.input2Ref.current.value.trim() : null;\r\n\r\nnew Request\r\n .post(`${globales.ip}/titulos`)\r\n .set({'authorization': 'Bearer ' + Auth.getToken() })\r\n .set('Content-Type', 'application/json')\r\n .send({ tipo_proceso, \r\n id_titulo, \r\n descripcion, \r\n codigo, \r\n ad_usuario: tokenInfo.user })\r\n .retry(0)\r\n .timeout({ response: 15000, deadline: 20000, }) \r\n .end((err, res) => {\r\n \r\n if (err) { \r\n \r\n if (err.toString().substr(0,16) === 'Error: Forbidden')\r\n { \r\n window.location.reload();\r\n return;\r\n }\r\n \r\n this.setState({ openBackDrop: false }, ()=> { \r\n funciones.showToast('e', 'No hay conexión'); \r\n });\r\n \r\n return;\r\n }\r\n \r\n const rows = JSON.parse(res.text);\r\n this.setState({ openBackDrop: false }, ()=>{\r\n if (rows[0].RESP === undefined)\r\n this.setState({ openModal: false, rows }, ()=>{\r\n funciones.showToast(\"s\", \"Proceso realizado\");\r\n\r\n if (tipo_proceso === 3)\r\n this.setState({ idRowSelected: null });\r\n });\r\n else\r\n funciones.showToast(\"w\", rows[0].RESP);\r\n }); \r\n\r\n});\r\n\r\n});\r\n\r\n}\r\n\r\ncomponentDidMount() { \r\n \r\n tokenInfo = Auth.getProfile(); //Token decodificado\r\n\r\n this.setState({ isLoggin: tokenInfo.plataforma !== undefined ? true : false }, ()=>{ \r\n\r\n if (tokenInfo.plataforma === 1) // Usuario Admin\r\n {\r\n this.obtener_titulos(); \r\n }\r\n \r\n this.setState({ heightTableMain: funciones.getHeightTableMain(movil, this).heightTable }); \r\n\r\n }); \r\n \r\n}\r\n\r\nrender() {\r\nconst { classes } = this.props;\r\n\r\n if (this.state.isLoggin === true)\r\n {\r\n return (\r\n \r\n \r\n \r\n {\r\n (() => {\r\n \r\n if (tokenInfo.plataforma === 1) //Si es Usuario Admin\r\n {\r\n \r\n return (\r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n\r\n \r\n\r\n \r\n \r\n {this.state.tipo_proceso < 3 ? \"Guardando...\" : \"Eliminando...\"}\r\n \r\n \r\n\r\n \r\n );\r\n\r\n } \r\n \r\n })()\r\n\r\n }\r\n\r\n \r\n \r\n \r\n );\r\n }\r\nelse if (this.state.isLoggin === false)\r\n{\r\n //Auth.logout();\r\n window.location.reload();\r\n return; //(())\r\n}\r\nreturn null;\r\n\r\n}//FIN RENDER\r\n}\r\n\r\n)"],"sourceRoot":""}