openerp-india team mailing list archive
-
openerp-india team
-
Mailing list archive
-
Message #21904
[Bug 1102612] Re: Journals can not be deleted, even when they have no entries
The origin of these records seems to be in
account/account_cash_statement.py around line 321:
class account_journal(osv.osv):
_inherit = 'account.journal'
def _default_cashbox_line_ids(self, cr, uid, context=None):
# Return a list of coins in Euros.
result = [
dict(pieces=value) for value in [0.01, 0.02, 0.05, 0.1, 0.2, 0.5, 1, 2, 5, 10, 20, 50, 100, 200, 500]
]
return result
_columns = {
'cashbox_line_ids' : fields.one2many('account.journal.cashbox.line', 'journal_id', 'CashBox'),
}
_defaults = {
'cashbox_line_ids' : _default_cashbox_line_ids,
}
Worth noting that these values are wrong for many currencies. USD, for
example, does not have $0.02, $0.20, or $200 pieces, and does have a
$0.25 piece, but since I can't figure out what these records do, if
anything, I can't say if this is actually a problem.
--
You received this bug notification because you are a member of OpenERP
Indian Team, which is subscribed to OpenERP Addons.
https://bugs.launchpad.net/bugs/1102612
Title:
Journals can not be deleted, even when they have no entries
Status in OpenERP Addons (modules):
New
Bug description:
7.0 creates, as part of the default accounting setup, a "Bank" and a
"Cash" journal. Attempting to delete either of these journals presents
the cryptic error:
Integrity Error
The operation cannot be completed, probably due to the following:
- deletion: you may be trying to delete a record while other records still reference it
- creation/update: a mandatory field is not correctly set
[object with reference: account.journal.cashbox.line -
account.journal.cashbox.line]
This is also just as relevant to any journal created by the user.
There is indeed a table account.journal.cashbox.line that references
the journal, but it's extra confusing to a user since no action was
ever taken to associate this journal with a cashbox, and there does
not appear to be any way to delete the offending
account.journal.cashbox.line records through the UI that I have found.
Deleting them directly from the database is of course possible, but
probably not an acceptable workaround for typical users.
To manage notifications about this bug go to:
https://bugs.launchpad.net/openobject-addons/+bug/1102612/+subscriptions
References