Commit Graph

4668 Commits

Author SHA1 Message Date
Marco Antonio Nina
8efd7e5b78 BUG-15237 Task Information on Case Information Menu not working SOLVED
- For the task completed the index and task_uid was wrong.
- A validation was added looking those id's, in file cases_Open.php.
- A validation was added for case paused.
2014-06-18 11:51:39 -04:00
Marco Antonio Nina
a25c04443b BUG-15237 Task Information on Case Information Menu not working SOLVED
- For the task completed the index and task_uid was wrong.
- A validation was added looking those id's, in file cases_Open.php.
2014-06-18 11:13:46 -04:00
julceslauhub
0c2a63456d Merge pull request #2447 from marcoAntonioNina/BUG-15029
BUG-15029 Improvement called function Rename Folder broked the security
2014-06-12 14:19:33 -04:00
Marco Antonio Nina
4143147bd6 BUG-15029 Improvement called function Rename Folder broked the security 2014-06-12 13:46:14 -04:00
Marco Antonio Nina
de520b9820 BUG-15021 We can´t access to the Files that are inside a folder SOLVED
- single click.
- The click event was changed to a double click event in order to display the directory content, moreover, the "expander" was removed beacuse it is already in the
the tree on the left side.
2014-06-12 11:30:09 -04:00
jennylee
f354245a1d BUG-13874 Duplicate typing for dynaforms over IE 11
When a dynaform has some fields with validations, when typing some data was duplicated.

I added a validation to detect IE version, if this is 11 a meta tag is added in the HTML (<meta http-equiv="X-UA-Compatible" content="IE=8"/>). This tag let the browser use the IE8 compatibility and prevent the duplicated characters issue.

The validation for IE 11 is a preg_match php function searching a 'Trident/' string. This is diferent in IE10, where the User-agent has MSIE on it. On IE 11 MSIE was deleted and the only way to detect that the browser is IE11 is searching 'Trident/'.
2014-06-11 12:58:26 -04:00
julceslauhub
c00ad4b736 Merge pull request #2444 from luisfernandosl/BUG-15089
BUG 15089 "Pmtables: Problema al importar la data..." SOLVED
2014-06-11 09:52:47 -04:00
Marco Antonio Nina
83de02017b BUG-15172 The folders in the tree are not sorted alphabetically SOLVED
- The parameter sort was not set.
- the parameter setting in file appFolderAjax.php
2014-06-10 16:50:46 -04:00
Luis Fernando Saisa Lopez
e4a362ed69 BUG 15089 "Pmtables: Problema al importar la data..." SOLVED
- Pmtables: Problema al importar la data de tipo Autoincrementable
- Problema resuelto, el problema que se tenia era por los archivos que crea propel especificamente los archivos Peer,
  al momento de hacer la insercióe los campos se eliminaba la columna donde se tenia los Primary Key ocasionando que
  se cree nuevamente. Se valida la importacion de los pmTables cuando son de tipo Autoincrementable logrando a que
  cuando se importe un pmTable mantenga los íices que se tenia al momento de exportarlos.
2014-06-10 16:42:49 -04:00
Luis Fernando Saisa Lopez
bb47774a99 Merge branch 'master' of git://github.com/colosa/processmaker into BUG-15089 2014-06-10 16:42:20 -04:00
julceslauhub
535fcedd60 Merge pull request #2442 from julceslauhub/master
Improvements in listbox field and in the security issue RW-152-1
2014-06-10 16:42:03 -04:00
Luis Fernando Saisa Lopez
579b0f8fb5 Merge branch 'master' of git://github.com/colosa/processmaker into BUG-15089 2014-06-10 16:41:54 -04:00
Julio Cesar Laura
8999f7baa4 Improvements in listbox field and in the security issue RW-152-1 2014-06-10 16:40:33 -04:00
Luis Fernando Saisa Lopez
f0721fdb03 BUG 15012 "When creating a dynaform with the character..." SOLVED
- When creating a dynaform with the character "&", the field handlers not working.
- Problema resuelto, el problema que se teníera lo siguiente cuando se utiliza el "&" en el tílo de un dynaform,
  cuando se enviaba los datos via GET, el "&" lo interpretaba como un separador de variables y esto ocasionaba la
  division de los datos que se enviaba.	Se valida los datos enviados via GET codificáolos y al recibir estos datos
  se los decodifica.
2014-06-10 09:57:44 -04:00
Luis Fernando Saisa Lopez
357810fc45 BUG 15089 "Pmtables: Problema al importar la data..." SOLVED
- Pmtables: Problema al importar la data de tipo Autoincrementable
- Problema resuelto, el problema que se tenia era por los archivos que crea propel especificamente los archivos Peer,
  al momento de hacer la insercióe los campos se eliminaba la columna donde se tenia los Primary Key ocasionando que
  se cree nuevamente. Se valida la importacion de los pmTables cuando son de tipo Autoincrementable	logrando a que
  cuando se importe un pmTable mantenga los íices que se tenia al momento de exportarlos.
2014-06-06 14:10:53 -04:00
jennylee
98b138d5be BUG-15087 User Owner Field is Erased.
Problem:
Case 1: The same user 'A', creates and imports the process, using the option: "Update the current process...".

 Result: The user that created the process, user A in the example, is allways the User Owner of the process.

Case 2: User 'A' creates the process, and user 'B' imports the process, using the option: "Update the current process...".

 Result: The user that created the process, user A in the example, is allways the User Owner of the process.

Case 3: User 'A' creates the process, then this user 'A' is deleted, and user 'B' imports the process, using the option: "Update the current process...".

 Result: The User Owner is showed empty.

 Razon: When the user 'A' (the one that created the process) is deleted, the delete is only logical not physical in the db, and it is updated with the Status 'CLOSED' and the username of this user is changed to an empty string " ". So, when the process is updated the username is copy like it is in the db, and copy into the User Owner field, showing the empty string " ".

Solution:
A validation was added asking if the user exist, if this dosen't the User Owner is changed to the current user logged, and the same if the user exist but his status is CLOSED.
2014-06-05 16:15:49 -04:00
julceslauhub
bde3244f41 Merge pull request #2435 from marcoAntonioNina/BUG-15021
BUG-15021 We can´t access to the Files that are inside a folder SOLVED
2014-06-05 09:12:17 -04:00
Marco Antonio Nina
cb3625b3bd BUG-15021 We can´t access to the Files that are inside a folder SOLVED
- It don't have the functionality
- A validataion was added for directories
2014-06-04 15:37:54 -04:00
Roly Rudy Gutierrez Pinto
17b0928f39 BUG 15115 Section HOME / lists / button 'Summary', the window does not display field 'Finish Date' SOLVED 2014-06-04 13:54:08 -04:00
Luis Fernando Saisa Lopez
082e72d4e8 BUG 15012 "When creating a dynaform with the character..." SOLVED
- When creating a dynaform with the character "&", the field handlers not working.
- Problema resuelto, el problema que se teníera lo siguiente cuando se utiliza el "&" en el tílo de un dynaform,
  cuando se enviaba los datos via GET, el "&" lo interpretaba como un separador de variables y esto ocasionaba la
  division de los datos que se enviaba.	Se valida los datos enviados via GET codificáolos y al recibir estos datos
  se los decodifica
2014-06-03 14:30:20 -04:00
jennylee
342436d82f BUG-15068 PMFPauseCase dosen`t pause the case whrn using the trigger wizzard.
The validation for the not required parameter "unpauseDate" was wrong. When this parameter was empty the validation was taking this like this has a date, so it was trying to check the date format, and this was giving an error.

The validation was changed to only let strings of 10 or more characters go into the next validation where the format of the date is checked.
2014-05-29 16:49:33 -04:00
jennylee
7244347f47 BUG-15076 Edit StageMap Window dosen`t close.
The Edit StageMap wondow dosen`t close because the menu_edit variable was undefined. So, I added a validation to control this issue.
2014-05-28 16:57:23 -04:00
julceslauhub
78d4998183 Merge pull request #2426 from marcoAntonioNina/BUG-15031
BUG-15031 We can't delete folders using controls into grid SOLVED
2014-05-27 12:22:35 -04:00
jennylee
2f8187ea0e BUG-14034 Status in Dashboards -NEW FEATURE
I was editing the DAS_UID to, this was generating an error.
2014-05-27 10:37:27 -04:00
Marco Antonio Nina
9e63dae323 BUG-15031 We can't delete folders using controls into grid SOLVED
- Type is not defined 'file or directory'
- add type in file casesDocuments.js
2014-05-26 12:42:03 -04:00
Marco Antonio Nina
8fc840d829 BUG-15029 We can`t rename a folder in Documents SOLVED
- Error in position validate "function_exists".
- Change of position of validation in file appFolderAjax.php.
2014-05-26 09:25:58 -04:00
julceslauhub
6ae5fa6d36 Merge pull request #2424 from marcoAntonioNina/BUG-15020
BUG-15020 Pagination toolbar is not refreshing when when... SOLVED
2014-05-23 14:48:31 -04:00
Marco Antonio Nina
e3f367e672 Improvement delete search for date 2014-05-23 14:30:44 -04:00
Marco Antonio Nina
e6dcb88d80 Improvement js label 2014-05-23 14:13:19 -04:00
Marco Antonio Nina
bcd8aefe89 BUG-15022 "ShowDirs" button should change to "HideDirs" once we click SOLVED
- It don't have the functionality
- The label and funtionality was added.
2014-05-23 11:35:27 -04:00
Marco Antonio Nina
bc3a75c852 BUG-15020 Pagination toolbar is not refreshing when when... SOLVED
- The search was done locally.
- the criteria was added in order to make the search by filename and user.
2014-05-23 10:53:38 -04:00
julceslauhub
b5e9beefa2 Merge pull request #2417 from luisfernandosl/BUG-14056-3
BUG 14056 "Oracle Connection Parameters with TNS" SOLVED
2014-05-22 16:51:55 -04:00
julceslauhub
5dd3bea25d Merge pull request #2418 from marcoAntonioNina/BUG-14974
BUG-14974 It's possible to create a new process with blank space SOLVED
2014-05-22 14:30:57 -04:00
Marco Antonio Nina
feba98a658 BUG-14974 It's possible to create a new process with blank space SOLVED
- The blank spaces were accepted.
- A validation was added removing spaces in blank of the PRO_TITLE field in the main.js file, also an error message was added.
2014-05-22 12:31:17 -04:00
Luis Fernando Saisa Lopez
c935c261b0 BUG 14056 "Oracle Connection Parameters with TNS" SOLVED
- Oracle Connection Parameters with TNS.
- Problema resuelto, en DATABASE CONNECTIONS al hacer click en New, en el dynaform "Add new Database Source" se agrega
  dos campos un dropdown "Select Connection Type" con dos opciones "NORMAL y TNS" y el campo de tipo "TNS", estos nuevos
  campos se muestran cuando se selecciona la opcion en engine "oracle" si es en otro caso se ocultaran. Tambien se adiciona
  dos nuevos campos en la tabla "DB_SOURCE" que son: "DBS_CONNECTION_TYPE" y "DBS_TNS".
  Cuando se selecciona "oracle" y tipo de conexion "TNS", al llenar los datos al dynaform y hacer click en el boton
  "test connection" realizara la prueba con exito o falla.
  Cuando se selecciona "oracle" y tipo de conexion "NORMAL", al llenar los datos al dynaform y hacer click en el boton
  "test connection" realizara la conexion tal como se hacia anteriomente.
2014-05-22 10:09:33 -04:00
Marco Antonio Nina
3b594a573d BUG-14053 El ordenamiento de archivos no se realiza... SOLVED
- El ordenamiento de las columnas no tenian una busqueda asignada.
- Se habilitaron solo dos columnas para el ordenamiento "Name, Modified".
- Se cambio el criteria para que acepte esos parametros en el archivo AppFolder.php
2014-05-21 16:11:32 -04:00
Luis Fernando Saisa Lopez
17166fc7a0 Merge branch 'master' of git://github.com/colosa/processmaker into BUG-14056-3 2014-05-20 14:38:43 -04:00
julceslauhub
830153a7cb Merge pull request #2414 from gproly/BUG-14775
BUG-14775 When former users are never admitted to processmaker an except...
2014-05-20 14:02:26 -03:00
Roly Rudy Gutierrez Pinto
18b6f8b1e7 BUG-14775 When former users are never admitted to processmaker an exception is thrown in USERS_PROPERTIES table was not created because the record is removed dependency exists USR_LOGGED_NEXT_TIME to edit the field when there is no change in the field USR_PASSWORD. IMPROVEMENT. 2014-05-20 12:56:46 -04:00
julceslauhub
128acb8846 Merge pull request #2413 from marcoAntonioNina/BUG-15001
BUG-15001 Dynaform - Fields Handler - Default Value of Zero... SOLVED
2014-05-20 13:41:33 -03:00
Marco Antonio Nina
47b83748f7 BUG-15001 Dynaform - Fields Handler - Default Value of Zero... SOLVED
- Validation function empty  takes '0 ' as empty
- add validation in file fields_Save.php
2014-05-20 12:19:09 -04:00
jennylee
d933f7a294 BUG-14034 Status in Dashboards -NEW FEATURE
In ADMIN > Settings > Dashboard now is available the button Status, this button let Activate or Deactivate the Dashlet, showing the changed status in the Status Field in the grid.

When a dashlet is Inactive this dashlet is not showed in the DASHBOARDS tab. A validation was added to only let the current user see the active dashlets assigned to himself.
2014-05-20 12:00:01 -04:00
jennylee
0e1db46a4e BUG-14034 Status in Dashboards -NEW FEATURE
In ADMIN > Settings > Dashboard now is available the button Status, this button let Activate or Deactivate the Dashlet, showing the changed status in the Status Field in the grid.

When a dashlet is Inactive this dashlet is not showed in the DASHBOARDS tab. A validation was added to only let the current user see the active dashlets assigned to himself.
2014-05-20 11:54:21 -04:00
jennylee
a1f76e8df9 BUG-14034 Status in Dashboards -NEW FEATURE
In ADMIN > Settings > Dashboard now is available the button Status, this button let Activate or Deactivate the Dashlet, showing the changed status in the Status Field in the grid.

When a dashlet is Inactive this dashlet is not showed in the DASHBOARDS tab. A validation was added to only let the current user see the active dashlets assigned to himself.
2014-05-20 10:59:27 -04:00
jennylee
14d7704e6f Merge remote branch 'upstream/master' 2014-05-20 10:59:17 -04:00
julceslauhub
665c6009b5 Merge pull request #2409 from marcoAntonioNina/BUG-14367
BUG-14367 First login screen after installation... IMPROVEMENT
2014-05-20 10:52:33 -03:00
Luis Fernando Saisa Lopez
20efa35d57 Merge branch 'master' of git://github.com/colosa/processmaker into BUG-14056-3 2014-05-20 09:50:29 -04:00
Marco Antonio Nina
94183b1148 BUG-14367 First login screen after installation... IMPROVEMENT
- Delete link library.
2014-05-20 09:43:40 -04:00
julceslauhub
560e045da0 Merge pull request #2401 from gproly/BUG-14775
BUG-14775 Password policies PPP_MINIMUM_LENGTH and PPP_MAXIMUM_LENGTH ar...
2014-05-20 10:21:16 -03:00
Marco Antonio Nina
4cc5707b4a BUG-14367 First login screen after installation... IMPROVEMENT
- Change de text in admin.
2014-05-20 08:57:46 -04:00