c2c-oerpscenario team mailing list archive
-
c2c-oerpscenario team
-
Mailing list archive
-
Message #12468
Re: [Bug 701644] Re: Update to current trunk breaks menus
Jay, Olivier, Azazahmed and Kyle,
my logs look pretty much as the one passed here by Kyle: it only looks that
the server is setting menu entries (view and menus) as to delete and at the
end it deletes them while it was not supposed to happen. I'm not sure why
subsequent --update=all doesn't work, then we just get errors about missing
records.
I'v been able to make a patch that avoid breaking the menus this way,
however I'm pretty sure that's only a workaround and not something valid for
the long run. Using the following patch I'm finally able to migrate my db
without breaking it all:
=== modified file 'bin/addons/base/ir/ir_model.py'
--- bin/addons/base/ir/ir_model.py 2011-01-10 12:33:02 +0000
+++ bin/addons/base/ir/ir_model.py 2011-01-13 16:40:09 +0000
@@ -725,7 +725,9 @@
def _process_end(self, cr, uid, modules):
if not modules:
return True
modules = list(modules)
module_in = ",".join(["%s"] * len(modules))
cr.execute('select id,name,model,res_id,module from ir_model_data
where module IN (' + module_in + ') and noupdate=%s', modules + [False])
wkf_todo = []
for (id, name, model, res_id,module) in cr.fetchall():
if (module,name) not in self.loads:
- self.unlink_mark[(model,res_id)] = id
+ if module != 'base':
+ self.unlink_mark[(model,res_id)] = id
if model=='workflow.activity':
cr.execute('select res_type,res_id from wkf_instance
where id IN (select inst_id from wkf_workitem where act_id=%s)', (res_id,))
wkf_todo.extend(cr.fetchall())
So basically, I'm here avoiding to mark base records with noupdate=False as
to remove.
May be it can put you on the track: do you think it's normal that we select
those records in that query? If not how can you explain that? Do you think
those records should have a noupdate=True rather than False? Is that
possible that some poisoned recent revision put False instead of True in
those ir.model.data?
Thanks.
On Thu, Jan 13, 2011 at 3:01 PM, Jay Vora (OpenERP) <jvo@xxxxxxxxxxx>
wrote:
> Raphael,
>
> I am having the same experience as Azazahmed, Unable to face this.
> I have my DBs made on 4th and 5th jan, and they work pretty normal.
>
> We are ready to investigate if we have a test DB where you have faced
> it. I understand you cannnot pass on a DB,but can you try by making a
> demo db and try again? It would help really.
>
> I just did a little test and came to a point that your config file might
> have missed --addons-path parameter.
> Can you please check if it is so?
>
> I am a bit confused to mark it confirmed or invalid. Your inputs will help
> us.
> 1. ./openerp-server.py --addons-path=../../addons and installed account
> module.
> 2. ./openerp-server.py --update=all -d trunk13
>
> Step 2 Gave me:
>
> LONG traceback.
>
> [2011-01-13 22:24:57,818][trunk13] INFO:init:updating modules list
> [2011-01-13 22:24:58,732][trunk13] WARNING:init:module analytic: module not
> found
> [2011-01-13 22:24:58,732][trunk13] WARNING:init:module analytic: module not
> found
> [2011-01-13 22:24:58,737][trunk13] WARNING:init:module decimal_precision:
> module not found
> [2011-01-13 22:24:58,737][trunk13] WARNING:init:module decimal_precision:
> module not found
> [2011-01-13 22:24:58,741][trunk13] WARNING:init:module web_livechat: module
> not found
> [2011-01-13 22:24:58,742][trunk13] WARNING:init:module web_livechat: module
> not found
> [2011-01-13 22:24:58,743][trunk13] WARNING:init:module board: module not
> found
> [2011-01-13 22:24:58,744][trunk13] WARNING:init:module board: module not
> found
> [2011-01-13 22:24:58,754][trunk13] WARNING:init:module process: module not
> found
> [2011-01-13 22:24:58,754][trunk13] WARNING:init:module process: module not
> found
> [2011-01-13 22:24:58,762][trunk13] WARNING:init:module base_setup: module
> not found
> [2011-01-13 22:24:58,762][trunk13] WARNING:init:module base_setup: module
> not found
> [2011-01-13 22:24:58,764][trunk13] WARNING:init:module product: module not
> found
> [2011-01-13 22:24:58,764][trunk13] WARNING:init:module product: module not
> found
> [2011-01-13 22:24:58,770][trunk13] WARNING:init:module account: module not
> found
> [2011-01-13 22:24:58,770][trunk13] WARNING:init:module account: module not
> found
> [2011-01-13 22:24:58,788][trunk13] WARNING:init:module base_iban: module
> not found
> [2011-01-13 22:24:58,788][trunk13] WARNING:init:module base_iban: module
> not found
> [2011-01-13 22:24:58,798][trunk13] WARNING:init:module account_voucher:
> module not found
> [2011-01-13 22:24:58,799][trunk13] WARNING:init:module account_voucher:
> module not found
> [2011-01-13 22:24:58,803][trunk13] WARNING:init:module l10n_be: module not
> found
> [2011-01-13 22:24:58,804][trunk13] WARNING:init:module l10n_be: module not
> found
> [2011-01-13 22:24:58,805][trunk13] WARNING:init:module account_chart:
> module not found
> [2011-01-13 22:24:58,805][trunk13] WARNING:init:module account_chart:
> module not found
> [2011-01-13 22:24:58,815][trunk13] WARNING:init:module account_accountant:
> module not found
> [2011-01-13 22:24:58,815][trunk13] WARNING:init:module account_accountant:
> module not found
> [2011-01-13 22:24:58,817][trunk13] WARNING:init:module base_vat: module not
> found
> [2011-01-13 22:24:58,817][trunk13] WARNING:init:module base_vat: module not
> found
> [2011-01-13 22:24:58,825][trunk13] WARNING:init:module account_coda: module
> not found
> [2011-01-13 22:24:58,826][trunk13] WARNING:init:module account_coda: module
> not found
> [2011-01-13 22:25:01,618][trunk13] WARNING:init:module product: module not
> found
> [2011-01-13 22:25:01,619][trunk13] WARNING:init:module product: module not
> found
> [2011-01-13 22:25:01,619][trunk13] WARNING:init:module product: module not
> found
> [2011-01-13 22:25:01,620][trunk13] WARNING:init:module product: not found,
> skipped
> [2011-01-13 22:25:01,620][trunk13] WARNING:init:module l10n_be: module not
> found
> [2011-01-13 22:25:01,621][trunk13] WARNING:init:module l10n_be: module not
> found
> [2011-01-13 22:25:01,621][trunk13] WARNING:init:module l10n_be: module not
> found
> [2011-01-13 22:25:01,622][trunk13] WARNING:init:module l10n_be: not found,
> skipped
> [2011-01-13 22:25:01,622][trunk13] WARNING:init:module base_setup: module
> not found
> [2011-01-13 22:25:01,623][trunk13] WARNING:init:module base_setup: module
> not found
> [2011-01-13 22:25:01,623][trunk13] WARNING:init:module base_setup: module
> not found
> [2011-01-13 22:25:01,624][trunk13] WARNING:init:module base_setup: not
> found, skipped
> [2011-01-13 22:25:01,624][trunk13] WARNING:init:module decimal_precision:
> module not found
> [2011-01-13 22:25:01,625][trunk13] WARNING:init:module decimal_precision:
> module not found
> [2011-01-13 22:25:01,625][trunk13] WARNING:init:module decimal_precision:
> module not found
> [2011-01-13 22:25:01,626][trunk13] WARNING:init:module decimal_precision:
> not found, skipped
> [2011-01-13 22:25:01,626][trunk13] WARNING:init:module account_voucher:
> module not found
> [2011-01-13 22:25:01,627][trunk13] WARNING:init:module account_voucher:
> module not found
> [2011-01-13 22:25:01,627][trunk13] WARNING:init:module account_voucher:
> module not found
> [2011-01-13 22:25:01,628][trunk13] WARNING:init:module account_voucher: not
> found, skipped
> [2011-01-13 22:25:01,628][trunk13] WARNING:init:module web_livechat: module
> not found
> [2011-01-13 22:25:01,629][trunk13] WARNING:init:module web_livechat: module
> not found
> [2011-01-13 22:25:01,629][trunk13] WARNING:init:module web_livechat: module
> not found
> [2011-01-13 22:25:01,630][trunk13] WARNING:init:module web_livechat: not
> found, skipped
> [2011-01-13 22:25:01,630][trunk13] WARNING:init:module base_vat: module not
> found
> [2011-01-13 22:25:01,631][trunk13] WARNING:init:module base_vat: module not
> found
> [2011-01-13 22:25:01,631][trunk13] WARNING:init:module base_vat: module not
> found
> [2011-01-13 22:25:01,632][trunk13] WARNING:init:module base_vat: not found,
> skipped
> [2011-01-13 22:25:01,633][trunk13] WARNING:init:module account_coda: module
> not found
> [2011-01-13 22:25:01,633][trunk13] WARNING:init:module account_coda: module
> not found
> [2011-01-13 22:25:01,634][trunk13] WARNING:init:module account_coda: module
> not found
> [2011-01-13 22:25:01,634][trunk13] WARNING:init:module account_coda: not
> found, skipped
> [2011-01-13 22:25:01,634][trunk13] WARNING:init:module analytic: module not
> found
> [2011-01-13 22:25:01,635][trunk13] WARNING:init:module analytic: module not
> found
> [2011-01-13 22:25:01,635][trunk13] WARNING:init:module analytic: module not
> found
> [2011-01-13 22:25:01,635][trunk13] WARNING:init:module analytic: not found,
> skipped
> [2011-01-13 22:25:01,636][trunk13] WARNING:init:module base_iban: module
> not found
> [2011-01-13 22:25:01,636][trunk13] WARNING:init:module base_iban: module
> not found
> [2011-01-13 22:25:01,636][trunk13] WARNING:init:module base_iban: module
> not found
> [2011-01-13 22:25:01,637][trunk13] WARNING:init:module base_iban: not
> found, skipped
> [2011-01-13 22:25:01,637][trunk13] WARNING:init:module account_chart:
> module not found
> [2011-01-13 22:25:01,637][trunk13] WARNING:init:module account_chart:
> module not found
> [2011-01-13 22:25:01,638][trunk13] WARNING:init:module account_chart:
> module not found
> [2011-01-13 22:25:01,638][trunk13] WARNING:init:module account_chart: not
> found, skipped
> [2011-01-13 22:25:01,638][trunk13] WARNING:init:module board: module not
> found
> [2011-01-13 22:25:01,638][trunk13] WARNING:init:module board: module not
> found
> [2011-01-13 22:25:01,639][trunk13] WARNING:init:module board: module not
> found
> [2011-01-13 22:25:01,639][trunk13] WARNING:init:module board: not found,
> skipped
> [2011-01-13 22:25:01,639][trunk13] WARNING:init:module process: module not
> found
> [2011-01-13 22:25:01,639][trunk13] WARNING:init:module process: module not
> found
> [2011-01-13 22:25:01,640][trunk13] WARNING:init:module process: module not
> found
> [2011-01-13 22:25:01,640][trunk13] WARNING:init:module process: not found,
> skipped
> [2011-01-13 22:25:01,640][trunk13] WARNING:init:module account: module not
> found
> [2011-01-13 22:25:01,640][trunk13] WARNING:init:module account: module not
> found
> [2011-01-13 22:25:01,640][trunk13] WARNING:init:module account: module not
> found
> [2011-01-13 22:25:01,641][trunk13] WARNING:init:module account: not found,
> skipped
> [2011-01-13 22:25:01,641][trunk13] WARNING:init:module account_accountant:
> module not found
> [2011-01-13 22:25:01,641][trunk13] WARNING:init:module account_accountant:
> module not found
> [2011-01-13 22:25:01,641][trunk13] WARNING:init:module account_accountant:
> module not found
> [2011-01-13 22:25:01,642][trunk13] WARNING:init:module account_accountant:
> not found, skipped
> [2011-01-13 22:25:01,643][trunk13] WARNING:init:Not all modules have
> loaded.
> [2011-01-13 22:25:01,723][trunk13] WARNING:init:Model base.setup.installer
> is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,723][trunk13] WARNING:init:Model base.setup.company is
> referenced but not present in the orm pool!
> [2011-01-13 22:25:01,724][trunk13] WARNING:init:Model base.setup.config is
> referenced but not present in the orm pool!
> [2011-01-13 22:25:01,724][trunk13] WARNING:init:Model process.process is
> referenced but not present in the orm pool!
> [2011-01-13 22:25:01,724][trunk13] WARNING:init:Model process.node is
> referenced but not present in the orm pool!
> [2011-01-13 22:25:01,724][trunk13] WARNING:init:Model process.condition is
> referenced but not present in the orm pool!
> [2011-01-13 22:25:01,725][trunk13] WARNING:init:Model process.transition is
> referenced but not present in the orm pool!
> [2011-01-13 22:25:01,725][trunk13] WARNING:init:Model
> process.transition.action is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,725][trunk13] WARNING:init:Model board.board is
> referenced but not present in the orm pool!
> [2011-01-13 22:25:01,725][trunk13] WARNING:init:Model board.board.line is
> referenced but not present in the orm pool!
> [2011-01-13 22:25:01,725][trunk13] WARNING:init:Model board.note.type is
> referenced but not present in the orm pool!
> [2011-01-13 22:25:01,726][trunk13] WARNING:init:Model board.note is
> referenced but not present in the orm pool!
> [2011-01-13 22:25:01,726][trunk13] WARNING:init:Model res.log.report is
> referenced but not present in the orm pool!
> [2011-01-13 22:25:01,726][trunk13] WARNING:init:Model board.menu.create is
> referenced but not present in the orm pool!
> [2011-01-13 22:25:01,726][trunk13] WARNING:init:Model decimal.precision is
> referenced but not present in the orm pool!
> [2011-01-13 22:25:01,726][trunk13] WARNING:init:Model product.uom.categ is
> referenced but not present in the orm pool!
> [2011-01-13 22:25:01,727][trunk13] WARNING:init:Model product.uom is
> referenced but not present in the orm pool!
> [2011-01-13 22:25:01,727][trunk13] WARNING:init:Model product.ul is
> referenced but not present in the orm pool!
> [2011-01-13 22:25:01,727][trunk13] WARNING:init:Model product.category is
> referenced but not present in the orm pool!
> [2011-01-13 22:25:01,727][trunk13] WARNING:init:Model product.template is
> referenced but not present in the orm pool!
> [2011-01-13 22:25:01,727][trunk13] WARNING:init:Model product.product is
> referenced but not present in the orm pool!
> [2011-01-13 22:25:01,728][trunk13] WARNING:init:Model product.packaging is
> referenced but not present in the orm pool!
> [2011-01-13 22:25:01,728][trunk13] WARNING:init:Model product.supplierinfo
> is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,728][trunk13] WARNING:init:Model pricelist.partnerinfo
> is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,728][trunk13] WARNING:init:Model product.price.type is
> referenced but not present in the orm pool!
> [2011-01-13 22:25:01,728][trunk13] WARNING:init:Model
> product.pricelist.type is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,729][trunk13] WARNING:init:Model product.pricelist is
> referenced but not present in the orm pool!
> [2011-01-13 22:25:01,729][trunk13] WARNING:init:Model
> product.pricelist.version is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,729][trunk13] WARNING:init:Model
> product.pricelist.item is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,729][trunk13] WARNING:init:Model product.price_list is
> referenced but not present in the orm pool!
> [2011-01-13 22:25:01,730][trunk13] WARNING:init:Model
> account.analytic.account is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,730][trunk13] WARNING:init:Model account.analytic.line
> is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,730][trunk13] WARNING:init:Model account.payment.term
> is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,730][trunk13] WARNING:init:Model
> account.payment.term.line is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,730][trunk13] WARNING:init:Model account.account.type
> is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,731][trunk13] WARNING:init:Model account.tax is
> referenced but not present in the orm pool!
> [2011-01-13 22:25:01,731][trunk13] WARNING:init:Model account.account is
> referenced but not present in the orm pool!
> [2011-01-13 22:25:01,731][trunk13] WARNING:init:Model account.journal.view
> is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,731][trunk13] WARNING:init:Model
> account.journal.column is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,731][trunk13] WARNING:init:Model account.journal is
> referenced but not present in the orm pool!
> [2011-01-13 22:25:01,731][trunk13] WARNING:init:Model account.fiscalyear is
> referenced but not present in the orm pool!
> [2011-01-13 22:25:01,732][trunk13] WARNING:init:Model account.period is
> referenced but not present in the orm pool!
> [2011-01-13 22:25:01,732][trunk13] WARNING:init:Model
> account.journal.period is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,732][trunk13] WARNING:init:Model account.move is
> referenced but not present in the orm pool!
> [2011-01-13 22:25:01,732][trunk13] WARNING:init:Model
> account.move.reconcile is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,732][trunk13] WARNING:init:Model account.tax.code is
> referenced but not present in the orm pool!
> [2011-01-13 22:25:01,732][trunk13] WARNING:init:Model account.model is
> referenced but not present in the orm pool!
> [2011-01-13 22:25:01,733][trunk13] WARNING:init:Model account.model.line is
> referenced but not present in the orm pool!
> [2011-01-13 22:25:01,733][trunk13] WARNING:init:Model account.subscription
> is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,733][trunk13] WARNING:init:Model
> account.subscription.line is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,733][trunk13] WARNING:init:Model account.tax.template
> is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,733][trunk13] WARNING:init:Model
> account.account.template is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,733][trunk13] WARNING:init:Model
> account.addtmpl.wizard is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,734][trunk13] WARNING:init:Model
> account.tax.code.template is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,734][trunk13] WARNING:init:Model
> account.chart.template is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,734][trunk13] WARNING:init:Model
> account.fiscal.position.template is referenced but not present in the orm
> pool!
> [2011-01-13 22:25:01,734][trunk13] WARNING:init:Model
> account.fiscal.position.tax.template is referenced but not present in the
> orm pool!
> [2011-01-13 22:25:01,734][trunk13] WARNING:init:Model
> account.fiscal.position.account.template is referenced but not present in
> the orm pool!
> [2011-01-13 22:25:01,734][trunk13] WARNING:init:Model
> wizard.multi.charts.accounts is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,735][trunk13] WARNING:init:Model
> account.bank.accounts.wizard is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,735][trunk13] WARNING:init:Model account.installer is
> referenced but not present in the orm pool!
> [2011-01-13 22:25:01,735][trunk13] WARNING:init:Model
> account.installer.modules is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,735][trunk13] WARNING:init:Model
> account.analytic.journal is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,735][trunk13] WARNING:init:Model
> account.analytic.Journal.report is referenced but not present in the orm
> pool!
> [2011-01-13 22:25:01,735][trunk13] WARNING:init:Model
> account.analytic.balance is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,736][trunk13] WARNING:init:Model
> account.analytic.inverted.balance is referenced but not present in the orm
> pool!
> [2011-01-13 22:25:01,736][trunk13] WARNING:init:Model
> account.analytic.cost.ledger is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,736][trunk13] WARNING:init:Model
> account.analytic.cost.ledger.journal.report is referenced but not present in
> the orm pool!
> [2011-01-13 22:25:01,736][trunk13] WARNING:init:Model
> project.account.analytic.line is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,737][trunk13] WARNING:init:Model
> account.analytic.chart is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,737][trunk13] WARNING:init:Model
> account.fiscal.position is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,737][trunk13] WARNING:init:Model
> account.fiscal.position.tax is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,737][trunk13] WARNING:init:Model
> account.fiscal.position.account is referenced but not present in the orm
> pool!
> [2011-01-13 22:25:01,738][trunk13] WARNING:init:Model account.invoice is
> referenced but not present in the orm pool!
> [2011-01-13 22:25:01,738][trunk13] WARNING:init:Model account.invoice.line
> is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,738][trunk13] WARNING:init:Model account.invoice.tax
> is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,738][trunk13] WARNING:init:Model
> account.bank.statement is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,739][trunk13] WARNING:init:Model
> account.bank.statement.line is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,739][trunk13] WARNING:init:Model account.cashbox.line
> is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,739][trunk13] WARNING:init:Model account.move.line is
> referenced but not present in the orm pool!
> [2011-01-13 22:25:01,739][trunk13] WARNING:init:Model account.common.report
> is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,740][trunk13] WARNING:init:Model
> account.common.partner.report is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,740][trunk13] WARNING:init:Model
> account.common.journal.report is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,740][trunk13] WARNING:init:Model
> account.common.account.report is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,740][trunk13] WARNING:init:Model
> account.automatic.reconcile is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,741][trunk13] WARNING:init:Model
> account.move.line.reconcile.select is referenced but not present in the orm
> pool!
> [2011-01-13 22:25:01,741][trunk13] WARNING:init:Model
> account.move.line.unreconcile.select is referenced but not present in the
> orm pool!
> [2011-01-13 22:25:01,741][trunk13] WARNING:init:Model
> account.partner.reconcile.process is referenced but not present in the orm
> pool!
> [2011-01-13 22:25:01,741][trunk13] WARNING:init:Model
> account.move.line.reconcile is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,742][trunk13] WARNING:init:Model
> account.move.line.reconcile.writeoff is referenced but not present in the
> orm pool!
> [2011-01-13 22:25:01,742][trunk13] WARNING:init:Model account.unreconcile
> is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,742][trunk13] WARNING:init:Model
> account.unreconcile.reconcile is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,743][trunk13] WARNING:init:Model
> account.invoice.refund is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,743][trunk13] WARNING:init:Model account.move.journal
> is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,743][trunk13] WARNING:init:Model
> account.journal.select is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,743][trunk13] WARNING:init:Model
> account.move.bank.reconcile is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,744][trunk13] WARNING:init:Model
> account.subscription.generate is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,744][trunk13] WARNING:init:Model
> account.aged.trial.balance is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,744][trunk13] WARNING:init:Model
> account.partner.ledger is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,744][trunk13] WARNING:init:Model
> account.partner.balance is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,744][trunk13] WARNING:init:Model account.period.close
> is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,744][trunk13] WARNING:init:Model
> account.fiscalyear.close is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,745][trunk13] WARNING:init:Model
> account.fiscalyear.close.state is referenced but not present in the orm
> pool!
> [2011-01-13 22:25:01,745][trunk13] WARNING:init:Model
> account.vat.declaration is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,745][trunk13] WARNING:init:Model
> account.open.closed.fiscalyear is referenced but not present in the orm
> pool!
> [2011-01-13 22:25:01,745][trunk13] WARNING:init:Model
> account.invoice.confirm is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,745][trunk13] WARNING:init:Model
> account.invoice.cancel is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,746][trunk13] WARNING:init:Model account.chart is
> referenced but not present in the orm pool!
> [2011-01-13 22:25:01,746][trunk13] WARNING:init:Model account.tax.chart is
> referenced but not present in the orm pool!
> [2011-01-13 22:25:01,746][trunk13] WARNING:init:Model validate.account.move
> is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,746][trunk13] WARNING:init:Model
> validate.account.move.lines is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,746][trunk13] WARNING:init:Model account.use.model is
> referenced but not present in the orm pool!
> [2011-01-13 22:25:01,746][trunk13] WARNING:init:Model account.state.open is
> referenced but not present in the orm pool!
> [2011-01-13 22:25:01,747][trunk13] WARNING:init:Model account.print.journal
> is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,747][trunk13] WARNING:init:Model
> account.central.journal is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,747][trunk13] WARNING:init:Model
> account.general.journal is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,747][trunk13] WARNING:init:Model
> account.report.general.ledger is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,747][trunk13] WARNING:init:Model
> account.balance.report is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,747][trunk13] WARNING:init:Model
> account.change.currency is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,748][trunk13] WARNING:init:Model account.bs.report is
> referenced but not present in the orm pool!
> [2011-01-13 22:25:01,748][trunk13] WARNING:init:Model account.pl.report is
> referenced but not present in the orm pool!
> [2011-01-13 22:25:01,748][trunk13] WARNING:init:Model
> account.invoice.report is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,748][trunk13] WARNING:init:Model
> report.account.receivable is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,748][trunk13] WARNING:init:Model temp.range is
> referenced but not present in the orm pool!
> [2011-01-13 22:25:01,748][trunk13] WARNING:init:Model
> report.aged.receivable is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,749][trunk13] WARNING:init:Model
> report.invoice.created is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,749][trunk13] WARNING:init:Model
> report.account_type.sales is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,749][trunk13] WARNING:init:Model report.account.sales
> is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,749][trunk13] WARNING:init:Model
> account.entries.report is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,750][trunk13] WARNING:init:Model
> analytic.entries.report is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,750][trunk13] WARNING:init:Model
> account.sequence.fiscalyear is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,750][trunk13] WARNING:init:Model account.voucher is
> referenced but not present in the orm pool!
> [2011-01-13 22:25:01,750][trunk13] WARNING:init:Model account.voucher.line
> is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,750][trunk13] WARNING:init:Model sale.receipt.report
> is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,751][trunk13] WARNING:init:Model
> account.voucher.unreconcile is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,751][trunk13] WARNING:init:Model
> account.statement.from.invoice.lines is referenced but not present in the
> orm pool!
> [2011-01-13 22:25:01,751][trunk13] WARNING:init:Model
> account.statement.from.invoice is referenced but not present in the orm
> pool!
> [2011-01-13 22:25:01,752][trunk13] WARNING:init:Model account.coda is
> referenced but not present in the orm pool!
> [2011-01-13 22:25:01,752][trunk13] WARNING:init:Model account.coda.import
> is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,752][trunk13] WARNING:init:Model vat.listing.clients
> is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,752][trunk13] WARNING:init:Model partner.vat is
> referenced but not present in the orm pool!
> [2011-01-13 22:25:01,753][trunk13] WARNING:init:Model partner.vat.list is
> referenced but not present in the orm pool!
> [2011-01-13 22:25:01,753][trunk13] WARNING:init:Model partner.vat.intra is
> referenced but not present in the orm pool!
> [2011-01-13 22:25:01,753][trunk13] WARNING:init:Model
> l1on_be.vat.declaration is referenced but not present in the orm pool!
> [2011-01-13 22:25:01,790][trunk13] INFO:addons.base.ir.model.data:Deleting
> 112@xxxxxxxxxx
> [2011-01-13 22:25:01,801][trunk13] INFO:addons.base.ir.model.data:Deleting
> 104@xxxxxxxxxx
>
> --
> You received this bug notification because you are subscribed to
> OpenObject Server.
> https://bugs.launchpad.net/bugs/701644
>
> Title:
> Update to current trunk breaks menus
>
> Status in OpenObject Server:
> Confirmed
>
> Bug description:
> When updating to the current trunk even from last friday, the home
> menus are broken. The accounting menu is missing all of the items, and
> the home menu displays incorrect items.
>
> While --update=all it deletes several ir records and throws a few
> errors.
>
> Steps to reproduce.
>
> Have a week old installation, download latest sources then update.
> Menus broken.
>
> Something to do with base.ir.model.data, and views deletes a ton of
> records. Also points to res.groups could not delete.
>
>
>
--
You received this bug notification because you are a member of C2C
OERPScenario, which is subscribed to the OpenERP Project Group.
https://bugs.launchpad.net/bugs/701644
Title:
Update to current trunk breaks menus
Status in OpenObject Server:
Incomplete
Bug description:
When updating to the current trunk even from last friday, the home
menus are broken. The accounting menu is missing all of the items, and
the home menu displays incorrect items.
While --update=all it deletes several ir records and throws a few
errors.
Steps to reproduce.
Have a week old installation, download latest sources then update.
Menus broken.
Something to do with base.ir.model.data, and views deletes a ton of
records. Also points to res.groups could not delete.
References