Mohammed Shekha(Open ERP) has proposed merging 
lp:~openerp-dev/openobject-addons/6.1-opw-574787-msh into 
lp:openobject-addons/6.1.

Requested reviews:
  OpenERP Core Team (openerp)

For more details, see:
https://code.launchpad.net/~openerp-dev/openobject-addons/6.1-opw-574787-msh/+merge/107607

Hello,

Note :- traceback only comes in web.

Fixed the issue of graph view, in web when you open Accounting -> Reporting -> 
Statistic Report -> Entries Analysis, now go to graph view and clear all the 
filters and just select the group by "Int.Type" field.

This will raise an error, the issue is that we haven't added 'liquidity' in 
type field of account_entries_report object, and when init method of 
account_entries_report is called it will get record from account_account as it 
is in left join, and record may have 'liquidity' as a type field value, but 
here liquidity is not as a item in selection field in account_entries_report.

So just added the item liquidity.

Thanks.
-- 
https://code.launchpad.net/~openerp-dev/openobject-addons/6.1-opw-574787-msh/+merge/107607
Your team OpenERP R&D Team is subscribed to branch 
lp:~openerp-dev/openobject-addons/6.1-opw-574787-msh.
=== modified file 'account/report/account_entries_report.py'
--- account/report/account_entries_report.py	2011-12-19 16:54:40 +0000
+++ account/report/account_entries_report.py	2012-05-28 11:48:18 +0000
@@ -61,6 +61,7 @@
         'type': fields.selection([
             ('receivable', 'Receivable'),
             ('payable', 'Payable'),
+            ('liquidity','Liquidity'),
             ('cash', 'Cash'),
             ('view', 'View'),
             ('consolidation', 'Consolidation'),

_______________________________________________
Mailing list: https://launchpad.net/~openerp-dev-gtk
Post to     : [email protected]
Unsubscribe : https://launchpad.net/~openerp-dev-gtk
More help   : https://help.launchpad.net/ListHelp

Reply via email to