Commit ca3acafa authored by Jean-Paul Smets's avatar Jean-Paul Smets

Added comments related to the problem of parallel generation of reports for the same user.

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@13115 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 9a7c1a54
......@@ -70,24 +70,28 @@ class ERP5Report(ERP5Form):
"""
An ERP5Form which allows to aggregate a list of
forms each of which is rendered on an object with parameters.
Application: create an accounting book from ERP5 objects
- Display the total of each account (report)
- List all accounts
- Display the transactions of each account (one form with listbox)
- List all clients
- Display the transactions of each client (one form with listbox)
- List all vendors
- Display the transactions of each vendor (one form with listbox)
TODO:
- Make sure that multiple reports can be run in parallel without conflicts
- Make sure that multiple reports can be run in parallel without losing
consistency (ie. concurrent update of the selection)
"""
meta_type = "ERP5 Report"
icon = "www/Form.png"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment