Commit Graph

2350 Commits

Author SHA1 Message Date
Roly Rudy Gutierrez Pinto
8e28c0a16f PM-1344 2015-02-04 12:13:41 -04:00
Julio Cesar Laura Avendaño
e79c7e8799 Merged in gproly/processmaker (pull request #1370)
PM-1452
2015-02-04 12:06:27 -04:00
Julio Cesar Laura Avendaño
a0c757a287 Merged in mcuiza/processmaker (pull request #1372)
PM-1145 No se muestra el calendario que esta usando un usuario
2015-02-04 11:51:49 -04:00
marcelo.cuiza
78c0d75522 PM-1145, PM-1131
PM-1445, No se muestra el calendario que esta usando un usuario. PM-1131, actualizacion de etiquetas en trigger wizard

PM-1445, se agrego el parametro CALENDAR_NAME en usersAjax.php y se recibio el mismo en users.js
2015-02-03 17:31:20 -04:00
marcelo.cuiza
fd4b865c97 Merge remote branch 'upstream/master' 2015-02-03 16:41:02 -04:00
marcelo
66ca1ab983 El bugs es PM-1145 no recibia el parametro correspondiente a la variable del calendar.
PM-1131, mejora en las etiquetas

PM-1145, Se lo resolvio creando la variable faltante.
2015-02-03 16:26:25 -04:00
Freddy Daniel Rojas Valda
b7fc7ee980 PM-978 "FIX notice new issues(webentry, variables). Complete Extended XML bpmn schema to add running artifacts in file .pmx" SOLVED 2015-02-03 15:44:38 -04:00
Roly Rudy Gutierrez Pinto
07f48259c3 PM-1452 2015-02-03 14:40:33 -04:00
Brayan Pereyra
5c3a4ac977 LISTS: Creacion de APIs 2015-02-03 09:32:15 -04:00
Julio Cesar Laura Avendaño
4bd173de68 Merged in darojas/processmaker/PM1330 (pull request #1367)
PM-1330 "No se guardan el orden establecido de condiciones de enrutamiento en los gateways" SOLVED
2015-02-02 14:47:03 -04:00
Brayan Pereyra
1dfce5a074 LISTS: Adicion de ESQUEMA y MODELO 2015-02-02 10:10:22 -04:00
Brayan Pereyra
e7488e2ef9 LISTS: Adicion de ESQUEMA y MODELO 2015-02-02 10:09:49 -04:00
Freddy Daniel Rojas Valda
d71bd522f7 PM-1330 "No se guardan el orden establecido de condiciones de enrutamiento en los gateways" SOLVED 2015-01-31 09:44:48 -04:00
Roly Rudy Gutierrez Pinto
6c8d06059d PM-1429 2015-01-30 14:41:26 -04:00
Roly Rudy Gutierrez Pinto
49438f0211 PM-1429 2015-01-29 10:59:45 -04:00
Julio Cesar Laura Avendaño
06334b4125 Merged in victorsl/processmaker/PM-939 (pull request #1351)
PM-1005 "WebEntry-Event (Endpoints)"
2015-01-28 15:25:58 -04:00
Luis Fernando Saisa Lopez
f3f56df12f PM 934 "PMFPauseCase doesn't pause a case" SOLVED 2015-01-29 09:44:16 -04:00
Luis Fernando Saisa Lopez
e57fd5306b Merge branch 'master' of bitbucket.org:colosa/processmaker into PM-1278 2015-01-28 17:06:33 -04:00
Julio Cesar Laura Avendaño
252274572f Merged in darojas/processmaker/PM-1403 (pull request #1354)
PM-1403 "Subprocesos muestran un error al momento de hacer correr el caso" SOLVED
2015-01-23 15:42:01 -04:00
Freddy Daniel Rojas Valda
0ac577a96c PM-1393 "Subprocesos muestran un error al momento de hacer correr el caso" SOLVED 2015-01-24 13:49:35 -04:00
Roly Rudy Gutierrez Pinto
dbd751038e IMPROVEMENT PM-1338 Running cases step_mode 'EDIT' & 'VIEW' 2015-01-23 11:54:59 -04:00
Victor Saisa Lopez
5516df3512 PM-1005 "WebEntry-Event (Endpoints)"
- Se han implementado los siguientes Endpoints:
    GET    /api/1.0/{workspace}/project/{prj_uid}/web-entry-events
    GET    /api/1.0/{workspace}/project/{prj_uid}/web-entry-event/{wee_uid}
    GET    /api/1.0/{workspace}/project/{prj_uid}/web-entry-event/event/{evn_uid}
    POST   /api/1.0/{workspace}/project/{prj_uid}/web-entry-event
    PUT    /api/1.0/{workspace}/project/{prj_uid}/web-entry-event/{wee_uid}
    DELETE /api/1.0/{workspace}/project/{prj_uid}/web-entry-event/{wee_uid}
- Se han implementado los metodos necesarios para el Export, Import y
  Delete (delete Process) de este nuevo "Objeto"
- Se ha solucionado bugs al importar un Projecto con "Gateway to Gateway"
2015-01-22 15:27:35 -04:00
Luis Fernando Saisa Lopez
cf39dbbf97 PM 934 "PMFPauseCase doesn't pause a case" SOLVED
Code Issue:
PMFPauseCase doesn't pause a case
Solution:
El trigger que se prentende ejecutar esta mal planteado, cuando se tiene un trigger en "After Routing" de una tarea el
INDEX se debe incrementar puesto que al derivar la tarea el INDEX tiene otro valor se sugiere los siguientes ejemplos:
1.-
@@FUTURE_DATE = date('Y-m-d', strtotime("+4 days"));
@@RET_VAL = PMFPauseCase(@@APPLICATION, @%INDEX+1, @@USER_LOGGED, @@FUTURE_DATE);

2.-
$delIndex = @%INDEX;
$criteria = new Criteria("workflow");
$criteria->addSelectColumn(AppDelegationPeer::DEL_INDEX);
$criteria->add(AppDelegationPeer::APP_UID, @@APPLICATION, Criteria::EQUAL);
$criteria->add(AppDelegationPeer::DEL_LAST_INDEX, 1, Criteria::EQUAL);
$rsCriteria = AppDelegationPeer::doSelectRS($criteria);
$rsCriteria->setFetchmode(ResultSet::FETCHMODE_ASSOC);
if($rsCriteria->next()){
 $row = $rsCriteria->getRow();
 $delIndex = $row["DEL_INDEX"];
}
@@FUTURE_DATE = date('Y-m-d', strtotime("+4 days"));
@@RET_VAL = PMFPauseCase(@@APPLICATION, $delIndex, @@USER_LOGGED, @@FUTURE_DATE);
2015-01-22 14:42:59 -04:00
Freddy Daniel Rojas Valda
9678efaae4 PM-1293 "Se adicionan cambios necesarios en la bd. No se pueden crear procesos de tipo BPMN en Window Server 2008 R2" SOLVED 2015-01-21 15:56:35 -04:00
Roly Rudy Gutierrez Pinto
179bb901c2 IMPROVEMENT PM-1276 2015-01-19 14:59:07 -04:00
Roly Rudy Gutierrez Pinto
5fb4cb9217 PM-1275 PM-1276: Create Dynaform from Copy/Import & PM Table dynaform. 2015-01-19 11:29:15 -04:00
Julio Cesar Laura Avendaño
cebc26100e Merged in luisfernandosl/processmaker/PM-1258 (pull request #1336)
PM 934 "16557: PMFDerivate is not working" SOLVED
2015-01-18 22:51:32 -04:00
Luis Fernando Saisa Lopez
eac594e0d9 PM 934 "16557: PMFDerivate is not working" SOLVED
Code Issue:
16557: PMFDerivate is not working.
Solution:
- En el metodo derivateCase(), existia codigo repetido en dos partes del metodo. Se suprime el codigo repetido.
- En PMFDerivateCase contiene lo siguiente:
      PMFDerivateCase ($caseId, $delIndex, $bExecuteTriggersBeforeAssignment = false, $sUserLogged = null)
  Al ejecutar el trigger cuando esta como Before Assigment, se debe pasar el tercer parametro como true.
2015-01-17 17:02:10 -04:00
Victor Saisa Lopez
35ba6c5709 PM-1227 "Error al borrar un Dynaforms/Input Documents..." SOLVED
Issue:
    Error al borrar un Dynaforms/Input Documents en Supervisor Steps.
Cause:
    Uso incorrecto de la funcion "var_dump" y "echo" en el metodo "reorderPositions()"
Solution:
    Se estan quitando esas lineas
2015-01-17 11:11:20 -04:00
Julio Cesar Laura Avendaño
f0113ae314 Merged in luisfernandosl/processmaker/PM-940 (pull request #1329)
PM 940 "ProcessMaker" Email Server Frontend" SOLVED
2015-01-15 23:49:51 -04:00
Freddy Daniel Rojas Valda
f6be1d3580 PM-1232 "fix. En IE no se visualiza correctamente la importacion de un proceso bpmn" SOLVED 2015-01-16 14:49:35 -04:00
Freddy Daniel Rojas Valda
92874f735f PM-1232 "En IE no se visualiza correctamente la importacion de un proceso bpmn" SOLVED 2015-01-16 11:29:57 -04:00
Luis Fernando Saisa Lopez
40178fdc1f PM 940 "ProcessMaker" Email Server Frontend" SOLVED
> Se agrega marcas para el modulo Email Server para la version de la Comunidad.
2015-01-15 17:01:37 -04:00
Luis Fernando Saisa Lopez
c33fd019e8 Merge branch 'master' of bitbucket.org:colosa/processmaker into PM-940 2015-01-15 09:11:26 -04:00
Luis Fernando Saisa Lopez
abeb15e12b Merge branch 'master' of bitbucket.org:colosa/processmaker into PM-940 2015-01-14 09:29:55 -04:00
Roly Rudy Gutierrez Pinto
fbf4ad1079 PMDynaform setData 2015-01-13 15:17:51 -04:00
Luis Fernando Saisa Lopez
3e1db94d28 Merge branch 'master' of bitbucket.org:colosa/processmaker into PM-940 2015-01-13 08:57:59 -04:00
Roly Rudy Gutierrez Pinto
2d915ff264 PMDynaform 2015-01-12 15:58:52 -04:00
Freddy Daniel Rojas Valda
4ca3d127e4 PM-1165 "Se agrega funcion doGetSteps, para obtener los pasos evaluados" 2015-01-10 12:05:27 -04:00
Luis Fernando Saisa Lopez
7977410c4a PM 940 "ProcessMaker-MA "Email Server (endpoints)"" SOLVED
> Se agregado el Frontend para el modulo Email Server.
2014-12-24 11:40:57 -04:00
Julio Cesar Laura Avendaño
ccacf2952e Merged in norah/processmaker/PM-1123 (pull request #1300)
PM-1123 Podar features enterprise de la version 3.0 para sacar el beta 3.0
2014-12-23 09:10:10 -04:00
norahmollo
6a62837acb PM-1123 Podar features enterprise de la version 3.0 para sacar el beta 3.0
Marcas para la deshabilitar code Scan
2014-12-23 17:22:42 -04:00
Freddy Daniel Rojas Valda
6202e95616 PM-1146 "Los pools y sus elementos contenidos no se graban al grabar el proyecto." SOLVED 2014-12-20 16:45:26 -04:00
Freddy Daniel Rojas Valda
69d24d5f68 PM-1142 "Any user can reassign any case even if he/she is not assign to the task" SOLVED 2014-12-19 13:38:04 -04:00
Freddy Daniel Rojas Valda
dbe8219e6b PM-1142 "Any user can reassign any case even if he/she is not assign to the task" SOLVED 2014-12-19 11:59:40 -04:00
Julio Cesar Laura
0034008941 Fix notice message in class derivation when the next task is end of process 2014-12-18 15:40:43 -04:00
Julio Cesar Laura Avendaño
d40b3a864c Merged in luisfernandosl/processmaker/PM-940 (pull request #1271)
PM 940 "ProcessMaker-MA "Email Server (endpoints)"" SOLVED
2014-12-12 14:50:41 -04:00
Luis Fernando Saisa Lopez
06777f0d50 PM 940 "ProcessMaker-MA "Email Server (endpoints)"" SOLVED
> ProcessMaker-MA "Email Server (endpoints)"

  - Se han implementado los siguientes Endpoints:
	GET    /api/1.0/{workspace}/email/paged?filter={filter}&start={start}&limit={limit}
	GET    /api/1.0/{workspace}/emails?filter={filter}&start={start}&limit={limit}
	GET    /api/1.0/{workspace}/email/{mess_uid}
	POST   /api/1.0/{workspace}/email
	POST   /api/1.0/{workspace}/email/test-connection
	PUT    /api/1.0/{workspace}/email/{mess_uid}
	DELETE /api/1.0/{workspace}/email/{mess_uid}

  - Se esta creando un 1er registro en la tabla EMAIL_SERVER, esto al ejecutar el comando "./processmaker upgrade".
  - El metodo "System::getEmailConfiguration()" recupera el EMAIL_SERVER por default, caso contrario trabajara como lo
    hacia anteriormente.

Merge branch 'master' of bitbucket.org:colosa/processmaker into PM-940

Conflicts:
	workflow/engine/config/schema.xml
	workflow/engine/data/mysql/schema.sql
2014-12-12 15:13:53 -04:00
Julio Cesar Laura Avendaño
d048b55613 Merged in darojas/processmaker/PM-1113 (pull request #1272)
PM-1113 Arreglar labels para PM3 - SOLVED
2014-12-11 17:13:33 -04:00
Freddy Daniel Rojas Valda
1429ca3741 PM-1113 Arreglar labels para PM3 - SOLVED 2014-12-12 15:49:06 -04:00