-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.js
executable file
·53 lines (32 loc) · 1.4 KB
/
config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/**
* Created by faviofigueroa on 6/7/16.
*/
// ?????????????????????????????????????????????????????????????????????? \\
// ? Favio Figueroa Penarrieta - JavaScript Library ?
// ?????????????????????????????????????????????????????????????????????? \\
// ? Copyright � 2014 Disydes (http://disydes.com) ?
// ?????????????????????????????????????????????????????????????????????? \\
// ? Vista para automatizar cualquier front end basado en jQuery ? plugin para hacer peticiones ajax
// ?????????????????????????????????????????????????????????????????????? \\
(function ($) {
config = {
tipo_ruta:'DOMINIO', //PUEDE IR DOMINIO
host : 'http://disydes.com/',
usPxp:'webfirma', //usuario pxp
pwdPxp: '8e3a7a8e6c441a34f11d53b7ca6aeb19',//'c36becaecef0685b4b6f722b05fd6427', //md5
//123 = 202cb962ac59075b964b07152d234b70
//root cda47bf12c43a24d1b2af7014c012357
IP : {ip:"172.17.45.229",carpeta:"kerp"},
DOMINIO : {url:"erpmobile.obairlines.bo"},
ruta_servicio : '',
init :function () {
if(config.tipo_ruta == 'IP'){
config.ruta_servicio = config.IP.ip+':80/'+config.IP.carpeta;
}else{
config.ruta_servicio = config.DOMINIO.url+':80';
}
console.log(config.ruta_servicio);
}
};
})
(jQuery);