Commit Graph

5161 Commits

Author SHA1 Message Date
ralph
298e74ef59 Commenting log lines. 2012-11-23 11:50:28 -04:00
ralph
b4a937b1bc Adding AppFolder to autoloader, missed in Save Cases feature. 2012-11-23 11:49:08 -04:00
Victor Saisa Lopez
ee7ec4f2df BUG 9935 "DEL_INDEX PM Table Value" SOLVED
- Every time I send E-mails with PMFSendMessage() function, it doesn't
  keep a track in DEL_INDEX field from APP_MESSAGE table
- Added parameter $delIndex to the function
* Available from version 2.0.46
2012-11-23 10:46:59 -04:00
user
5115efdca3 adding the getVariableList action to the processes Ajax method in order to obtain the variables list in JSON format 2012-11-23 10:26:24 -04:00
norahmollo
b50e802391 WYSIWYG EDITOR Variable Picker Layout
WYSIWYG EDITOR Variable Picker Layout
2012-11-23 14:05:44 +00: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
user
ea9aa7a12c Merge branch 'master' of github.com:colosa/processmaker 2012-11-22 16:51:21 -04:00
ralph
d7962637a8 Commenting DB interface requiere files from processMap class, already in Autoloader. 2012-11-22 16:33:58 -04:00
ralph
4da103893b Commenting unnecesary require files. 2012-11-22 15:52:02 -04:00
user
7fd7265c7f Using new Register classes definition for Tranlation. 2012-11-22 10:02:49 -04:00
user
a95c63c242 Merge remote-tracking branch 'upstream/master' into speedy 2012-11-20 17:00:00 -04:00
user
f38c4d368c Removing requiere_once call to gain loading time. 2012-11-20 16:45:09 -04:00
Marco Antonio Nina
fe254a5d17 BUG 10089 Mejoras en el rendimiento del plugin para KnowledgeTree SOLVED
- CURLOPT_VERBOSE option of debug en true.
- was disable option debug writing in error_log.
- was add index for tables APP_DOCUMENT (indexAppDocument) and KT_DOCUMENT (indexKtDocument).
2012-11-20 16:42:26 -04:00
Marco Antonio Nina
03f97b1201 BUG 10089 Mejoras en el rendimiento del plugin para KnowledgeTree SOLVED
- CURLOPT_VERBOSE option of debug en true.
- was disable option debug writing in error_log.
- was add index for tables APP_DOCUMENT (indexAppDocument) and KT_DOCUMENT (indexKtDocument)
2012-11-20 16:37:15 -04:00
user
24cb5bce52 Merge remote-tracking branch 'upstream/master' into speedy 2012-11-20 14:04:40 -04:00
jennylee
7c8b33049a BUG-7802 In Advanced Search -> Information -> Dynaform, the Submit Button was enabled, like in edition mode.
I added a javascript code to disable the Submit Button on file 'workflow/engine/methods/cases/casesHistoryDynaformPage_Ajax.php'.
2012-11-20 10:58:11 -04:00
jennylee
7c1902a68e BUG-7802 In Advanced Search -> Information -> Dynaform, the Submit Button was enabled, like in edition mode.
I added a javascript code to disable the Submit Button on file 'workflow/engine/methods/cases/casesHistoryDynaformPage_Ajax.php'.
2012-11-20 09:56:34 -04:00
user
581217558f Changes and fixes to the dynaform editor wysiwyg feature 2012-11-20 09:07:40 -04:00
user
3ef0b0bbc5 Commenting include DB interface files require, to gain time loading. 2012-11-19 17:19:19 -04:00
julceslauhub
8251ac2626 Merge pull request #974 from brayanpereyra/BUG-8281
BUG 8281 I added code to save variable __ERROR__ SOLVED
2012-11-19 12:15:17 -08:00
Brayan Osmar Pereyra Suxo
f420618e82 BUG 8281 I changed the variable $errstr SOLVED
I changed the variable $errstr
2012-11-19 15:45:30 -04:00
Brayan Osmar Pereyra Suxo
83b9c448fa BUG 8281 I added code to save variable __ERROR__ SOLVED
I added code to save variable __ERROR__ and I verified that the variable __ERROR__ was refreshed for new cases
2012-11-19 15:16:29 -04:00
Victor Saisa Lopez
e10d68ba58 BUG 7752 "No webservice to add notes" SOLVED
- New feature
- Web Services for add case note
- Added functions "PMFAddCaseNote, WSAddCaseNote" in "class.pmFunctions.php"
- Added function "addCaseNote" in "class.wsBase.php"
- Added functionality for applications using Web Services
* Available from version 2.0.46
2012-11-19 14:35:10 -04:00
user
1448ac728d Merge branch 'master' into pm_wysiwyg 2012-11-19 14:04:22 -04:00
user
38aaf1822e Merge remote-tracking branch 'upstream/master' 2012-11-19 13:55:53 -04:00
Brayan Osmar Pereyra Suxo
3e12a7700e BUG 7000 I added code to save the variables SOLVED
I added code to save the variables in trigger's error
2012-11-19 12:13:26 -04:00
Brayan Osmar Pereyra Suxo
741dedc111 BUG 7000 I added code to save the variables SOLVED
I added code to save the variables in trigger's error
2012-11-19 11:29:17 -04:00
Brayan Osmar Pereyra Suxo
622f1654a4 BUG 7000 I added code to save the variables SOLVED
I added code to save the variables in trigger's error
2012-11-19 10:42:39 -04:00
user
6d52bdf65c Changing interface DB ORM classes include from class.case.php to bootstrap.php, to gain speed in Cases load time. 2012-11-16 17:13:48 -04:00
norahmollo
1bad36c61d WYSIWYG EDITOR output Documents
Wysiwyg Editor Output Documents
2012-11-16 20:13:09 +00:00
Julio Cesar Laura
3be8837e37 Improvement in the documents list 2012-11-16 16:12:56 -04:00
Victor Saisa Lopez
55ee745105 BUG 0000 "In HOME>Documents pager does not work" SOLVED
- In HOME>Documents pager does not work
- Fixed, Added total records variable, The pager now work correctly
* Available from version 2.0.46
2012-11-16 13:32:07 -04:00
user
8226caad6b Merge remote-tracking branch 'upstream/master' into speedy 2012-11-16 11:27:46 -04:00
julceslauhub
621c8ebce3 Merge pull request #961 from victorsl/BUG-8391
BUG 8391 "Request that an "Edit" button be added to the..." SOLVED
2012-11-16 06:43:49 -08:00
Hector Cortez
8c5b886435 t log
BUG 7995 Translation does not work for the import existing proces... SOLVED

- Translation does not work for the import existing proces dialogbox

- The  interface of the Imporación was changed to ExtJS.
- Improvement in the form of import, adjustment in the height of the modal window.
2012-11-16 10:18:09 -04:00
Victor Saisa Lopez
97cef89539 BUG 8391 "Request that an "Edit" button be added to the..." SOLVED
- New feature
- Request that an "Edit" button be added to the page to view the
  profile of a particular user
- Added edit button in Summary view
* Available from version 2.0.46
2012-11-16 10:05:20 -04:00
Julio Cesar Laura
59bf5dd6d7 Fix little bug when edit intermediate events 2012-11-15 16:46:44 -04:00
user
923e375e5a Merge remote-tracking branch 'upstream/master' into speedy 2012-11-15 15:11:31 -04:00
julceslauhub
0cc058df8f Merge pull request #958 from victorsl/BUG-8596
BUG 8596 "Web Services needs a userInfo() function" SOLVED
2012-11-15 10:31:39 -08:00
Julio Cesar Laura
0d47b3fcf8 BUG 8500 Checkboxes when creating/editing the structure of PM Tables should be centered SOLVED
- The checkboxes in the fields grid are not centered
- Added style to center the checkboxes in the fields grid
2012-11-15 14:16:50 -04:00
user
7e589fd4f8 Fixed some isses with the integration with TinyMCE and also Created the plugin pmSimpleUploader for TinyMCE 2012-11-15 13:07:06 -04:00
Victor Saisa Lopez
ebd1a4747c BUG 8596 "Web Services needs a userInfo() function" SOLVED
- New feature
- Web Services for getting information of user
- Added functions "PMFInformationUser, WSInformationUser" in "class.pmFunctions.php"
- Added function "informationUser" in "class.wsBase.php"
- Added functionality for applications using Web Services
* Available from version 2.0.46
2012-11-15 12:56:33 -04:00
user
22cc9125d1 Merge branch 'master' into pm_wysiwyg 2012-11-15 12:36:31 -04:00
user
d4ea48ac19 Merge remote-tracking branch 'upstream/master' 2012-11-15 12:32:01 -04:00
norahmollo
0558942662 WYSIWYG EDITOR for dynaforms
WYSIWYG EDITOR for dynaforms
2012-11-15 16:06:53 +00:00
Julio Cesar Laura
f1bce3e586 BUG 10065 Cuando carga una pagina de new case u otra funcionalidad sale un mesaje erroneo SOLVED
- In the callback function "failure" don't vaidate if a valid mesage exists
- Verify if a valid message before show the popup
2012-11-15 11:46:50 -04:00
Brayan Osmar Pereyra Suxo
bb92d18f64 BUG 9962 I added a validation to field SOLVED
I added a validation to text field
2012-11-15 10:10:04 -04:00
Brayan Osmar Pereyra Suxo
d4cde83168 Merge remote branch 'upstream/master' into BUG-9962 2012-11-15 09:28:34 -04:00
julceslauhub
24f57e1899 Merge pull request #954 from julceslauhub/master
BUG 9882: Case List, [Unassigned] SOLVED
2012-11-14 13:16:23 -08:00
Julio Cesar Laura
d236e4031c BUG 9882: Case List, [Unassigned] SOLVED
- When a case is unassigned the current user column is empty
- When a case is unassigned show the label [UNASSIGNED]
2012-11-14 17:15:13 -04:00