c2c-oerpscenario team mailing list archive
-
c2c-oerpscenario team
-
Mailing list archive
-
Message #02180
[Bug 645072] Re: [trunk] account - debit/credit no filter possible
more over, is there some situations where you have to filter on
debit/credit of accounts ? I don't remember having had the need for this
in my accounting. Bob (belgian accounting software) does not provide
this too.
--
[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.