julceslauhub
c6f965c9a1
Merge pull request #1012 from ralpheav/master
...
adding Bootstrap::json_encode to translations
2012-11-29 08:32:56 -08:00
ralph
5c89c9d499
Adding new Bootstrap::json_encode()
2012-11-29 11:21:52 -04:00
julceslauhub
a6f0e664f1
Merge pull request #1010 from julceslauhub/master
...
Changed references to deprecated file "cases_List"
2012-11-28 11:59:25 -08:00
Julio Cesar Laura
4cdbd2668a
Changed references to deprecated file "cases_List"
2012-11-28 15:57:55 -04:00
julceslauhub
5cd3e24e4b
Merge pull request #1009 from marcoAntonioNina/BUG-10110
...
BUG 10110 Añadir modulo de logs para envio de correos electronicos SOLVED
2012-11-28 10:56:24 -08:00
Marco Antonio Nina
29d4cb3fa0
BUG 10110 Añr modulo de logs para envio de correos electronicos SOLVED
...
- According to the specifications.
- Was add the the list of emails.
enter the commit message for your changes. Lines starting
2012-11-28 12:54:11 -04:00
Victor Saisa Lopez
23d03a7d2e
BUG 8283 "PMFAddInputDocument function request" SOLVED
...
- New feature
- PM Function for add a input document
- Added function "PMFAddInputDocument" in "class.pmFunctions.php"
- The QA team should test with:
* Dynaforms
* KnowledgeTree plugin
* Available from version 2.0.46
2012-11-27 12:56:10 -04:00
julceslauhub
295ca5216c
Merge pull request #996 from Jennydmz/BUG-6855
...
BUG-6855 Error message in 'Database Conections' clicking in Edit or Delete title.
2012-11-27 07:07:27 -08:00
jennylee
11c7fe3b42
BUG-6855 Error message in 'Database Conections' clicking in Edit or Delete title.
...
I put an 'IF' validation in file 'workflow/engine/classes/class.propelTable.php.php', to prevent that this columns were sortable.
2012-11-27 10:21:32 -04:00
julceslauhub
1804224a12
Merge pull request #994 from ralpheav/master
...
Adding SteepSuperVisorPeer interface class
2012-11-27 05:11:56 -08:00
julceslauhub
17453ebc78
Merge pull request #993 from ralpheav/master
...
Adding fix for Save button at Dynaform Fields properties
2012-11-26 13:59:57 -08:00
ralph
8eaacc678a
Adding SteepSuperVisorPeer interface class
2012-11-26 17:51:55 -04:00
ralph
3d12c70be4
Adding js library to set classes instance abbr and adding maborak.loader.js
2012-11-26 17:42:27 -04:00
julceslauhub
4a5b6093f4
Merge pull request #985 from victorsl/BUG-6828
...
BUG 6828 "Request that the address and label of link fields in..." SOLVED
2012-11-25 19:10:27 -08:00
ferOnti
d9585d6aa0
Merge pull request #989 from ralpheav/master
...
Adding classes to the Autoloader
2012-11-23 09:16:13 -08:00
ralph
1e15c5108d
Adding ContentPeer & TriggerPeer, only if they are needed.
2012-11-23 13:05:01 -04:00
ferOnti
47526150e3
Merge pull request #986 from victorsl/BUG-9935
...
BUG 9935 "DEL_INDEX PM Table Value" SOLVED
seems to be ok
2012-11-23 08:20:50 -08: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
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
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
f38c4d368c
Removing requiere_once call to gain loading time.
2012-11-20 16:45:09 -04:00
user
24cb5bce52
Merge remote-tracking branch 'upstream/master' into speedy
2012-11-20 14:04:40 -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
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
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
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
user
923e375e5a
Merge remote-tracking branch 'upstream/master' into speedy
2012-11-15 15:11:31 -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
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
Brayan Osmar Pereyra Suxo
1a7cc3a34e
BUG 9962 I added a validation to field SOLVED
...
I added a validation to text field
2012-11-14 17:05:42 -04:00
Marco Antonio Nina
3cc3043dc1
BUG 9926 Add a new RTL Skin to support Arabic Language SOLVED
...
- No was regenerate table translation from translation-repair.
- was add call.
2012-11-14 16:04:36 -04:00
Julio Cesar Laura
51ddae1202
BUG 10027 Request for Dynaform Editing, a way to edit various dynaforms simply SOLVED
...
- Added a dropdown with the dynaforms list to change the dynaform editing inside the dynaforms editor
2012-11-14 13:42:31 -04:00
Julio Cesar Laura
0509c9e38d
BUG 10059 System->Default Skin : Dropdown empty SOLVED
...
- Missing validation when glob function return a bollean value
- Add missing validation
2012-11-13 11:00:24 -04:00
Fernando Ontiveros
b5c11b4198
SPEEDY first version of boostrap.php, with many changes
2012-11-12 14:44:44 -04:00
Julio Cesar Laura
9c6a4f1839
BUG 10050 Integridad Referencial SOLVED
...
- Added instruction suggested
2012-11-12 14:28:25 -04:00
Julio Cesar Laura
afc2a589fb
Add new properties to function PMFGenerateOutputDocument
2012-11-12 10:47:22 -04:00
julceslauhub
f5e903028e
Merge pull request #930 from hector-cortez/BUG-9898
...
BUG 9898 PDF limit 6 pages SOLVED
2012-11-12 06:11:55 -08:00