- 25 Jun, 2010 23 commits
-
-
Mayoro Diagne authored
git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@36607 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
Kazuhiko Shiozaki authored
git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@36606 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
Kazuhiko Shiozaki authored
the condition was wrong in r35806 (if delivery category is used in root applied rule, we don't want to check if we have delivery in the first level simulation movement to determine if the simulation is mutable or deletable). git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@36604 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
Kazuhiko Shiozaki authored
git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@36603 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
Mohamadou Mbengue authored
*Give anonymous access to a portal_type that does not require authentication git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@36602 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
Kazuhiko Shiozaki authored
git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@36601 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
Kazuhiko Shiozaki authored
git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@36600 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
Kazuhiko Shiozaki authored
git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@36599 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
Ivan Tyagov authored
git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@36598 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
Jérome Perrin authored
git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@36595 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
Fabien Morin authored
git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@36594 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
Fabien Morin authored
git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@36592 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
Fabien Morin authored
git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@36591 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
Fabien Morin authored
git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@36590 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
Ivan Tyagov authored
Use instead of 'All' -> 'All Documents' (which is what actually is meant). git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@36589 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
Nicolas Dumazet authored
Business Process is in the same direction than the Simulation Tree flow. First look up simulation tree ancestors to see if movements related to business path ancestors are indeed in this ancestor set. Most of the time this check is enough. Conveniently, it's also cheap. And if we're unlucky and have a Business Process going upwards, we go through descendants of the movement (which is costly) to check buildability. git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@36588 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
Nicolas Dumazet authored
ancestors or descendants of said movement. Instead of computing a closure of a set of nodes, and in a second step filter nodes to only match those "related" to self, it's better to compute directly a smaller closure, only consisting of [self] That's about 3-4 times faster. git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@36587 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
Nicolas Dumazet authored
BusinessPath.isCompleted calls are quite expensive Removing it with the previous improvements actually leads to before performance. git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@36586 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
Nicolas Dumazet authored
since the closure will stay the same among all business paths, transform for path in previous_path_list: for movement in path.getRelatedMovementValueList(): into: closure = current_path.getBusinessPathClosure() for movement in closure: This means that number of simulation tree walks is reduced by a factor of len(previous_path_list) git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@36585 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
Nicolas Dumazet authored
instead of walking all descendants of root applied rules, we now only walk the ancestors of related movements and their descendants. This means that a few branches get pruned, namely the branches stemming from ancestors of related movements that dont include such related movements as descendants. git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@36584 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
Nicolas Dumazet authored
This commit alone represents a performance drop by 300% (3 times slower), and is kept only to track changes. The next 5 commits will improve performance, leading to an overall 500% improvement (5 times faster than before this commit) git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@36583 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
Ivan Tyagov authored
When creating object always pass editable_mode so user is redirected explicitly to objects edit form. git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@36581 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
Ivan Tyagov authored
git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@36580 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
- 24 Jun, 2010 7 commits
-
-
Mohamadou Mbengue authored
git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@36574 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
Mayoro Diagne authored
*use portal_type as expression kache key git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@36572 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
Fabien Morin authored
git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@36571 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
Mayoro Diagne authored
* use lambda expression to filter objects without portal_type in z_catalog_egov_list filter git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@36570 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
Nicolas Dumazet authored
git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@36567 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
Nicolas Dumazet authored
git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@36566 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
Nicolas Dumazet authored
git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@36565 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
- 23 Jun, 2010 10 commits
-
-
Lucas Carvalho authored
The erp5_barcode is not required anymore, once it also fails using the erp5_core. Using proper API instead of portal_catalog. git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@36564 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
Lucas Carvalho authored
git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@36563 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
Mohamadou Mbengue authored
* add Egov_updateProcedureLocalRole script to update a procedure's local roles using a username and role_name_list git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@36562 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
Mohamadou Mbengue authored
* use ERP5Type_getSecurityCategoryFromAssignmentParentGroup to generate function_group* group of security git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@36561 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
Mohamadou Mbengue authored
* use role_name_list instead of role_name in procedure role information definition git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@36560 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
Lucas Carvalho authored
git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@36559 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
Mayoro Diagne authored
* modify ERP5Site_getQuickSearchableTypeList to allow processing anonymous and not anonymous procedure * after login redirect in desired default page (default view) git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@36558 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
Leonardo Rochael Almeida authored
Fix excessive reinstallation of buildout parts. Do not generate a bin/buildout script overwritting the one generated by boostrap.py git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@36557 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
Mayoro Diagne authored
* Allow manager to set own password for procedures git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@36556 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
Mayoro Diagne authored
git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@36555 20353a03-c40f-0410-a6d1-a30d3c3de9de
-