Commit Graph

63 Commits

Author SHA1 Message Date
Julio Cesar Laura Avendaño
ef18c784b5 PMCORE-4256 A field that uses SQL in a dynaform does not allow routing the case 2023-07-14 14:27:54 +00:00
Julio Cesar Laura Avendaño
573f239377 PMCORE-4255 Dynaform, trigger, DB Connection not listed in classic process 2023-06-27 16:57:01 +00:00
Julio Cesar Laura Avendaño
f1418479b5 PMCORE-1801 2020-08-19 13:51:29 +00:00
Andrea Adamczyk
2ee8b4a569 PMC-1386 2019-11-22 15:06:12 -04:00
Roly Rudy Gutierrez Pinto
06fb08671f PMC-693-A 2019-04-18 14:48:18 -04:00
David Callizaya
3b53ef4d9c HOR-3670
Complete the change of name for XmlFormField classes.
2017-08-14 15:53:48 -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
Paula V. Quispe
4531071f8c I correted ID 2015-04-08 10:53:46 -04:00
Paula V. Quispe
7ce9ffd6a2 I corrected the label by yesno field 2015-04-08 09:04:19 -04:00
Paula V. Quispe
c93fd61bc3 I solved the issue PM-1942 added label by yesno field 2015-04-07 17:16:45 -04:00
Julio Cesar Laura
eaece666ff Improvement in data validation for input files in grids 2014-09-12 14:46:04 -04:00
Luis Fernando Saisa Lopez
5c695a0823 BUG 13913 "Icons to manage dynaform..." SOLVED
- Icons to manage dynaform fields are set below column Label
- Problema resuelto, cuando se crea un campo con label vacio, al hacer click en Fields Handler los iconos edit field y
  remove field se mostraran correctamente.
2014-08-14 10:55:43 -04:00
Luis Fernando Saisa Lopez
9fac74a1b8 BUG 15581 " Issue with labels in Radio Group..." SOLVED
- Issue with labels in Radio Group, check group and suggest
- Se realizo el merge de cambios del codigo adjunto del presente bug "class.form.php" al archivo "class.form.php" del
  branch master.
2014-08-14 10:28:17 -04:00
Julio Cesar Laura
045dfb52c8 Add little validation on class form 2014-07-18 13:25:38 -04:00
jennylee
2ff5c02eb3 BUG_14198 PMPOWERUP Input Document viewer no funciona con grillas.
La herramienta 'Input Documet Viewer' del plugin pmPowerUp no funcionaba con grillas ya q no se estaba tomando en cuenta que el campo file dentro de una grilla tenga un inputDocument asociado y se le asignaba un -1 por defecto en ves del UID del iput document asociado.

Se agrego en la variable POST los datos del inputDoc asociado a cada file field en la grilla.
2014-07-11 15:55:55 -04:00
Hector Cortez
33970cd4f3 BUG 12389 fechas en grids v.2.5.0.1 SOLVED
- Las fechas en grids cuando estan delante de un dropdown, text, link cambiaban su mascara de yyyy-mm-dd a dd-mm-yyyy.
- Se realizaron ajustes en los arrays que realizaban el filtrado de los items de un grid al momento de asignarle un label y un formato.
2013-07-30 15:56:45 -04:00
Julio Cesar Laura
e905a73b91 BUG 11865 Problema con los campos fecha SOLVED
- The dates was stored with mask
- Before save dates unmask the value
2013-05-14 16:10:01 -04:00
Luis Fernando Saisa Lopez
7338b57e2e BUG 11421 "CheckGroups option ZERO always selected" SOLVED
- CheckGroups option ZERO always selected
- Problem solved, In Dynaform to the create CheckGroups is validated the value when is zero,
  additionally, is validates to Listbox and CheckGroup when are empty and zero.
* Available from version ProcessMaker-2.0.47 (2.5.1)
2013-05-07 18:58:51 +00:00
Luis Fernando Saisa Lopez
5282e9515e BUG 11421 "CheckGroups option ZERO always selected" SOLVED
- CheckGroups option ZERO always selected
- Problem solved, In Dynaform to the create CheckGroups is validated the value when is zero,
  additionally, is validates to Listbox and CheckGroup when are empty and zero.
* Available from version ProcessMaker-2.0.47 (2.5.1)
2013-05-06 14:58:41 +00:00
Julio Cesar Laura
650c525f5a BUG 10235 Checkgroup do not update. SOLVED 2013-04-19 13:39:12 -04:00
Julio Cesar Laura
320a761a42 Add some validations to avoid notices detected on server 11.130 2013-02-19 12:43:24 -04:00
Julio Cesar Laura
f7253bd3d6 BUG 9773 Suggest Field Feature in a Grid IMPROVEMENT 2012-12-19 13:10:07 -04:00
Victor Saisa Lopez
1851b43d5b BUG 6828 "Request that the address and label of link fields in..." SOLVED
- New feature
- Request that the address and label of link fields in DynaForms can be
  set and saved using case variables
- Populate links in a grid via trigger
- Added this new funcionality
- Take into account the following (examples):
    > Triggers
        * Populate a link field
            @@MyLink = "http://www.php.net";
            @@MyLink_label = "Read about PHP";

        * Populate links in a grid
            @=MYGRID = array();
            $i = 1;

            $rs = $stmt->executeQuery("SELECT USR_USERNAME FROM USERS", ResultSet::FETCHMODE_ASSOC);

            while ($rs->next()) {
                $row = $rs->getRow();

                @=MYGRID[$i] = array(
                    "MyField" => $row["USR_USERNAME"],
                    "MyLink" => "http://www.php.net",
                    "MyLink_label" => "Read about PHP, $i"
                );

                $i = $i + 1;
            }
    > JavaScript, populate a link field:
        getField("MyLink").href = "http://www.php.net";
        getField("MyLink").innerHTML = "Read about PHP";
* Available from version 2.0.46
2012-11-22 17:50:52 -04:00
Ralph Asendeteufrer
5f5388e7b4 CODE STYLE
files modified:   class.form.php
                  class.functionTest.php
                  class.rbac.php
                  class.restClient.php
                  class.ymlTestCases.php
2012-10-18 09:27:23 -04:00
Victor Saisa Lopez
29c6fc996d BUG 8333 "File field for each grid line" SOLVED
- New feature
- File field for each grid line
- Added "file" element in grids
- The QA team should test with:
    * Grids in mode edit/view
    * INPUT property (http://wiki.processmaker.com/index.php/2.0/Files)
    * KnowledgeTree plugin
    * And other cases
* Available from version 2.0.45
2012-10-04 17:54:44 -04:00
Brayan Osmar Pereyra Suxo
ac920502cf BUG 9508 I changed the variable name
I changed thevariable name adjustgridswith for adjustgridswidth
2012-10-04 15:33:11 -04:00
Brayan Osmar Pereyra Suxo
ae11d5c106 BUG 9508 I add the option the show scroll
I add propety in form to the grids with scroll
2012-10-03 11:57:16 -04:00
Julio Cesar Laura
031b1b2fcc BUG 9795 Error usando funcion in_array cuando el segundo parametro no es un array ( Error collected by New Relic ) SOLVED
- Missing validation before to use in_array function
- Add validation to check if the second variable is an array
2012-09-21 13:44:20 -04:00
Brayan Osmar Pereyra Suxo
8d436eb047 BUG 9327 Don't validate required field in grid SOLVED
- The object leminud and input disappeared the moment of submit
- I add new instance the object leimund and input
2012-06-20 11:30:16 -04:00
Alvaro Campos
187eb2e9a1 BUG 8334 was added to the grid the functionality of checkbox 2012-02-14 19:04:46 -04:00
Carlos Pacha
e64e994784 BUG 7945 Recuperación de la etiqueta Dropdown vía _label no funciona en Grid
This issue was fixed, the query statement returned an associtive array that was the problem.
2011-11-17 11:19:08 -04:00
Erik Amaru Ortiz
c638c88f53 BUG 7902 "Sudden database error" SOLVED
- it was a bug for gropdown in grid with zero option, it is validated and solved now
2011-10-25 18:54:18 -04:00
Erik Amaru Ortiz
be0c90af87 BUG 000 momentarily reverted to rc5 fro pmTables (fix) 2011-09-05 12:47:25 -04:00
Hector Cortez
fb82e2f3a2 BUG 7515 Adjustment selection in grid with Data connection. 2011-08-25 16:59:42 -04:00
Erik Amaru Ortiz
be548a3e31 BUG 7422 Checkbox value was not saved SOLVED (review fix issues) 2011-08-19 12:23:11 -04:00
Erik Amaru Ortiz
e1ad964491 BUG 7422 Checkbox value was not saved SOLVED (review fix issues) 2011-08-19 12:22:23 -04:00
Douglas Medrano Chura
cf076703c6 BUG 7422 Solved value not being saved in field checkout
The problem was solved validating the send of the variable $_POST
2011-08-10 18:04:36 -04:00
Erik Amaru Ortiz
36ed1b81c6 BUG 6867 problem solved
- there is not more validations for fields that shouldn't  have reuiqred validation
2011-07-26 10:42:27 -04:00
Erik Amaru Ortiz
0e74f6e3a8 BUG 0000 PM tables ver 2. (performance improvements) 2011-07-13 19:39:30 -04:00
Hugo Loza
3aa2785ef1 BUG 7140 -> Fix complete save label with dbarray connection
The fix was completed. Chckgroup, listbox, dropdowns that use dbconnection now save the labels correctly by executing the query as usual
2011-07-01 10:17:44 -04:00
Erik Amaru Ortiz
59e4d8679c BUG 7165 "Notice en campo suggest" solved
- a missing declaration was the problem, bu is fixed now
2011-06-30 15:06:20 -04:00
Hector Cortez
c39eb93a60 BUG 7093 Suggest adjustment for queries execution. 2011-06-17 09:45:13 -04:00
Erik Amaru Ortiz
b8263e0c93 BUG 7045 "notice running case, this is not showing but the notice is.." SOLVED 2011-06-08 10:54:41 -04:00
Douglas Medrano Chura
0ae5f9b139 BUG 6900 Solved the validation of field email in dynaform
The problem was solved modificating the validation of field email
2011-06-07 18:23:32 -04:00
Erik Amaru Ortiz
ab6abc2f0b BUG 5934 "save labels for checkgroups.... solving problems" 2011-06-02 19:52:57 -04:00
Hugo Loza
295523f38d BUG 6987 Error en PM al guardar formulario [RE-FIXED]
When dropdown is with savelabel active then on form save the sql(s) need to be executed. By default any sqlconnection is defined as an empty string and Pm uses the default connection workflow.. the issue was that in savelabel stage this default option was not defined then tried to connect to an empty connection. Now for Listbox, checkgroup and grid dropdown
2011-06-02 15:04:07 -04:00
Hugo Loza
7454de6ee1 BUG 6987 Error en PM al guardar formulario [FIXED]
When dropdown is with savelabel active then on form save the sql(s) need to be executed. By default any sqlconnection is defined as an empty string and Pm uses the default connection workflow.. the issue was that in savelabel stage this default option was not defined then tried to connect to an empty connection.
2011-06-01 18:37:18 -04:00
Erik Amaru Ortiz
38fb71335c BUG 5934 "Save label for radiogroups..." SOLVED (removing debug var)
- is saving the radiogroup label
- by convention we decided save by default the label for all array field types like dropdown, checkgroup, listboxes and radiogroup, so the property for dropdown "save label" was removed because always is saving it!
2011-05-31 18:58:50 -04:00
Erik Amaru Ortiz
a6baa0147a BUG 5934 "Save label for radiogroups..." SOLVED
- is saving the radiogroup label
- by convention we decided save by default the label for all array field types like dropdown, checkgroup, listboxes and radiogroup, so the property for dropdown "save label" was removed because always is saving it!
2011-05-31 18:56:50 -04:00
Erik Amaru Ortiz
2017de6a76 BUG 6901 "No se valida el como campos requeridos..." (fixed-removing debug vars)
There were two fields more to fix for this validation: listbox & checkgroups, but now are already fixed
2011-05-19 17:28:31 -04:00