Commit Graph

779 Commits

Author SHA1 Message Date
julceslauhub
7dac4e52f5 Merge pull request #545 from marcoAntonioNina/BUG-7941
BUG 7941 Add Folder Variable where the document Should be uploaded... SOLVED
2012-09-11 12:56:10 -07:00
Marco Antonio Nina
c74cc5d998 BUG 7941 Add Folder Variable where the document Should be uploaded... SOLVED
- Already existed the field "path".
- Was improved the funcion createFolder for that accept path complete.
2012-09-11 14:10:58 -04:00
Julio Cesar Laura
3671451838 BUG 9721 Reassign cases not working properly on Parallel tasks SOLVED
- The TAS_UID was not sent and used when get the users list
- TAS_UID is send and some other validations was added
2012-09-11 13:47:14 -04:00
Marco Antonio Nina
59742ba9a0 BUG Add Folder Variable where the document Should be uploaded... SOLVED
- Already existed the field "path".
- Was improved the funcion createFolder for that accept path complete.
2012-09-10 16:37:03 -04:00
Victor Saisa Lopez
aba7c671e3 BUG 6544 "Can't send email notification to next assigned..." SOLVED
- When "Assignment rules" is set to "Self service", do not send
  notifications
- Problem solved, the settings made in "Notifications" on a task, is
  used to send notifications
* Available from version 2.0.44
2012-09-10 16:04:31 -04:00
Victor Saisa Lopez
1f62ae3dd5 BUG 9705 "upgrade ProcessMaker, creates temporary files" SOLVED
- Files created/uploaded to "PATH_DATA/upgrade" not are deleted, this
  in ProcessMaker (core) and Enterprise (plugin)
- Improved the creation/loaded of the files, once completed, are eliminated
* Available from version 2.0.44
2012-09-07 13:56:34 -04:00
Julio Cesar Laura
34c429ed55 BUG 9741 Dentro de la clase class.pmAlfrescoFunctions existen varios var_dump sin comentar SOLVED
- Existian 3 funciones que tenian la instruccion var_dump
- Se elimino esta instruccion de las funciones
2012-09-07 11:59:55 -04:00
Victor Saisa Lopez
093f6b9b26 BUG 9724 "Cut the words in PDF" SOLVED
- The words are cut when they reach the limit of the bottom margin
- Problem solved, If in an tag <td> there is a large string, exceeds
  above the bottom margin, this row passes to the next page
* Available from version 2.0.44
2012-09-06 15:23:47 -04:00
Julio Cesar Laura
514eb6b037 BUG 5003 Request for horizontal scroll bars when process map is wider than browser window SOLVED
- The horizontal scrollbar was on the bottom then is not visible
- Before to load the process map get the maximun x position of the task to calculate the correct width
2012-09-05 17:17:40 -04:00
Julio Cesar Laura
7d5144c3c6 BUG 5120 Change text to clarify the purpose of user for the Case Scheduler SOLVED
- Fix some issues in the logic of the validation
- Change some validations
2012-09-05 13:01:19 -04:00
Victor Saisa Lopez
331cb04a2c BUG 9630 "cron.php script can have several instances running..." SOLVED
- cron.php script can have several instances running at the same time
- Problem solved, added validation in cron.php script to avoid run
  several times
- Variable time added to control execution of cron
* Available from version 2.0.44
2012-09-03 11:32:52 -04:00
Julio Cesar Laura
c5e130460e BUG 4596 Filter the user/group list once added to the permission list and separate the user and group dropdown SOLVED
- Changed the dropdown by a dropdown with optgroups
2012-08-30 16:02:50 -04:00
Victor Saisa Lopez
6e14ed1bb9 BUG 9005 "userInfo() returns the state or region for the..." SOLVED
- The ["city"] key is not correct in the function userInfo()
- Problem solved, has improved informarion returned by the
  userInfo() function
- They are more data being retormados by the userInfo() function,
  which are (example):
Array
(   [username] => "admin"
    [firstname] => "admin"
    [lastname] => "admin"
    [mail] => "admin@processmaker.com"
    [address] => ""
    [zipcode] => ""
    [country] => ""
    [state] => ""
    [location] => ""
    [phone] => ""
    [fax] => ""
    [cellular] => ""
    [birthday] => "2012-06-14"
    [position] => ""
    [replacedby] => "2806627024ff5c5e6de3343023039250"
    [duedate] => "2015-04-04"
    [calendar] => "426489683503e8e7541dd80068593828"
    [status] => "ACTIVE"
    [department] => "1624625814fdb4a23a20805048462289"
    [reportsto] => "4413935114fd9ea33a65206046642414"
    [userexperience] => "SWITCHABLE"
    [photo] => "PATH_TO_PHOTO/9552681404fd9e9ecd508b7074823254.gif"
)
* Available from version 2.0.44
2012-08-30 08:58:38 -04:00
Julio Cesar Laura
642839431b BUG 4094 More case information needed from getCaseInfo SOLVED
- Added the variable updateDate to the response
2012-08-29 17:08:06 -04:00
julceslauhub
c06b31ca6c Merge pull request #511 from julceslauhub/master
Validation added to import files with mail templates, the sizes are not compared correctly
2012-08-29 09:47:42 -07:00
Julio Cesar Laura
fa3f4f57c1 Validation added to import files with mail templates, the sizes are not compared correctly 2012-08-29 12:45:26 -04:00
Erik Amaru Ortiz
9b74ddca00 PluginRegistry class fix, Adding missing unregister method 'unregisterRestService()' on disablePlugin() 2012-08-28 12:08:55 -04:00
Erik Amaru Ortiz
6e5c72d00d Restful Feature,
- made some improvements to read & generate config file
- now the rest-gen bin can be generate rest api for a plugin from a <plugin-name>/config/rest-config.ini
conf file.
- plugins should have a directory services/rest containing all rest classes, like PM structure at CORE_PATH.
2012-08-27 10:48:32 -04:00
Erik Amaru Ortiz
ce21ee6454 PM Rest Feature: added plugins support & more improvements
from a plugin a rest class can be registered now:

on setup method add the following:
---
$this->registerRestService('Sample', [optional string: $path]);
--

and create the folder   PATH_PLUGIN . /your_plugin/classes/rest

next add a class with the flowing characteristics:

<?php

class Plugin_Services_Rest_Sample
{
    public function get()
    {
        return 'hello world';
    }
}

A class prefixed with Plugin_Services_Rest_
and add the corresponding methods for a Restler api
(http://luracast.com/products/restler/)

Finally on process maker will be exposed as:

via GET: http://127.0.0.1/rest/workflow/sample
2012-08-23 13:01:19 -04:00
Erik Amaru Ortiz
06be321690 Coding standard fix, & removing g::pr() on class 2012-08-22 12:00:36 -04:00
Julio Cesar Laura
2e2de1fce2 BUG 9648 Duplicate identifier in english po SOLVED
- The msgid don't validate correctly the empty string
- Add validation to prevent msgid values duplicated
2012-08-21 16:06:22 -04:00
julceslauhub
14705928a8 Merge pull request #491 from marcoAntonioNina/BUG-9553
BUG 9553 Event setup duration unit of measure is not displayed SOLVED
2012-08-21 08:44:06 -07:00
Marco Antonio Nina
efcd361449 BUG 9553 Event setup duration unit of measure is not displayed SOLVED
- According to the specifications.
- Was add the opcion Days/hours for creating events.
2012-08-21 10:18:36 -04:00
Marco Antonio Nina
3635ca0076 BUG 9553 Event setup duration unit of measure is not displayed SOLVED
- According to the specifications.
- Was add the opcion Days/hours for creating events.
2012-08-21 09:56:15 -04:00
Julio Cesar Laura
9c72fbddeb BUG 9609 Change log y View en Dynaforms no muestra valores ingresados en formularios ... SOLVED
- Al momento de recuperar los permisos de los dynaforms, se estaba filtrando 2 veces por el UID de la tarea, esto e sinnecesario porque la funcion que recupera los permisos ya valida por la tarea
- Habian otros issues menores (como el titulo del formulario en los tabs de preview)
- Se quito la dobre validacion por tarea y se corrigieron los issues menores
2012-08-21 09:53:15 -04:00
Victor Saisa Lopez
92e24c3e78 BUG 9597 "cron.php sending old emails need to be configured" SOLVED
- cron.php it forwards all the emails without importing if they are
  or not very old
- Problem solved, is taken into account the parameter "+d" as the
  starting date for the forwarding of mail, if not define this
  parameter will be forwarded emails from 7 days ago, forward
2012-08-20 12:33:18 -04:00
Marco Antonio Nina
24d1879db0 BUG 9555 Event log inside Process Designer SOLVED
- According to the specifications.
- Was removed the option completed y Pending of Processmap - Events
- Was add the Tab Logs en Admin.
- Was add the the list of events.
- Was changed the list Case Scheduler a logs.
2012-08-17 18:55:03 -04:00
Marco Antonio Nina
5dc4e6bb28 Merge remote branch 'upstream/master' into BUG-8038 2012-08-16 17:56:32 -04:00
Marco Antonio Nina
66a3f4a446 BUG 8038 Case Scheduler add a way to schedule tasks more often than... SOLVED
- According to the specifications.
- Was added the option "Every" that run the task each X hours.
2012-08-16 17:55:46 -04:00
Julio Cesar Laura
1a8994ef72 BUG 3889 Change the default option for "Next Step Link" under DynaForm "Properties" SOLVED
- Changed the default "nextstepsave" value for new dynaforms, now the default value is "prompt"
2012-08-16 12:27:59 -04:00
Julio Cesar Laura
3947d5418e BUG 7338 User profile Replaced by doesn't work when PM derivate a case
- In the class "derivation" doesn't exist the validation for the "Replaced By" field
- Added the business logic to set the replaced by user when a case is derivated
2012-08-16 11:44:17 -04:00
Julio Cesar Laura
cb086e06c3 BUG 9624 When you go to the UNASSIGN option, screen is blank SOLVED
- When format a date with null value thows a javascript error
- Add validation for null values
- Fix some issues with the format of names (current user, previous user)
2012-08-15 19:04:55 -04:00
Julio Cesar Laura
5be45bfc7a BUG 9554 Event setup has a different way to pick Variables ... SOLVED
- The Events->Action call other control "picker" because don't need the key cast description and the System variables
- Changed the appereance and behaviour of the control "picker" in the Event->Action panel
2012-08-14 10:58:44 -04:00
Julio Cesar Laura
2f726e6a17 Fix bug with the email sent in the events 2012-08-10 19:33:47 -04:00
Victor Saisa Lopez
95f7ca9c29 BUG 9526 "Processes cannot be deleted when the memcache is..." SOLVED
- When memcache is enabled not refresh correctly the list of
  process (to importing a process, to update the name of an process)
- Added method to delete key of the memcache to the import a
  process or update name of a process
2012-08-10 12:07:45 -04:00
julceslauhub
fef24f4524 Merge pull request #457 from victorsl/BUG-9495
BUG 9495 "La edicion del User modifica el Rol" SOLVED
2012-08-09 14:19:28 -07:00
Victor Saisa Lopez
95f8019f9d BUG 9495 "La edicion del User modifica el Rol" SOLVED
- Reverted the changes made in "Users.php"
- Solved wrong display of information "Country, State or Region, Location"
  in "View_Edit_Profile" this in IE, all this in "usersAjax.php"
2012-08-09 17:09:47 -04:00
julceslauhub
18d0b4339b Merge pull request #455 from marcoAntonioNina/BUG-9551
BUG 9551 Case description on task properties is no... SOLVED
2012-08-09 14:09:23 -07:00
Marco Antonio Nina
62c46feaea BUG 9551 Case description on task properties is no... SOLVED
- Not show the case description.
- Case description can be seen in the Summary.
2012-08-09 17:06:24 -04:00
Marco Antonio Nina
7e4e3eeb0c BUG 9542 Cuando se corre un caso el resend de Message... SOLVED
- No validated input Attachment.
- We verify the data type.
2012-08-09 15:46:00 -04:00
julceslauhub
e03a977c36 Merge pull request #449 from brayanpereyra/BUG-9510
Doesn't work in skin uxs
2012-08-08 14:45:45 -07:00
Brayan Osmar Pereyra Suxo
1edfcd68cd BUG 9510 Bug has code errors SOLVED
I add code correcty
2012-08-08 12:46:26 -04:00
Victor Saisa Lopez
80963a2fcf BUG 9495 "La edicion del User modifica el Rol" SOLVED
- When modifying a user's data "ADMIN>Users" or "View/Edit Profile"
  shows the incorrect data in the dropdowns
- Problem solved, display incorrect information in Dropdowns is because
  the response time of AJAX requests, this was solved by improving the
  order of AJAX requests
- Changed the label "Saving process" (ID_SAVING_PROCESS) for
  "Saving ..." (ID_SAVING)
- Solved wrong display of information "Country, State or Region, Location"
  in "View_Edit_Profile" this in IE
2012-08-08 12:26:59 -04:00
Brayan Osmar Pereyra Suxo
f973c6ac29 Merge remote branch 'upstream/master' into BUG-9510 2012-08-08 11:15:00 -04:00
Victor Saisa Lopez
4a4b352d9f BUG 9526 "Processes cannot be deleted when the memcache is..." SOLVED
- When memcache is enabled not refresh correctly the list of
  process (to create/delete an process)
- Added method to delete key of the memcache to the create/delete
  an process
2012-08-07 11:29:18 -04:00
Herbert Saal Gutierrez
a608e82697 Merge remote branch 'upstream/master' into BUG-9482 2012-08-03 19:02:59 -04:00
Brayan Osmar Pereyra Suxo
79ffba21c3 BUG 9510 Doesn't work format RTL SOLVED
- I add format fot RTL
2012-08-03 18:57:48 -04:00
Herbert Saal Gutierrez
b40a4d593e BUG-9482 Solr reindex error
Add catch exceptions to continue the index beside errors.
The found errors are logged.
Correct bug in unassigned users and groups.
Add functionality to reindex script:
- Add skip functionality to skip records to index
- Add definition of trunk size used to send docs to index server
- Add optimization utility to optimize index
2012-08-03 18:54:16 -04:00
julceslauhub
02e8ac5fdf Merge pull request #430 from victorsl/BUG-9509
BUG 9509 "On ProcessMaker 2.0.42 the WYSISWG editor doesn't..." SOLVED
2012-08-03 15:40:06 -07:00
Hector Cortez
4dfa80ce75 BUG 9443 In Centos 5.4 Is not possible to do the restore a backup file SOLVED
- In Centos 5.4 is not possible to restore a backup file of ProcessMaker. we are using the next command.
- Adjustment in the restore backup, in the erased the hidden files.
2012-08-03 18:01:01 -04:00