- 16 Mar, 2017 2 commits
-
-
Romain Courteaud authored
-
Romain Courteaud authored
On smartphone, display the textarea small and increase its size when focused This behaviour should not be activated on bigscreen, as it make it unusable (difficult to search text for example)
-
- 15 Mar, 2017 4 commits
-
-
Jérome Perrin authored
Eventhough diff is large, this commits just removes the default_params TALES. `hide_grouping` has no effect here.
-
Jérome Perrin authored
-
Jérome Perrin authored
When running General Ledger with some node categories that will select the same accounts more than once, the balance of these accounts were counted more than once. fixes #20170313-7F7FA8
-
Jérome Perrin authored
-
- 14 Mar, 2017 2 commits
-
-
Kazuhiko Shiozaki authored
-
Yusei Tahara authored
erp5_data_notebook: ZBigArray may not be available, add it to well_known_unserializable_type_tuple if possible.
-
- 13 Mar, 2017 2 commits
-
-
Kazuhiko Shiozaki authored
-
Kazuhiko Shiozaki authored
-
- 10 Mar, 2017 5 commits
-
-
Xiaowu Zhang authored
-
Xiaowu Zhang authored
-
Yusei Tahara authored
erp5_data_notebook: Don't save ZBigArray in data notebook. It may be too big that zope process may crash.
-
Jérome Perrin authored
from commit message > We have a constraint preventing closing accounting periods if there are still some accounting transactions that are in "current states" (ie. not delivered / cancelled), but this constraint should not be fooled by accounting lines in stock table that does not have an account as node, but just an acquired organisation. We already fixed another problem where such lines where "getting in the way" in c61cde5b But here, it's at inventory level, we want to get "all accounting movements from this section during the period"., excluding these "not really accounting" lines. I used the same approach as the one we applied when we discovered in !215 , there was code doing: `getInventoryList(node_category="account_type")` as a way to get only movements on accounts, relying on the facts that accounts have an account type category. This stopped working and we accepted it because this use case was not really valid. Instead, we did a first query getting all account and passing this as a `getInventory(node_uid=` I don't think we want to support `node_portal_type` in Inventory API, because the concept of *portal_types* does not really belong in Inventory API to me. To prevent creating many portal types (Tax, Discount etc) we concluded: * Resources (and Movements) are classified by their *use* category * Deliveries are classified by their *ledger* category * Nodes are classified by their *role* category So the "pure" approach is maybe to add a role category on all accounts and query inventory with `getMovementHistoryList(node_category="role/accounting_node")`. I'd say let's merge this for now, but if you have better idea or anything to add please go ahead, I wanted to create an open place for discussion and explaining why i did all this. /cc @tc @vpelletier @georgios.dagkakis @Nicolas /reviewed-on nexedi/erp5!236
-
Jérome Perrin authored
-
- 09 Mar, 2017 1 commit
-
-
Jérome Perrin authored
We have a constraint preventing closing accounting periods if there are still some accounting transactions that are in "current states" (ie. not delivered / cancelled), but this constraint should not be fooled by accounting lines in stock table that does not have an account as node, but just an acquired organisation.
-
- 08 Mar, 2017 4 commits
-
-
Vincent Pelletier authored
So that ERP5Site_getAuthenticatedMemberPersonValue can really be replaced by portal_membership.getAuthenticatedMember().getUserValue() (and for consistency on other ERP5User getters).
-
Vincent Pelletier authored
git grep -l ERP5Site_getAuthenticatedMemberPersonValue | xargs sed -i 's!\.ERP5Site_getAuthenticatedMemberPersonValue()!.getPortalObject().portal_membership.getAuthenticatedMember().getUserValue()!g' Plus s/portal.getPortalObject()/portal/g where modified by above regex. Plus manual edits of the few remaining matches. Special mention for DiscussionThreadModule_addReply, which forgot to actually call the script.
-
Vincent Pelletier authored
-
Vincent Pelletier authored
-
- 07 Mar, 2017 5 commits
-
-
Julien Muchembled authored
-
Vincent Pelletier authored
This is not a stand-alone test.
-
Vincent Pelletier authored
-
Vincent Pelletier authored
-
Vincent Pelletier authored
-
- 03 Mar, 2017 2 commits
-
-
Julien Muchembled authored
-
Aurel authored
-
- 02 Mar, 2017 1 commit
-
-
Yusei Tahara authored
erp5_data_notebook: If wrong setup method was added, then remove it otherwise jupyter becomes permanent unusable state.
-
- 01 Mar, 2017 2 commits
-
-
Yusei Tahara authored
erp5_data_notebook: Don't try to serialize well known unserializable objects and ignore any exceptions happened during serialization otherwise jupyter becomes permanent unusable state.
-
Yusei Tahara authored
erp5_data_notebook: Support _repr_html_. Object such as pandas' DataFrame is rendered as HTML in Jupyter.
-
- 24 Feb, 2017 2 commits
-
-
Yusei Tahara authored
This reverts commit fc67555b.
-
Yusei Tahara authored
-
- 20 Feb, 2017 3 commits
-
-
Arnaud Fontaine authored
zope.{interface,component} implement Interfaces through __implements__, __implemented__ (both implementedBy instances) and __provides__ (ClassProvides instance) attributes set on the class itself through implementedByFallback (zope.interface.declarations). However, this implementation creates circular references by referencing the class itself and thus erp5.* classes (and all its Accessors instances) were never GC even after a reset. When running testXHTML and installing the Unit Tests bt5s: * After 10 resets: 21MB leak (~ 7% of Zope process USS). * After 20 resets: 70MB leak (~ 18% of Zope process USS). * After 28 resets: 122MB leak (~ 26% of Zope process USS).
-
Yusei Tahara authored
-
Yusei Tahara authored
-
- 18 Feb, 2017 3 commits
-
-
Yusei Tahara authored
-
Yusei Tahara authored
-
Yusei Tahara authored
-
- 17 Feb, 2017 2 commits
-
-
Xiaowu Zhang authored
-
Vincent Pelletier authored
Fixes browsing ERP5 documents without activity tables available. Of course, as most modifications trigger activity creation, no modifications are possible. But this improves read-only access in degraded conditions. Also, by design a successful query must return one line, so do not test returned value before processing it.
-