コンテンツへスキップ
メニュー
この質問にフラグが付けられました
2 返信
5225 ビュー

Hi all,

I have Odoo running on a server and my installation includes account_transfer module. It works fine.

Since the addons, server and web are on a very old version (about one year), I have decided to upgrade de addons/server/web addons to newest versions, and before doing it on the server itself, I am testing everything on a virtual machine on another computer.

I have everything setup with new addons/server/web addons, and copied the additional addons I use, including the account_transfer module, but when I try to access the restored database I get the error "No module named q" on the login page. This error was raised whille loading the account_transfer module.

After analyse the log, I found that the account_transfer has the following lines on account_transfer.py:

from osv import osv, fields
from tools.translate import _
import decimal_precision as dp
import time
import q

For testing purposes I commented the line #import q, and tested again and it worked. I was logged onto the system and can use all modules and aplications I have.

The problem is that when I try to use the account_transfer module, I get the error:

NameError: global name 'q' is not defined

So, I found that "q" is not a module. Instead, it is a global name.

How can I fix this since it works fine on the server?

It works fine on the server and the problem is only on the new virtual machine I am testing.

Thank you all

Regards

Paulo

アバター
破棄
最善の回答

You do not have q package installed. To install it, just use terminal and type "pip install -U q" or "easy_install install -U q", depending on what your package installer is.

アバター
破棄
著作者 最善の回答

Dear Mariusz Mizgier

You save the day.

Installed the packege q according to your instructions and it's workins like a charm.

Best regards

Paulo Matos

アバター
破棄
関連投稿 返信 ビュー 活動
1
11月 23
237
1
3月 16
12484
0
7月 16
4395
2
3月 15
4342
3
3月 15
6178