← Back to team overview

c2c-oerpscenario team mailing list archive

[Bug 645072] Re: [trunk] account - debit/credit no filter possible

 

delayed for later versions, we can't change this now.

** Changed in: openobject-addons
       Status: Confirmed => Won't Fix

-- 
[trunk] account - debit/credit no filter possible
https://bugs.launchpad.net/bugs/645072
You received this bug notification because you are a member of C2C
OERPScenario, which is subscribed to the OpenERP Project Group.

Status in OpenObject Addons Modules: Won't Fix

Bug description:
debit/credit/balance of accounts can't be filtered (because the filed is not stored in DB?)

class account_account(osv.osv
'debit': fields.function(__compute, digits_compute=dp.get_precision('Account'), method=True, string='Debit', multi='balance'),

class account_analytic_account(osv.osv):
 'debit' : fields.function(_debit_calc, method=True, type='float', string='Debit',store=True),

IMHO 
1) this reduces the usability a lot especially a search for balance is often done.
2) the possibility to filter functional fields is essential.