Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 14192 | Rev 14197 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 14192 Rev 14193
Línea 13... Línea 13...
13
	{ key: 'status', label: 'Activo', isSorteable: false },
13
	{ key: 'status', label: 'Activo', isSorteable: false },
14
	{ key: 'actions', label: 'Acciones', isSorteable: false }
14
	{ key: 'actions', label: 'Acciones', isSorteable: false }
15
]
15
]
Línea 16... Línea 16...
16
 
16
 
-
 
17
const TableView = ({
17
const TableView = ({
18
	import_link = '',
18
	add_link = '',
19
	add_link = '',
19
	table_link = '',
20
	table_link = '',
20
	permisions = '',
21
	permisions = '',
21
	setActionLink = function () { }
22
	setActionLink = function () { }
Línea 58... Línea 59...
58
				style: 'danger',
59
				style: 'danger',
59
				msg: 'Ha ocurrido un error'
60
				msg: 'Ha ocurrido un error'
60
			})))
61
			})))
61
	}
62
	}
Línea -... Línea 63...
-
 
63
 
-
 
64
	const getImport = () => {
-
 
65
		axios.get(import_link)
-
 
66
			.then(({ data }) => {
-
 
67
				if (!data.success) {
-
 
68
					dispatch(addNotification({
-
 
69
						style: 'danger',
-
 
70
						msg: data.data
-
 
71
					}))
-
 
72
				}
-
 
73
			})
-
 
74
	}
62
 
75
 
63
	useEffect(() => {
76
	useEffect(() => {
64
		getData({
77
		getData({
65
			url: table_link,
78
			url: table_link,
66
			params: {
79
			params: {
Línea 99... Línea 112...
99
								<div className="row justify-content-end" style={{ gap: '10px' }}>
112
								<div className="row justify-content-end" style={{ gap: '10px' }}>
100
									{
113
									{
101
										permisions.allowAdd
114
										permisions.allowAdd
102
                                        &&
115
                                        &&
103
                                        <label
116
                                        <label
-
 
117
                                        	onClick={getImport}
-
 
118
                                        	className='d-flex align-items-center btn-add'
-
 
119
                                        	style={{ cursor: 'pointer' }}
-
 
120
                                        >
-
 
121
                                        	<i className="fa fa-upload mr-2" />
-
 
122
                                            Importar
-
 
123
                                        </label>
-
 
124
									}
-
 
125
									{
-
 
126
										permisions.allowAdd
-
 
127
                                        &&
-
 
128
                                        <label
104
                                        	onClick={() => setActionLink(add_link)}
129
                                        	onClick={() => setActionLink(add_link)}
105
                                        	className='d-flex align-items-center btn-add'
130
                                        	className='d-flex align-items-center btn-add'
106
                                        	style={{ cursor: 'pointer' }}
131
                                        	style={{ cursor: 'pointer' }}
107
                                        >
132
                                        >
108
                                        	<i className="fa fa-plus mr-2" />
133
                                        	<i className="fa fa-plus mr-2" />