[IMP] crm: avoid circular import (which is not supported by the AddonsImportHook).

bzr revid: vmt@openerp.com-20120109151055-fmt3vgi3cffhb5zb
This commit is contained in:
Vo Minh Thu 2012-01-09 16:10:55 +01:00
parent 4e46220fae
commit 85295192d8
4 changed files with 4 additions and 4 deletions

View File

@ -19,7 +19,7 @@
#
##############################################################################
from base_calendar import base_calendar
from .. import base_calendar
from osv import fields, osv
from tools.translate import _
import tools

View File

@ -21,7 +21,7 @@
from osv import fields,osv
import tools
from crm import crm
from .. import crm
AVAILABLE_STATES = [
('draft','Draft'),

View File

@ -21,7 +21,7 @@
from osv import fields,osv
import tools
from crm import crm
from .. import crm
AVAILABLE_STATES = [
('draft','Draft'),

View File

@ -1,4 +1,4 @@
from crm import crm
from .. import crm
from osv import fields, osv
from tools.translate import _
from mail.mail_message import truncate_text