Commit Graph

48 Commits

Author SHA1 Message Date
marcelo.cuiza
8eaf4fbcbb email_event_solved
Conflicts:
	workflow/engine/config/schema.xml
2015-06-25 16:57:18 -04:00
marcelo.cuiza
e72277f964 endpoints, running cases, export, import, files manager issues 2015-06-25 14:31:38 -04:00
Luis Fernando Saisa Lopez
287365537b PM 1459 "ProcessMaker-MA: Script Task Definition (endpoints)" SOLVED
> ProcessMaker-MA "Script Task Definition (endpoints)"

  - Se han implementado los siguientes Endpoints:
      GET    /api/1.0/{workspace}/project/{prj_uid}/script-tasks
      GET    /api/1.0/{workspace}/project/{prj_uid}/script-task/{scrtas_uid}
      GET    /api/1.0/{workspace}/project/{prj_uid}/script-task/activity/{act_uid}
      POST   /api/1.0/{workspace}/project/{prj_uid}/script-task
      PUT    /api/1.0/{workspace}/project/{prj_uid}/script-task/{scrtas_uid}
      DELETE /api/1.0/{workspace}/project/{prj_uid}/script-task/{scrtas_uid}

  - Se agrego la funcionalidad necesaria en el DESIGNER
  - Exportar/Importar, se incluyen los registros de la tabla SCRIPT_TASK
  - Eliminar Projecto, se eliminan los registros de la tabla SCRIPT_TASK
  - Runing case
2015-06-24 18:28:20 -04:00
Victor Saisa Lopez
e5c79b6813 PM-2685 "Error al importar y sobre-escribir un proceso que ya" SOLVED
Issue:
    Error al importar y sobre-escribir un proceso que ya cuenta con casos (By Yanine's Team)
Cause:
    Al tratar de sobre-escribir el proceso verifica si este tiene casos, en caso
    de tener casos lanza una excepcion
Solution:
    - Se evita que lanze la excepcion
    - Los casos del proceso se mantienen
2015-05-15 12:30:09 -04:00
Victor Saisa Lopez
8f30cc7cec PM-00000 "Improvements for BPMN-DESIGNER (back-end)" SOLVED
Issue:
    Improvements for BPMN-DESIGNER: Events, Gateways (back-end)
Description:
    - Se han realizado varias mejoras al back-end del BPMN-DESIGNER:
          > Se a agregado soporte para los events de otros tipos
            que no sean message-event (solo se permitio que se acepte
            el dibujado, aun no tienen funcionalidad). Tambien se a
            logrado que el diseñel flujo sea funcional no importando
            que estos events pertenezcan al flujo.
          > Se a mejorado el gateway-to-gateway (ya no es necesario
            crear siempre su task-dummy)
          > Se hicieron mejoras al default-flow
          > Se implementaron metodos necesarios para que cuando un
            event de tipo start es eliminado, este cambio sea reflejado
            en su activity
    - Los projects/processes creados antes de la fecha de creacion de
      este commit no funcionaran. Se sugiere crear nuevos projects/processePM-00000 "Improvements for BPMN-DESIGNER (back-end)" SOLVED

Issue:
    Improvements for BPMN-DESIGNER: Events, Gateways (back-end)
Description:
    - Se han realizado varias mejoras al back-end del BPMN-DESIGNER:
          > Se a agregado soporte para los events de otros tipos
            que no sean message-event (solo se permitio que se acepte
            el dibujado, aun no tienen funcionalidad). Tambien se a
            logrado que el diseñel flujo sea funcional no importando
            que estos events pertenezcan al flujo.
          > Se a mejorado el gateway-to-gateway (ya no es necesario
            crear siempre su task-dummy)
          > Se hicieron mejoras al default-flow
          > Se implementaron metodos necesarios para que cuando un
            event de tipo start es eliminado, este cambio sea reflejado
            en su activity
    - Los projects/processes creados antes de la fecha de creacion de
      este commit no funcionaran. Se sugiere crear nuevos projects/processess
2015-03-20 17:13:44 -04:00
Victor Saisa Lopez
578d58a89f PM-1723 "Designer: Se pierde las configuraciones de un..." SOLVED
Issue:
    Designer: Se pierde las configuraciones de un subproceso al
    importar el proceso
Cause:
    Al momento de importar no se esta registrando de manera correcta
    los registros en la tabla "SUB_PROCESS"
Solution:
    Se esta validando que los registros en la tabla "SUB_PROCESS" sean
    unicos al momento de la importacion
Explanation:
    - Al momento de la importacion de un projecto, si un Activity
      de tipo sub-process tiene definido sus properties, esta
      configuracion se registra en la tabla correspondiente, no
      importando si previamente ya fue importado el projecto que
      es el sub-process.
    - La importacion del projecto-principal y el projecto-sub-proceso
      es independiente, este criterio ya se lo tiene en produccion desde
      hace varias veriones atras.
    - Un ejemplo practico seria el siguiente caso:
      Un administrador exporta el projecto-principal y el projecto-sub-proceso,
      y dadas las circunstancias el projecto-sub-proceso se pierde, dañetc.
      Entonces el administrador por lo menos lograra importar en su workspace
      el projecto-principal (pues la importacion no valida que primero deba
      importar el projecto-sub-proceso)
2015-03-04 16:51:41 -04:00
Luis Fernando Saisa Lopez
f0bebb5fe5 PM-939 "Support for Message-Event(Export, Import y Delete)"
> Se han implementado los metodos para: Export, Import y Delete (delete Process) de este nuevo "Objeto", asi tambien
  se ha  agregado validaciones en el listados en el casesList.
2015-02-20 17:12:49 -04:00
Victor Saisa Lopez
b83718f295 PM-939 "Support for Message-Event (Endpoints and Backend)"
- Se han implementado los siguientes Endpoints:
    GET    /api/1.0/{workspace}/project/{prj_uid}/message-event-definitions
    GET    /api/1.0/{workspace}/project/{prj_uid}/message-event-definition/{msged_uid}
    GET    /api/1.0/{workspace}/project/{prj_uid}/message-event-definition/event/{evn_uid}
    POST   /api/1.0/{workspace}/project/{prj_uid}/message-event-definition
    PUT    /api/1.0/{workspace}/project/{prj_uid}/message-event-definition/{msged_uid}
    DELETE /api/1.0/{workspace}/project/{prj_uid}/message-event-definition/{msged_uid}
- Se han implementado los metodos necesarios/requeridos para el backend
  del DESIGNER para esta nueva funcionalidad
2015-02-13 16:32:43 -04:00
Luis Fernando Saisa Lopez
02d91e90a6 PM-767 "BPMN Designer Añr lista de messages"
> ProcessMaker-MA "Message (endpoints)"
  - Se han implementado los siguientes Endpoints:
  GET    /api/1.0/{workspace}/project/{prj_uid}/message-types/{msgt_uid}
  GET    /api/1.0/{workspace}/project/{prj_uid}/message-type/{msgt_uid}
  POST   /api/1.0/{workspace}/project/{prj_uid}/message-type
  PUT    /api/1.0/{workspace}/project/{prj_uid}/message-type/{msgt_uid}
  DELETE /api/1.0/{workspace}/project/{prj_uid}/message-type/{msgt_uid}
- Se han implementado los metodos necesarios para el Export, Import y Delete (delete Process) de este nuevo "Objeto"
2015-02-04 17:18:32 -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
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
Victor Saisa Lopez
7e3dc8aae3 PM-937 "Add Gateway to Gateway support" SOLVED
Issue:
    Add Gateway to Gateway support
Cause:
    Nueva solicitud de funciones
Solution:
    - Se ha implementado esta nueva funcionalidad "Gateway to Gateway" de un BPMN-Project a un ProcessMaker-Project
    - Se ha agregado un nuevo tipo de Task (GATEWAYTOGATEWAY) que sirve de puente para conectar un Gateway con otro Gateway
2014-12-04 11:40:52 -04:00
Victor Saisa Lopez
dc21c89799 PM-938 "Add default flow support" SOLVED
Issue:
    Add default flow support
Cause:
    Nueva solicitud de funciones
Solution:
    Se ha implementado esta nueva funcionalidad, la cual se aplica a:
            BPMN       ProcessMaker
            ====       ============
    Gateway EXCLUSIVE  EVALUATE
    Gateway INCLUSIVE  PARALLEL-BY-EVALUATION
2014-11-26 10:19:07 -04:00
Victor Saisa Lopez
c887b5549d ProcessMaker-BE "Process ----> Generate BPMN (Endpoint)"
- Se ha implementado el siguiente Endpoint:
    POST /api/1.0/{workspace}/project/generate-bpmn
2014-07-29 16:10:58 -04:00
Victor Saisa Lopez
5b4b571f0f ProcessMaker-BE "Proceso -----> Generar BPMN (Endpoint)"
- Se ha implementado el siguiente Endpoint:
    POST /api/1.0/{workspace}/project/process/{pro_uid}/generate-bpmn
2014-07-24 17:18:48 -04:00
Victor Saisa Lopez
04564c11c3 ProcessMaker-BE "Group (fixes)"
- Se agrego validacion al elminar un grupo (si el grupo esta asignado a una tarea)
- Otros improvements tambien se realizaron
2014-06-23 12:56:23 -04:00
Victor Saisa Lopez
82071586c2 ProcessMaker-BE "Trigger Wizard (fixes)"
- En el listado de trigger wizards no estaba ordenado, ahora se despliega ordenadamente
- Se corrigio el .feature correspondiente para que aplique el cambio
- Otros fixes tambien se realizaron
2014-06-20 11:48:57 -04:00
Brayan Osmar Pereyra Suxo
ca31925915 Correcion en el listado de PROJECTS 2014-05-20 15:15:56 -04:00
Victor Saisa Lopez
c8be0f3068 ProcessMaker-BE "BPMN Import (endpoint)"
- Se a implementado el siguiente Endpoint:
    POST /api/1.0/{workspace}/project/import
- Se ha completado la eliminacion de datos de la tabla WEB_ENTRY cuando
  se elimina el projecto desde el DESIGNER
- Al importar un projecto con las opciones "OVERWRITE y DISABLE" se encontraron
  problemas, los mismos fueron solucionados
2014-05-05 12:19:20 -04:00
Daniel Rojas
06810f7ff0 Se modifica update start event de Case Scheduler y Web Entry 2014-04-29 11:06:16 -04:00
Daniel Rojas
c264ec6207 Se modifica la funcionalidad de start event para Case Scheduler y Web Entry 2014-04-29 09:54:46 -04:00
Daniel Rojas
517924b38a Se modifica la funcionalidad de start event para Case Scheduler y Web Entry (remove event, add flow) 2014-04-28 16:55:12 -04:00
Daniel Rojas
065183ba5c Se modifica la funcionalidad de start event para Case Scheduler y Web Entry (remove event, add flow) 2014-04-28 15:22:53 -04:00
Daniel Rojas
c0813f669e Se modifica la funcionalidad de start event para Case Scheduler y Web Entry (add) 2014-04-28 12:05:08 -04:00
Daniel Rojas
c15f36d0ef Se modifica la funcionalidad de start event para Case Scheduler y Web Entry (add) 2014-04-28 11:49:51 -04:00
Daniel Rojas
eaeac5372a Se agrega la funcionalidad de start event para Case Scheduler y Web Entry (add) 2014-04-28 10:48:34 -04:00
Erik Amaru Ortiz
eb71bea144 Major Updates for import BPMN project 2014-04-07 16:10:42 -04:00
Erik Amaru Ortiz
00fd862056 BPMN Project Import chages to import alll workflow properties data 2014-03-27 19:11:24 -04:00
Erik Amaru Ortiz
16d861c225 Adding SubProcess support for Bpmn->Workflow adapter 2014-03-26 12:21:18 -04:00
Erik Amaru Ortiz
f104861c36 Solving bug: when a BPMN Project is updated a new Workflow::route is created, this is happening each time the project is updated: SOLVED
- now routes are being updated (if already exists) instead create new one each time
2014-03-25 11:30:56 -04:00
Erik Amaru Ortiz
1a4d3b0a21 Adding Exporter for BPMN Projects (1st commit) 2014-02-28 19:11:34 -04:00
Erik Amaru Ortiz
bf933a5bf2 Adding Unit Test to ensure a right behaviour of BpmnWorkflow Adapter
- flow->gateways (bpmn) to route (workflow) conversion is working fine
 - start and end event (bpmn) to setting start and end tasks is working fine
2014-02-27 15:51:42 -04:00
Erik Amaru Ortiz
a368fa0066 Adding flow listener to save route conditions into workflow project from bpmn flows 2014-02-26 17:38:07 -04:00
Erik Amaru Ortiz
56be79f2ae Updating GET /projects data return, now it is returning all projects bpmn and classic projects
Them can be classified by prj_type: [bpmn|classic]
2014-02-26 12:53:17 -04:00
Erik Amaru Ortiz
887fa6b46a Adding Unit Tests to BpmnWorkflow Adapter
- Adding Activity->Gateway Flow handler
- Adding Activity->Gateway ==> Route Listener to Adapter

Now gateways with DIVERGING and CONVERGING directions are interpreted as its respective workflow route types.
2014-02-25 13:47:59 -04:00
Erik Amaru Ortiz
7962d40a0f Updating Unit Tests for BpmnWorkflow Adapter, and some Bpmn->Workflow logic 2014-02-24 19:10:45 -04:00
Erik Amaru Ortiz
ec48facf8b Updates On Bpmn->Workflow Adapter, now activities and flows are updated just when its data have changed 2014-02-18 17:41:45 -04:00
Erik Amaru Ortiz
79ee31b761 More Update for BpmnWorkflow Adapter class, now start and end tasks are updating successfully on Workflow Layer 2014-02-12 17:01:19 -04:00
Erik Amaru Ortiz
0e36b7b397 Last FIX for create gateway-activities on BpmnWorkflow Adapter 2014-02-11 20:32:20 -04:00
Erik Amaru Ortiz
f4bca968b8 Updating Workflow Adapter class 2014-02-11 16:57:16 -04:00
Erik Amaru Ortiz
9a4c98bb53 Adding Test Units for BpmnEvent, BpmnGateway classes 2014-02-10 13:09:50 -04:00
Erik Amaru Ortiz
82da942ea1 updates to enable save flow connections between activity->activity and activity->gateway 2014-02-07 15:42:24 -04:00
Erik Amaru Ortiz
ca7fa0651d adding flow -> task creation via BpmnWorkflow adapter 2014-02-06 21:26:06 -04:00
Erik Amaru Ortiz
8bbf02d188 Adding workflow behaiour on Adapter Bpmn-> to -> workflow class
- when a activity is created -> create a task
- when a activity is updated -> update a task
- when a activity is deleted -> delete a task
2014-02-06 16:21:46 -04:00
Erik Amaru Ortiz
9c8d66ef07 Adding adapters for Workflow->Bpmn and Bpmn->Workflow projects, and more updates & fixes 2014-02-05 17:29:28 -04:00
Erik Amaru Ortiz
aa399794f3 Adding Override Methods to Adapter Bpmn->Workflow Projects 2014-02-05 14:09:48 -04:00
Erik Amaru Ortiz
0063597e08 Enabling to use GET method for Project endpoint -> Request GET: /projects, and some updates 2014-02-05 12:34:20 -04:00
Erik Amaru Ortiz
47f991034f More Bpmn/Workflow handling layer refactoring and improve unit tests 2014-02-05 11:39:15 -04:00