Commit Graph

29 Commits

Author SHA1 Message Date
Julio Cesar Laura Avendaño
fd49f88aa2 PMCORE-1123 2020-02-05 14:14:48 -04:00
Fabio Guachalla
d6ba05b655 PMC-44:Link Open Case doesn't work with IE
Correction CR
2019-01-17 15:55:43 -04:00
Paula Quispe
c9345b85ca HOR-4860 2018-10-24 14:51:54 -04:00
Roly Rudy Gutierrez Pinto
82abe2357e HOR-4924 2018-10-17 15:15:44 -04:00
Marco Antonio Nina Mena
0d533e19d9 HOR-4527 2018-05-08 10:16:52 -04:00
Paula Quispe
9a42249df8 HOR-4440 2018-04-17 15:44:35 -04:00
Roly Rudy Gutierrez Pinto
8ac8e50691 HOR-3851 2017-10-10 12:33:25 -04:00
Roly Rudy Gutierrez Pinto
216e2dca28 HOR-3851 2017-10-06 17:21:21 -04:00
hjonathan
1cd6309874 HOR-3670-HQ
update
2017-08-14 11:05:48 -04:00
Chloe Deguzman
60efcf7ac7 HOR-2689 Removed references to G::LoadClass, Bootstrap::LoadClass and various references to class loading methods and require_once 2017-08-03 17:19:55 -04:00
dheeyi william
8872b471d4 HOR-2677
[Zendesk - 4230] Any user can claim a case with a link generated by the PMFCaseLink function
2017-02-14 16:06:28 -04:00
Victor Saisa Lopez
6d9858d6d0 HOR-1738 "Change folder permissions in ProcessMaker" SOLVED
Issue:
    Change folder permissions in ProcessMaker
Cause:
    Nuevo requerimiento
Solution:
    Se cambio los permisos de los files and directories
2016-08-30 13:03:35 -04:00
Dheeyi William
8850ecec43 R-1055
Case counters are not working on Single Sign On Server

HOR-1055
Case counters are not working on Single Sign On Server

HOR-1055
Case counters are not working on Single Sign On Server
2016-07-07 17:28:44 -04:00
Victor Saisa Lopez
a928ef5974 HOR-1061 "Direct Case Link" SOLVED
Issue:
    Direct Case Link
Cause:
    Nuevo requerimiento
Solution:
    Se implemento el "Direct Case Link"
2016-06-07 16:52:49 -04:00
Victor Saisa Lopez
06963d81f2 HOR-433 "(WSSO Plugin) Cuando se ingresa al proceso, se..." SOLVED
Issue:
    (WSSO Plugin) Cuando se ingresa al proceso, se puede verificar que no se puede recuperar la data del mismo
Cause:
    Se esta usando el mismo VirtualHost para clientes WEB y REST
Solution:
    Se realizo la implementacion de la nueva directiva "server_hostname_requests_frontend" del "env.ini"; esto para
    el caso en que se requiera del "feature SSO", tomar nota de lo siguiente:
        - Habilitar el modulo "mod_headers" de apache (httpd.conf)
        - Tener configurado un VirtualHost normal para ProcessMaker (pmos.conf)
        - Para el "feature SSO" se debera crear un 2do VirtualHost con toda la configuracion necesaria para
          el mismo (pmos.conf), por lo que todos los usuarios que requieran este feature, deberan usar este para
          acceder por browser
        - Crear un 3er VirtualHost para las solicitudes del front-end (DESIGNER), en donde se agregara lo
          siguiente (pmos.conf):
              <IfModule mod_headers.c>
                  Header set Access-Control-Allow-Origin  "*"
                  Header set Access-Control-Allow-Headers "Content-Type,Depth,User-Agent,X-File-Size,X-Requested-With,If-Modified-Since,X-File-Name,Cache-Control,Authorization"
                  Header set Access-Control-Allow-Methods "OPTIONS,GET,POST,PUT,DELETE"
              </IfModule>
          De tal forma que quedara asi:
              <IfModule mod_headers.c>
                  Header set Access-Control-Allow-Origin  "*"
                  Header set Access-Control-Allow-Headers "Content-Type,Depth,User-Agent,X-File-Size,X-Requested-With,If-Modified-Since,X-File-Name,Cache-Control,Authorization"
                  Header set Access-Control-Allow-Methods "OPTIONS,GET,POST,PUT,DELETE"
              </IfModule>
              <IfModule mod_rewrite.c>
                  RewriteEngine On
                  RewriteCond %{REQUEST_FILENAME} !-f
                  RewriteRule ^.*/(.*)$ app.php [QSA,L,NC]
              </IfModule>
        - Agregar lo siguiente al archivo "/path/to/processmaker/shared/sites/your-workspace/env.ini"
              server_hostname_requests_frontend = "{your_server_hostname_requests_frontend}"
          Donde:
              - your_server_hostname_requests_frontend, es el nombre del servidor configurado para el
                front-end (3er VirtualHost), ejemplo:
                    server_hostname_requests_frontend = "192.168.40.72:3017"
        - Tambien se puede hacer la configuracion en el archivo "/path/to/processmaker/workflow/engine/config/env.ini",
          considerar que esto afectara a todos lo workspaces creados
Note:
    Todo el desarrollo se lo hizo en un server Windows-Server-2012-R2 con Apache-2.4
2016-03-17 08:45:23 -04:00
Brayan Pereyra
c7c2439a71 Adicion de contadores de bandeja (y tiempo de acces token) 2015-03-09 15:23:38 -04:00
Ralph Asendeteufrer
7eecd6ea31 CODE STYLE changes
files modified:   workflow/engine/methods/cases/casesDemo.php
                  workflow/engine/methods/cases/casesGenerateDocumentPage_Ajax.php
                  workflow/engine/methods/cases/casesHistoryDynaformPage_Ajax.php
                  workflow/engine/methods/cases/casesList_Ajax.php
                  workflow/engine/methods/cases/casesSaveDataView.php
                  workflow/engine/methods/cases/casesSchedulerLog_Ajax.php
                  workflow/engine/methods/cases/casesStartPage.php
                  workflow/engine/methods/cases/casesStartPage_Ajax.php
                  workflow/engine/methods/cases/casesToRevisePanelExtJs.php
                  workflow/engine/methods/cases/casesToReviseTreeContent.php
                  workflow/engine/methods/cases/cases_ShowDocument.php
                  workflow/engine/methods/cases/cases_ShowToReviseOutputDocument.php
                  workflow/engine/methods/cases/cases_StepToReviseOutputs.php
                  workflow/engine/methods/cases/data_casesSchedulerLog.php
                  workflow/engine/methods/cases/debug_triggers.php
                  workflow/engine/methods/cases/debug_vars.php
                  workflow/engine/methods/cases/index.php
                  workflow/engine/methods/cases/main.php
                  workflow/engine/methods/cases/main_init.php
                  workflow/engine/methods/cases/open.php
                  workflow/engine/methods/cases/proxyCasesList.php
                  workflow/engine/methods/cases/proxyProcessList.php
                  workflow/engine/methods/cases/proxyReassignCasesList.php
                  workflow/engine/methods/cases/proxyReassignUsersList.php
                  workflow/engine/methods/cases/proxySaveReassignCasesList.php
                  workflow/engine/methods/cases/summary.php
2012-10-22 12:15:52 -04:00
norahmollo
fd5ff3da77 CODE STYLE Formating workflow/engine/methods/cases
Change format files in workflow/engine/methods/cases
2012-10-18 16:05:43 +00:00
Brayan Osmar Pereyra Suxo
f5df808988 BUG 9926 I add the propety float right
I add the propety float right
2012-10-17 11:59:28 -04:00
Victor Saisa Lopez
d3ae88672f BUG 5488 "case inbox refresh time should be configurable..." SOLVED
- New feature
- Case inbox refresh time should be configurable
- Added new feature
* Available from version 2.0.45
2012-09-26 16:28:33 -04:00
Erik Amaru Ortiz
bd2aef2e66 BUG 8875 "ExtJS based Login & Main ProcessMaker interface" (1st commit) 2012-03-29 16:42:09 -04:00
Erik Amaru Ortiz
2ef37673a1 BUG 8669 "External Link when you open a case" SOLVED (3nd)
- with the new cases list based on extjs, that funcionality was changed
    - to solve this you can pass two parameters (id, i) on cases/main script via a url is

    sample:
      old:
        http://127.0.0.1/sysworkflow/en/classic/cases/cases_Open?APP_UID=9651244824f57c29799c
      new:
        http://127.0.0.1/sysworkflow/en/classic/cases/main?id=9651244824f57c29799c54508080623

    where, two parameters is used id and i,
      id = APP_UID
      i = DEL_INDEX
2012-03-08 10:35:15 -04:00
Erik Amaru Ortiz
364a511687 BUG 8669 "External Link when you open a case" SOLVED (2nd)
- with the new cases list based on extjs, that funcionality was changed
- to solve this you can pass two parameters (id, i) on cases/main script via a url is

sample:
  old:
    http://127.0.0.1/sysworkflow/en/classic/cases/cases_Open?APP_UID=9651244824f57c29799c545080806236&DEL_INDEX=2&action=todo
  new:
    http://127.0.0.1/sysworkflow/en/classic/cases/main?id=9651244824f57c29799c545080806236&i=2

where, two parameters is used id and i,
  id = APP_UID
  i = DEL_INDEX
2012-03-08 09:51:09 -04:00
Erik Amaru Ortiz
a652e2f683 BUG 8669 "External Link when you open a case" SOLVED
- with the new cases list based on extjs, that funcionality was changed
- to solve this you can pass two parameters (id, i) on cases/main script via a url is

sample:
  old:
    http://127.0.0.1/sysworkflow/en/classic/cases/cases_Open?APP_UID=9651244824f57c29799c545080806236&DEL_INDEX=2&action=todo
  new:
    http://127.0.0.1/sysworkflow/en/classic/cases/main?id=9651244824f57c29799c545080806236&i=2

  where, two parameters is used id and i,
  id = APP_UID
  i = DEL_INDEX
2012-03-07 18:12:01 -04:00
Erik Amaru Ortiz
8c91f1c057 BUG 0000 BUG 0000 User Inbox Simplified (third commit) 2012-01-31 18:45:30 -04:00
Erik Amaru Ortiz
5599ca8b96 BUG 0000 BUG 0000 User Inbox Simplified (second commit) 2012-01-26 09:33:01 -04:00
Erik Amaru Ortiz
be0c90af87 BUG 000 momentarily reverted to rc5 fro pmTables (fix) 2011-09-05 12:47:25 -04:00
Erik Amaru Ortiz
64d7606338 Debug Panel Improvements 2011-02-24 14:39:11 +00:00
Erik Amaru Ortiz
0525681d79 initial commit from rev. 632 2010-12-02 23:34:41 +00:00