c2c-oerpscenario team mailing list archive
-
c2c-oerpscenario team
-
Mailing list archive
-
Message #02135
[Bug 645072] Re: [trunk] account - debit/credit no filter possible
Hello Dr. Ferdinand,
The feature you're describing is currently not supported by OpenERP, so
i'm closing and setting your bug as wishlist. If you think it's really a
lack, i suggest you to create a blueprint: the best ideas may be
implemented for a future version.
Thanks for your contribution.
** Changed in: openobject-addons
Importance: Undecided => Wishlist
** Changed in: openobject-addons
Status: New => Confirmed
--
[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: Confirmed
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.