Skip to Content
Odoo Menú
  • Registra entrada
  • Prova-ho gratis
  • Aplicacions
    Finances
    • Comptabilitat
    • Facturació
    • Despeses
    • Full de càlcul (IA)
    • Documents
    • Signatura
    Vendes
    • CRM
    • Vendes
    • Punt de venda per a botigues
    • Punt de venda per a restaurants
    • Subscripcions
    • Lloguer
    Imatges de llocs web
    • Creació de llocs web
    • Comerç electrònic
    • Blog
    • Fòrum
    • Xat en directe
    • Aprenentatge en línia
    Cadena de subministrament
    • Inventari
    • Fabricació
    • PLM
    • Compres
    • Manteniment
    • Qualitat
    Recursos humans
    • Empleats
    • Reclutament
    • Absències
    • Avaluacions
    • Recomanacions
    • Flota
    Màrqueting
    • Màrqueting Social
    • Màrqueting per correu electrònic
    • Màrqueting per SMS
    • Esdeveniments
    • Automatització del màrqueting
    • Enquestes
    Serveis
    • Projectes
    • Fulls d'hores
    • Servei de camp
    • Suport
    • Planificació
    • Cites
    Productivitat
    • Converses
    • Validacions
    • IoT
    • VoIP
    • Coneixements
    • WhatsApp
    Aplicacions de tercers Odoo Studio Plataforma d'Odoo al núvol
  • Sectors
    Comerç al detall
    • Llibreria
    • Botiga de roba
    • Botiga de mobles
    • Botiga d'ultramarins
    • Ferreteria
    • Botiga de joguines
    Food & Hospitality
    • Bar i pub
    • Restaurant
    • Menjar ràpid
    • Guest House
    • Distribuïdor de begudes
    • Hotel
    Immobiliari
    • Agència immobiliària
    • Estudi d'arquitectura
    • Construcció
    • Gestió immobiliària
    • Jardineria
    • Associació de propietaris de béns immobles
    Consultoria
    • Empresa comptable
    • Partner d'Odoo
    • Agència de màrqueting
    • Bufet d'advocats
    • Captació de talent
    • Auditoria i certificació
    Fabricació
    • Textile
    • Metal
    • Mobles
    • Menjar
    • Brewery
    • Regals corporatius
    Salut i fitness
    • Club d'esport
    • Òptica
    • Centre de fitness
    • Especialistes en benestar
    • Farmàcia
    • Perruqueria
    Trades
    • Servei de manteniment
    • Hardware i suport informàtic
    • Sistemes d'energia solar
    • Shoe Maker
    • Serveis de neteja
    • Instal·lacions HVAC
    Altres
    • Nonprofit Organization
    • Agència del medi ambient
    • Lloguer de panells publicitaris
    • Fotografia
    • Lloguer de bicicletes
    • Distribuïdors de programari
    Browse all Industries
  • Comunitat
    Aprèn
    • Tutorials
    • Documentació
    • Certificacions
    • Formació
    • Blog
    • Pòdcast
    Potenciar l'educació
    • Programa educatiu
    • Scale-Up! El joc empresarial
    • Visita Odoo
    Obtindre el programari
    • Descarregar
    • Comparar edicions
    • Novetats de les versions
    Col·laborar
    • GitHub
    • Fòrum
    • Esdeveniments
    • Traduccions
    • Converteix-te en partner
    • Services for Partners
    • Registra la teva empresa comptable
    Obtindre els serveis
    • Troba un partner
    • Troba un comptable
    • Contacta amb un expert
    • Serveis d'implementació
    • Referències del client
    • Suport
    • Actualitzacions
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Programar una demo
  • Preus
  • Ajuda

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Comptabilitat
  • Inventari
  • PoS
  • Projectes
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
Ajuda

!PLS HELP!__ How to add 'Phone' field into SO form?! how to add it?

Subscriure's

Get notified when there's activity on this post

This question has been flagged
2 Respostes
4367 Vistes
Avatar
Karolin Ar.
0
Avatar
Descartar
ABU K

using inherit you can add phone in sale order form _inherit='sale.order' _columns={ 'phone':fields.char('Phone') } also define xml --- }

Karolin Ar.
Autor

Hi, already i have an inherit line in sale_order.py .

Karolin Ar.
Autor

class sale_order(osv.osv , EDIMixin) _inherit = 'sale.order' blah blah.. ... .. Then i have added this line: -->

Karolin Ar.
Autor

_columns = { 'partner_phone':fields.related('partner_id','phone', type="char", string="Phone", store=True) }

Karolin Ar.
Autor

But still when i try to add the Phone field from 'ManageViews' it doesnt there!!! What's wrong?

OdooBot
Your quick response is appreciated.

On Wed, Oct 15, 2014 at 11:24 AM, LIBU <libukoshym@mail.odoo.com> wrote:

using inherit you can add phone in sale order form _inherit='sale.order' _columns={ 'phone':fields.char('Phone') } also define xml --- }

--
LIBU
Sent by Odoo Inc. using Odoo about Forum Post How to add 'Phone' field into SO form?! how to add it?

Karolin Ar.
Autor

Can anyone answer this Q ?

michel Guénard

The longuest post I have seen so far!

Avatar
ABU K
Best Answer

please add init ,and openerp file also

.py

from osv import osv,fields

class sale_order(osv.osv):
    
    _inherit='sale.order'
    
    _columns={
             'phone':fields.char('phone',required=True)
              }
sale_order()

xml-------------

<?xml version="1.0" encoding="utf-8"?>
<openerp>
    <data>
        <record id="sale_order_form_inherited1" model="ir.ui.view">
        <field name="name">sale.order.form.inherited</field>
        <field name="model">sale.order</field>
        <field name="inherit_id" ref="sale.view_order_form"/>
        <field name="arch" type="xml">
            <xpath expr="/form/sheet/group/group/field[@name='client_order_ref']" position="after">
                    <field name="phone"/>
            </xpath>
        </field>
                
    </record>
    
    <record id="view_order_tree" model="ir.ui.view">
            <field name="name">sale.view_order_tree</field>
            <field name="model">sale.order</field>
            <field name="inherit_id" ref="sale.view_order_tree"/>
            <field name="arch" type="xml">
                <field name="state" position="after">
                    <field name="phone" invisible="1"/>
                </field>
            </field>
</record>

 

<record id="state_search_view" model="ir.ui.view">
            <field name="name">state.searchview</field>
            <field name="model">sale.order</field>
             <field name="inherit_id" ref="sale.view_sales_order_filter"/>
            <field name="arch" type="xml">
                <search string="Search Sales Order">
                    <field name="phone"/>
                </search>
            </field>
        </record>
        
        
    </data>
</openerp>

 

 

 

 

0
Avatar
Descartar
ABU K

If it resolved please mark it as solved ..........

Karolin Ar.
Autor

it didnt solve my prob. Please check my comments. i need your help.

Karolin Ar.
Autor

is it necessary to use xpath tag?

ABU K

what is your error..? please put here or what is your requirement ,then only i can help you

OdooBot
Hi Libu,
I have downloaded your module and tried to install it. Then OpenERP didnt list it in modules list. I tried to upgrade my CRM module. After that i have got: " 500 Internal Server Error. The server encountered an internal error and was unable to complete your request. "
And OpenERP goes down.
!!! Please help. I have removed the 'crm' folder from my 'odoo' folder. I could reach the OpenERP and taked backup from my data. But no chance to install/uninstall/upgrade the CRM module. When i click on Sales links, i got this error:

OpenERP Server Error

Traceback (most recent call last):
  File "/opt/odoo/v8/server/openerp/http.py", line 470, in dispatch
    result = self._call_function(**self.params)
  File "/opt/odoo/v8/server/openerp/http.py", line 294, in _call_function
    return checked_call(self.db, *args, **kwargs)
  File "/opt/odoo/v8/server/openerp/service/model.py", line 113, in wrapper
    return f(dbname, *args, **kwargs)
  File "/opt/odoo/v8/server/openerp/http.py", line 291, in checked_call
    return self.endpoint(*a, **kw)
  File "/opt/odoo/v8/server/openerp/http.py", line 638, in __call__
    return self.method(*args, **kw)
  File "/opt/odoo/v8/server/openerp/http.py", line 337, in response_wrap
    response = f(*args, **kw)
  File "/opt/odoo/v8/web/addons/web/controllers/main.py", line 1248, in call_button
    action = self._call_kw(model, method, args, {})
  File "/opt/odoo/v8/web/addons/web/controllers/main.py", line 1236, in _call_kw
    return getattr(request.registry.get(model), method)(request.cr, request.uid, *args, **kwargs)
  File "/opt/odoo/v8/server/openerp/addons/base/module/module.py", line 499, in button_immediate_uninstall
    return self._button_immediate_function(cr, uid, ids, self.button_uninstall, context=context)
  File "/opt/odoo/v8/server/openerp/addons/base/module/module.py", line 479, in _button_immediate_function
    registry = openerp.modules.registry.RegistryManager.new(cr.dbname, update_module=True)
  File "/opt/odoo/v8/server/openerp/modules/registry.py", line 299, in new
    openerp.modules.load_modules(registry._db, force_demo, status, update_module)
  File "/opt/odoo/v8/server/openerp/modules/loading.py", line 407, in load_modules
    registry['ir.module.module'].module_uninstall(cr, SUPERUSER_ID, mod_ids_to_remove)
  File "/opt/odoo/v8/server/openerp/addons/base/module/module.py", line 443, in module_uninstall
    ir_model_constraint._module_data_uninstall(cr, uid, constraint_ids, context)
  File "/opt/odoo/v8/server/openerp/addons/base/ir/ir_model.py", line 521, in _module_data_uninstall
    model_obj = self.pool[model]
  File "/opt/odoo/v8/server/openerp/modules/registry.py", line 106, in __getitem__
    return self.models[model_name]
KeyError: u'crm.lead.assignation'



Please Help Libu.

Thanks, Karolin.


On Wed, Oct 15, 2014 at 5:00 PM, LIBU <libukoshym@mail.odoo.com> wrote:

what is your error..? please put here or what is your requirement ,then only i can help you

--
LIBU
Sent by Odoo Inc. using Odoo about Forum Post False

OdooBot
Create one new database and install this module into your new database.let me know if any error is raised or not?

On Sat, Oct 18, 2014 at 2:57 PM, Parelli Artounian <phorse1@gmail.com> wrote:
Hi Libu,
I have downloaded your module and tried to install it. Then OpenERP didnt list it in modules list. I tried to upgrade my CRM module. After that i have got: " 500 Internal Server Error. The server encountered an internal error and was unable to complete your request. "
And OpenERP goes down.
!!! Please help. I have removed the 'crm' folder from my 'odoo' folder. I could reach the OpenERP and taked backup from my data. But no chance to install/uninstall/upgrade the CRM module. When i click on Sales links, i got this error:

OpenERP Server Error

Traceback (most recent call last):
  File "/opt/odoo/v8/server/openerp/http.py", line 470, in dispatch
    result = self._call_function(**self.params)
  File "/opt/odoo/v8/server/openerp/http.py", line 294, in _call_function
    return checked_call(self.db, *args, **kwargs)
  File "/opt/odoo/v8/server/openerp/service/model.py", line 113, in wrapper
    return f(dbname, *args, **kwargs)
  File "/opt/odoo/v8/server/openerp/http.py", line 291, in checked_call
    return self.endpoint(*a, **kw)
  File "/opt/odoo/v8/server/openerp/http.py", line 638, in __call__
    return self.method(*args, **kw)
  File "/opt/odoo/v8/server/openerp/http.py", line 337, in response_wrap
    response = f(*args, **kw)
  File "/opt/odoo/v8/web/addons/web/controllers/main.py", line 1248, in call_button
    action = self._call_kw(model, method, args, {})
  File "/opt/odoo/v8/web/addons/web/controllers/main.py", line 1236, in _call_kw
    return getattr(request.registry.get(model), method)(request.cr, request.uid, *args, **kwargs)
  File "/opt/odoo/v8/server/openerp/addons/base/module/module.py", line 499, in button_immediate_uninstall
    return self._button_immediate_function(cr, uid, ids, self.button_uninstall, context=context)
  File "/opt/odoo/v8/server/openerp/addons/base/module/module.py", line 479, in _button_immediate_function
    registry = openerp.modules.registry.RegistryManager.new(cr.dbname, update_module=True)
  File "/opt/odoo/v8/server/openerp/modules/registry.py", line 299, in new
    openerp.modules.load_modules(registry._db, force_demo, status, update_module)
  File "/opt/odoo/v8/server/openerp/modules/loading.py", line 407, in load_modules
    registry['ir.module.module'].module_uninstall(cr, SUPERUSER_ID, mod_ids_to_remove)
  File "/opt/odoo/v8/server/openerp/addons/base/module/module.py", line 443, in module_uninstall
    ir_model_constraint._module_data_uninstall(cr, uid, constraint_ids, context)
  File "/opt/odoo/v8/server/openerp/addons/base/ir/ir_model.py", line 521, in _module_data_uninstall
    model_obj = self.pool[model]
  File "/opt/odoo/v8/server/openerp/modules/registry.py", line 106, in __getitem__
    return self.models[model_name]
KeyError: u'crm.lead.assignation'



Please Help Libu.

Thanks, Karolin.


On Wed, Oct 15, 2014 at 5:00 PM, LIBU <libukoshym@mail.odoo.com> wrote:

what is your error..? please put here or what is your requirement ,then only i can help you

--
LIBU
Sent by Odoo Inc. using Odoo about Forum Post False

--
Karolin Ar.
Sent by OpenERP S.A. using Odoo about Forum Post False



--
Thanks&Regards
Libu Koshy
OdooBot
Hi. I tried to create new database but i got this error:

OpenERP Server Error

Traceback (most recent call last):
  File "/opt/odoo/v8/server/openerp/http.py", line 470, in dispatch
    result = self._call_function(**self.params)
  File "/opt/odoo/v8/server/openerp/http.py", line 295, in _call_function
    return self.endpoint(*args, **kwargs)
  File "/opt/odoo/v8/server/openerp/http.py", line 638, in __call__
    return self.method(*args, **kw)
  File "/opt/odoo/v8/server/openerp/http.py", line 337, in response_wrap
    response = f(*args, **kw)
  File "/opt/odoo/v8/web/addons/web/controllers/main.py", line 917, in create
    params['create_admin_pwd'])
  File "/opt/odoo/v8/server/openerp/http.py", line 707, in proxy_method
    result = dispatch_rpc(self.service_name, method, args)
  File "/opt/odoo/v8/server/openerp/http.py", line 92, in dispatch_rpc
    result = dispatch(method, params)
  File "/opt/odoo/v8/server/openerp/service/db.py", line 67, in dispatch
    security.check_super(passwd)
  File "/opt/odoo/v8/server/openerp/service/security.py", line 32, in check_super
    raise openerp.exceptions.AccessDenied()
AccessDenied: Access denied.


On Mon, Oct 20, 2014 at 7:58 AM, libu koshy <libukoshym@gmail.com> wrote:
Create one new database and install this module into your new database.let me know if any error is raised or not?

On Sat, Oct 18, 2014 at 2:57 PM, Parelli Artounian <phorse1@gmail.com> wrote:
Hi Libu,
I have downloaded your module and tried to install it. Then OpenERP didnt list it in modules list. I tried to upgrade my CRM module. After that i have got: " 500 Internal Server Error. The server encountered an internal error and was unable to complete your request. "
And OpenERP goes down.
!!! Please help. I have removed the 'crm' folder from my 'odoo' folder. I could reach the OpenERP and taked backup from my data. But no chance to install/uninstall/upgrade the CRM module. When i click on Sales links, i got this error:

OpenERP Server Error

Traceback (most recent call last):
  File "/opt/odoo/v8/server/openerp/http.py", line 470, in dispatch
    result = self._call_function(**self.params)
  File "/opt/odoo/v8/server/openerp/http.py", line 294, in _call_function
    return checked_call(self.db, *args, **kwargs)
  File "/opt/odoo/v8/server/openerp/service/model.py", line 113, in wrapper
    return f(dbname, *args, **kwargs)
  File "/opt/odoo/v8/server/openerp/http.py", line 291, in checked_call
    return self.endpoint(*a, **kw)
  File "/opt/odoo/v8/server/openerp/http.py", line 638, in __call__
    return self.method(*args, **kw)
  File "/opt/odoo/v8/server/openerp/http.py", line 337, in response_wrap
    response = f(*args, **kw)
  File "/opt/odoo/v8/web/addons/web/controllers/main.py", line 1248, in call_button
    action = self._call_kw(model, method, args, {})
  File "/opt/odoo/v8/web/addons/web/controllers/main.py", line 1236, in _call_kw
    return getattr(request.registry.get(model), method)(request.cr, request.uid, *args, **kwargs)
  File "/opt/odoo/v8/server/openerp/addons/base/module/module.py", line 499, in button_immediate_uninstall
    return self._button_immediate_function(cr, uid, ids, self.button_uninstall, context=context)
  File "/opt/odoo/v8/server/openerp/addons/base/module/module.py", line 479, in _button_immediate_function
    registry = openerp.modules.registry.RegistryManager.new(cr.dbname, update_module=True)
  File "/opt/odoo/v8/server/openerp/modules/registry.py", line 299, in new
    openerp.modules.load_modules(registry._db, force_demo, status, update_module)
  File "/opt/odoo/v8/server/openerp/modules/loading.py", line 407, in load_modules
    registry['ir.module.module'].module_uninstall(cr, SUPERUSER_ID, mod_ids_to_remove)
  File "/opt/odoo/v8/server/openerp/addons/base/module/module.py", line 443, in module_uninstall
    ir_model_constraint._module_data_uninstall(cr, uid, constraint_ids, context)
  File "/opt/odoo/v8/server/openerp/addons/base/ir/ir_model.py", line 521, in _module_data_uninstall
    model_obj = self.pool[model]
  File "/opt/odoo/v8/server/openerp/modules/registry.py", line 106, in __getitem__
    return self.models[model_name]
KeyError: u'crm.lead.assignation'



Please Help Libu.

Thanks, Karolin.


On Wed, Oct 15, 2014 at 5:00 PM, LIBU <libukoshym@mail.odoo.com> wrote:

what is your error..? please put here or what is your requirement ,then only i can help you

--
LIBU
Sent by Odoo Inc. using Odoo about Forum Post False

--
Karolin Ar.
Sent by OpenERP S.A. using Odoo about Forum Post False



--
Thanks&Regards
Libu Koshy
--
LIBU
Sent by Odoo Inc. using Odoo about Forum Post False

OdooBot
Hi

Check the username and password ?put password as admin

On Mon, Oct 20, 2014 at 1:58 PM, Parelli Artounian <phorse1@gmail.com> wrote:
Hi. I tried to create new database but i got this error:

OpenERP Server Error

Traceback (most recent call last):
  File "/opt/odoo/v8/server/openerp/http.py", line 470, in dispatch
    result = self._call_function(**self.params)
  File "/opt/odoo/v8/server/openerp/http.py", line 295, in _call_function
    return self.endpoint(*args, **kwargs)
  File "/opt/odoo/v8/server/openerp/http.py", line 638, in __call__
    return self.method(*args, **kw)
  File "/opt/odoo/v8/server/openerp/http.py", line 337, in response_wrap
    response = f(*args, **kw)
  File "/opt/odoo/v8/web/addons/web/controllers/main.py", line 917, in create
    params['create_admin_pwd'])
  File "/opt/odoo/v8/server/openerp/http.py", line 707, in proxy_method
    result = dispatch_rpc(self.service_name, method, args)
  File "/opt/odoo/v8/server/openerp/http.py", line 92, in dispatch_rpc
    result = dispatch(method, params)
  File "/opt/odoo/v8/server/openerp/service/db.py", line 67, in dispatch
    security.check_super(passwd)
  File "/opt/odoo/v8/server/openerp/service/security.py", line 32, in check_super
    raise openerp.exceptions.AccessDenied()
AccessDenied: Access denied.


On Mon, Oct 20, 2014 at 7:58 AM, libu koshy <libukoshym@gmail.com> wrote:
Create one new database and install this module into your new database.let me know if any error is raised or not?

On Sat, Oct 18, 2014 at 2:57 PM, Parelli Artounian <phorse1@gmail.com> wrote:
Hi Libu,
I have downloaded your module and tried to install it. Then OpenERP didnt list it in modules list. I tried to upgrade my CRM module. After that i have got: " 500 Internal Server Error. The server encountered an internal error and was unable to complete your request. "
And OpenERP goes down.
!!! Please help. I have removed the 'crm' folder from my 'odoo' folder. I could reach the OpenERP and taked backup from my data. But no chance to install/uninstall/upgrade the CRM module. When i click on Sales links, i got this error:

OpenERP Server Error

Traceback (most recent call last):
  File "/opt/odoo/v8/server/openerp/http.py", line 470, in dispatch
    result = self._call_function(**self.params)
  File "/opt/odoo/v8/server/openerp/http.py", line 294, in _call_function
    return checked_call(self.db, *args, **kwargs)
  File "/opt/odoo/v8/server/openerp/service/model.py", line 113, in wrapper
    return f(dbname, *args, **kwargs)
  File "/opt/odoo/v8/server/openerp/http.py", line 291, in checked_call
    return self.endpoint(*a, **kw)
  File "/opt/odoo/v8/server/openerp/http.py", line 638, in __call__
    return self.method(*args, **kw)
  File "/opt/odoo/v8/server/openerp/http.py", line 337, in response_wrap
    response = f(*args, **kw)
  File "/opt/odoo/v8/web/addons/web/controllers/main.py", line 1248, in call_button
    action = self._call_kw(model, method, args, {})
  File "/opt/odoo/v8/web/addons/web/controllers/main.py", line 1236, in _call_kw
    return getattr(request.registry.get(model), method)(request.cr, request.uid, *args, **kwargs)
  File "/opt/odoo/v8/server/openerp/addons/base/module/module.py", line 499, in button_immediate_uninstall
    return self._button_immediate_function(cr, uid, ids, self.button_uninstall, context=context)
  File "/opt/odoo/v8/server/openerp/addons/base/module/module.py", line 479, in _button_immediate_function
    registry = openerp.modules.registry.RegistryManager.new(cr.dbname, update_module=True)
  File "/opt/odoo/v8/server/openerp/modules/registry.py", line 299, in new
    openerp.modules.load_modules(registry._db, force_demo, status, update_module)
  File "/opt/odoo/v8/server/openerp/modules/loading.py", line 407, in load_modules
    registry['ir.module.module'].module_uninstall(cr, SUPERUSER_ID, mod_ids_to_remove)
  File "/opt/odoo/v8/server/openerp/addons/base/module/module.py", line 443, in module_uninstall
    ir_model_constraint._module_data_uninstall(cr, uid, constraint_ids, context)
  File "/opt/odoo/v8/server/openerp/addons/base/ir/ir_model.py", line 521, in _module_data_uninstall
    model_obj = self.pool[model]
  File "/opt/odoo/v8/server/openerp/modules/registry.py", line 106, in __getitem__
    return self.models[model_name]
KeyError: u'crm.lead.assignation'



Please Help Libu.

Thanks, Karolin.


On Wed, Oct 15, 2014 at 5:00 PM, LIBU <libukoshym@mail.odoo.com> wrote:

what is your error..? please put here or what is your requirement ,then only i can help you

--
LIBU
Sent by Odoo Inc. using Odoo about Forum Post False

--
Karolin Ar.
Sent by OpenERP S.A. using Odoo about Forum Post False



--
Thanks&Regards
Libu Koshy
--
LIBU
Sent by Odoo Inc. using Odoo about Forum Post False

--
Karolin Ar.
Sent by OpenERP S.A. using Odoo about Forum Post False



--
Thanks&Regards
Libu Koshy
OdooBot
Hi.
Thank you. I have created new database and copied your status_display folder into my addons folder. But from Settings/modules i cant find it!

On Mon, Oct 20, 2014 at 1:01 PM, libu koshy <libukoshym@gmail.com> wrote:
Hi

Check the username and password ?put password as admin

On Mon, Oct 20, 2014 at 1:58 PM, Parelli Artounian <phorse1@gmail.com> wrote:
Hi. I tried to create new database but i got this error:

OpenERP Server Error

Traceback (most recent call last):
  File "/opt/odoo/v8/server/openerp/http.py", line 470, in dispatch
    result = self._call_function(**self.params)
  File "/opt/odoo/v8/server/openerp/http.py", line 295, in _call_function
    return self.endpoint(*args, **kwargs)
  File "/opt/odoo/v8/server/openerp/http.py", line 638, in __call__
    return self.method(*args, **kw)
  File "/opt/odoo/v8/server/openerp/http.py", line 337, in response_wrap
    response = f(*args, **kw)
  File "/opt/odoo/v8/web/addons/web/controllers/main.py", line 917, in create
    params['create_admin_pwd'])
  File "/opt/odoo/v8/server/openerp/http.py", line 707, in proxy_method
    result = dispatch_rpc(self.service_name, method, args)
  File "/opt/odoo/v8/server/openerp/http.py", line 92, in dispatch_rpc
    result = dispatch(method, params)
  File "/opt/odoo/v8/server/openerp/service/db.py", line 67, in dispatch
    security.check_super(passwd)
  File "/opt/odoo/v8/server/openerp/service/security.py", line 32, in check_super
    raise openerp.exceptions.AccessDenied()
AccessDenied: Access denied.


On Mon, Oct 20, 2014 at 7:58 AM, libu koshy <libukoshym@gmail.com> wrote:
Create one new database and install this module into your new database.let me know if any error is raised or not?

On Sat, Oct 18, 2014 at 2:57 PM, Parelli Artounian <phorse1@gmail.com> wrote:
Hi Libu,
I have downloaded your module and tried to install it. Then OpenERP didnt list it in modules list. I tried to upgrade my CRM module. After that i have got: " 500 Internal Server Error. The server encountered an internal error and was unable to complete your request. "
And OpenERP goes down.
!!! Please help. I have removed the 'crm' folder from my 'odoo' folder. I could reach the OpenERP and taked backup from my data. But no chance to install/uninstall/upgrade the CRM module. When i click on Sales links, i got this error:

OpenERP Server Error

Traceback (most recent call last):
  File "/opt/odoo/v8/server/openerp/http.py", line 470, in dispatch
    result = self._call_function(**self.params)
  File "/opt/odoo/v8/server/openerp/http.py", line 294, in _call_function
    return checked_call(self.db, *args, **kwargs)
  File "/opt/odoo/v8/server/openerp/service/model.py", line 113, in wrapper
    return f(dbname, *args, **kwargs)
  File "/opt/odoo/v8/server/openerp/http.py", line 291, in checked_call
    return self.endpoint(*a, **kw)
  File "/opt/odoo/v8/server/openerp/http.py", line 638, in __call__
    return self.method(*args, **kw)
  File "/opt/odoo/v8/server/openerp/http.py", line 337, in response_wrap
    response = f(*args, **kw)
  File "/opt/odoo/v8/web/addons/web/controllers/main.py", line 1248, in call_button
    action = self._call_kw(model, method, args, {})
  File "/opt/odoo/v8/web/addons/web/controllers/main.py", line 1236, in _call_kw
    return getattr(request.registry.get(model), method)(request.cr, request.uid, *args, **kwargs)
  File "/opt/odoo/v8/server/openerp/addons/base/module/module.py", line 499, in button_immediate_uninstall
    return self._button_immediate_function(cr, uid, ids, self.button_uninstall, context=context)
  File "/opt/odoo/v8/server/openerp/addons/base/module/module.py", line 479, in _button_immediate_function
    registry = openerp.modules.registry.RegistryManager.new(cr.dbname, update_module=True)
  File "/opt/odoo/v8/server/openerp/modules/registry.py", line 299, in new
    openerp.modules.load_modules(registry._db, force_demo, status, update_module)
  File "/opt/odoo/v8/server/openerp/modules/loading.py", line 407, in load_modules
    registry['ir.module.module'].module_uninstall(cr, SUPERUSER_ID, mod_ids_to_remove)
  File "/opt/odoo/v8/server/openerp/addons/base/module/module.py", line 443, in module_uninstall
    ir_model_constraint._module_data_uninstall(cr, uid, constraint_ids, context)
  File "/opt/odoo/v8/server/openerp/addons/base/ir/ir_model.py", line 521, in _module_data_uninstall
    model_obj = self.pool[model]
  File "/opt/odoo/v8/server/openerp/modules/registry.py", line 106, in __getitem__
    return self.models[model_name]
KeyError: u'crm.lead.assignation'



Please Help Libu.

Thanks, Karolin.


On Wed, Oct 15, 2014 at 5:00 PM, LIBU <libukoshym@mail.odoo.com> wrote:

what is your error..? please put here or what is your requirement ,then only i can help you

--
LIBU
Sent by Odoo Inc. using Odoo about Forum Post False

--
Karolin Ar.
Sent by OpenERP S.A. using Odoo about Forum Post False



--
Thanks&Regards
Libu Koshy
--
LIBU
Sent by Odoo Inc. using Odoo about Forum Post False

--
Karolin Ar.
Sent by OpenERP S.A. using Odoo about Forum Post False



--
Thanks&Regards
Libu Koshy
--
LIBU
Sent by Odoo Inc. using Odoo about Forum Post False

OdooBot
first u update module list ,then click on local modules -> extra module and search status display

On Mon, Oct 20, 2014 at 4:12 PM, Parelli Artounian <phorse1@gmail.com> wrote:
Hi.
Thank you. I have created new database and copied your status_display folder into my addons folder. But from Settings/modules i cant find it!

On Mon, Oct 20, 2014 at 1:01 PM, libu koshy <libukoshym@gmail.com> wrote:
Hi

Check the username and password ?put password as admin

On Mon, Oct 20, 2014 at 1:58 PM, Parelli Artounian <phorse1@gmail.com> wrote:
Hi. I tried to create new database but i got this error:

OpenERP Server Error

Traceback (most recent call last):
  File "/opt/odoo/v8/server/openerp/http.py", line 470, in dispatch
    result = self._call_function(**self.params)
  File "/opt/odoo/v8/server/openerp/http.py", line 295, in _call_function
    return self.endpoint(*args, **kwargs)
  File "/opt/odoo/v8/server/openerp/http.py", line 638, in __call__
    return self.method(*args, **kw)
  File "/opt/odoo/v8/server/openerp/http.py", line 337, in response_wrap
    response = f(*args, **kw)
  File "/opt/odoo/v8/web/addons/web/controllers/main.py", line 917, in create
    params['create_admin_pwd'])
  File "/opt/odoo/v8/server/openerp/http.py", line 707, in proxy_method
    result = dispatch_rpc(self.service_name, method, args)
  File "/opt/odoo/v8/server/openerp/http.py", line 92, in dispatch_rpc
    result = dispatch(method, params)
  File "/opt/odoo/v8/server/openerp/service/db.py", line 67, in dispatch
    security.check_super(passwd)
  File "/opt/odoo/v8/server/openerp/service/security.py", line 32, in check_super
    raise openerp.exceptions.AccessDenied()
AccessDenied: Access denied.


On Mon, Oct 20, 2014 at 7:58 AM, libu koshy <libukoshym@gmail.com> wrote:
Create one new database and install this module into your new database.let me know if any error is raised or not?

On Sat, Oct 18, 2014 at 2:57 PM, Parelli Artounian <phorse1@gmail.com> wrote:
Hi Libu,
I have downloaded your module and tried to install it. Then OpenERP didnt list it in modules list. I tried to upgrade my CRM module. After that i have got: " 500 Internal Server Error. The server encountered an internal error and was unable to complete your request. "
And OpenERP goes down.
!!! Please help. I have removed the 'crm' folder from my 'odoo' folder. I could reach the OpenERP and taked backup from my data. But no chance to install/uninstall/upgrade the CRM module. When i click on Sales links, i got this error:

OpenERP Server Error

Traceback (most recent call last):
  File "/opt/odoo/v8/server/openerp/http.py", line 470, in dispatch
    result = self._call_function(**self.params)
  File "/opt/odoo/v8/server/openerp/http.py", line 294, in _call_function
    return checked_call(self.db, *args, **kwargs)
  File "/opt/odoo/v8/server/openerp/service/model.py", line 113, in wrapper
    return f(dbname, *args, **kwargs)
  File "/opt/odoo/v8/server/openerp/http.py", line 291, in checked_call
    return self.endpoint(*a, **kw)
  File "/opt/odoo/v8/server/openerp/http.py", line 638, in __call__
    return self.method(*args, **kw)
  File "/opt/odoo/v8/server/openerp/http.py", line 337, in response_wrap
    response = f(*args, **kw)
  File "/opt/odoo/v8/web/addons/web/controllers/main.py", line 1248, in call_button
    action = self._call_kw(model, method, args, {})
  File "/opt/odoo/v8/web/addons/web/controllers/main.py", line 1236, in _call_kw
    return getattr(request.registry.get(model), method)(request.cr, request.uid, *args, **kwargs)
  File "/opt/odoo/v8/server/openerp/addons/base/module/module.py", line 499, in button_immediate_uninstall
    return self._button_immediate_function(cr, uid, ids, self.button_uninstall, context=context)
  File "/opt/odoo/v8/server/openerp/addons/base/module/module.py", line 479, in _button_immediate_function
    registry = openerp.modules.registry.RegistryManager.new(cr.dbname, update_module=True)
  File "/opt/odoo/v8/server/openerp/modules/registry.py", line 299, in new
    openerp.modules.load_modules(registry._db, force_demo, status, update_module)
  File "/opt/odoo/v8/server/openerp/modules/loading.py", line 407, in load_modules
    registry['ir.module.module'].module_uninstall(cr, SUPERUSER_ID, mod_ids_to_remove)
  File "/opt/odoo/v8/server/openerp/addons/base/module/module.py", line 443, in module_uninstall
    ir_model_constraint._module_data_uninstall(cr, uid, constraint_ids, context)
  File "/opt/odoo/v8/server/openerp/addons/base/ir/ir_model.py", line 521, in _module_data_uninstall
    model_obj = self.pool[model]
  File "/opt/odoo/v8/server/openerp/modules/registry.py", line 106, in __getitem__
    return self.models[model_name]
KeyError: u'crm.lead.assignation'



Please Help Libu.

Thanks, Karolin.


On Wed, Oct 15, 2014 at 5:00 PM, LIBU <libukoshym@mail.odoo.com> wrote:

what is your error..? please put here or what is your requirement ,then only i can help you

--
LIBU
Sent by Odoo Inc. using Odoo about Forum Post False

--
Karolin Ar.
Sent by OpenERP S.A. using Odoo about Forum Post False



--
Thanks&Regards
Libu Koshy
--
LIBU
Sent by Odoo Inc. using Odoo about Forum Post False

--
Karolin Ar.
Sent by OpenERP S.A. using Odoo about Forum Post False



--
Thanks&Regards
Libu Koshy
--
LIBU
Sent by Odoo Inc. using Odoo about Forum Post False

--
Karolin Ar.
Sent by OpenERP S.A. using Odoo about Forum Post False



--
Thanks&Regards
Libu Koshy
OdooBot
go to settings-> update module list ,then click on local modules -> extra module and search status display module

On Mon, Oct 20, 2014 at 4:12 PM, Parelli Artounian <phorse1@gmail.com> wrote:
Hi.
Thank you. I have created new database and copied your status_display folder into my addons folder. But from Settings/modules i cant find it!

On Mon, Oct 20, 2014 at 1:01 PM, libu koshy <libukoshym@gmail.com> wrote:
Hi

Check the username and password ?put password as admin

On Mon, Oct 20, 2014 at 1:58 PM, Parelli Artounian <phorse1@gmail.com> wrote:
Hi. I tried to create new database but i got this error:

OpenERP Server Error

Traceback (most recent call last):
  File "/opt/odoo/v8/server/openerp/http.py", line 470, in dispatch
    result = self._call_function(**self.params)
  File "/opt/odoo/v8/server/openerp/http.py", line 295, in _call_function
    return self.endpoint(*args, **kwargs)
  File "/opt/odoo/v8/server/openerp/http.py", line 638, in __call__
    return self.method(*args, **kw)
  File "/opt/odoo/v8/server/openerp/http.py", line 337, in response_wrap
    response = f(*args, **kw)
  File "/opt/odoo/v8/web/addons/web/controllers/main.py", line 917, in create
    params['create_admin_pwd'])
  File "/opt/odoo/v8/server/openerp/http.py", line 707, in proxy_method
    result = dispatch_rpc(self.service_name, method, args)
  File "/opt/odoo/v8/server/openerp/http.py", line 92, in dispatch_rpc
    result = dispatch(method, params)
  File "/opt/odoo/v8/server/openerp/service/db.py", line 67, in dispatch
    security.check_super(passwd)
  File "/opt/odoo/v8/server/openerp/service/security.py", line 32, in check_super
    raise openerp.exceptions.AccessDenied()
AccessDenied: Access denied.


On Mon, Oct 20, 2014 at 7:58 AM, libu koshy <libukoshym@gmail.com> wrote:
Create one new database and install this module into your new database.let me know if any error is raised or not?

On Sat, Oct 18, 2014 at 2:57 PM, Parelli Artounian <phorse1@gmail.com> wrote:
Hi Libu,
I have downloaded your module and tried to install it. Then OpenERP didnt list it in modules list. I tried to upgrade my CRM module. After that i have got: " 500 Internal Server Error. The server encountered an internal error and was unable to complete your request. "
And OpenERP goes down.
!!! Please help. I have removed the 'crm' folder from my 'odoo' folder. I could reach the OpenERP and taked backup from my data. But no chance to install/uninstall/upgrade the CRM module. When i click on Sales links, i got this error:

OpenERP Server Error

Traceback (most recent call last):
  File "/opt/odoo/v8/server/openerp/http.py", line 470, in dispatch
    result = self._call_function(**self.params)
  File "/opt/odoo/v8/server/openerp/http.py", line 294, in _call_function
    return checked_call(self.db, *args, **kwargs)
  File "/opt/odoo/v8/server/openerp/service/model.py", line 113, in wrapper
    return f(dbname, *args, **kwargs)
  File "/opt/odoo/v8/server/openerp/http.py", line 291, in checked_call
    return self.endpoint(*a, **kw)
  File "/opt/odoo/v8/server/openerp/http.py", line 638, in __call__
    return self.method(*args, **kw)
  File "/opt/odoo/v8/server/openerp/http.py", line 337, in response_wrap
    response = f(*args, **kw)
  File "/opt/odoo/v8/web/addons/web/controllers/main.py", line 1248, in call_button
    action = self._call_kw(model, method, args, {})
  File "/opt/odoo/v8/web/addons/web/controllers/main.py", line 1236, in _call_kw
    return getattr(request.registry.get(model), method)(request.cr, request.uid, *args, **kwargs)
  File "/opt/odoo/v8/server/openerp/addons/base/module/module.py", line 499, in button_immediate_uninstall
    return self._button_immediate_function(cr, uid, ids, self.button_uninstall, context=context)
  File "/opt/odoo/v8/server/openerp/addons/base/module/module.py", line 479, in _button_immediate_function
    registry = openerp.modules.registry.RegistryManager.new(cr.dbname, update_module=True)
  File "/opt/odoo/v8/server/openerp/modules/registry.py", line 299, in new
    openerp.modules.load_modules(registry._db, force_demo, status, update_module)
  File "/opt/odoo/v8/server/openerp/modules/loading.py", line 407, in load_modules
    registry['ir.module.module'].module_uninstall(cr, SUPERUSER_ID, mod_ids_to_remove)
  File "/opt/odoo/v8/server/openerp/addons/base/module/module.py", line 443, in module_uninstall
    ir_model_constraint._module_data_uninstall(cr, uid, constraint_ids, context)
  File "/opt/odoo/v8/server/openerp/addons/base/ir/ir_model.py", line 521, in _module_data_uninstall
    model_obj = self.pool[model]
  File "/opt/odoo/v8/server/openerp/modules/registry.py", line 106, in __getitem__
    return self.models[model_name]
KeyError: u'crm.lead.assignation'



Please Help Libu.

Thanks, Karolin.


On Wed, Oct 15, 2014 at 5:00 PM, LIBU <libukoshym@mail.odoo.com> wrote:

what is your error..? please put here or what is your requirement ,then only i can help you

--
LIBU
Sent by Odoo Inc. using Odoo about Forum Post False

--
Karolin Ar.
Sent by OpenERP S.A. using Odoo about Forum Post False



--
Thanks&Regards
Libu Koshy
--
LIBU
Sent by Odoo Inc. using Odoo about Forum Post False

--
Karolin Ar.
Sent by OpenERP S.A. using Odoo about Forum Post False



--
Thanks&Regards
Libu Koshy
--
LIBU
Sent by Odoo Inc. using Odoo about Forum Post False

--
Karolin Ar.
Sent by OpenERP S.A. using Odoo about Forum Post False



--
Thanks&Regards
Libu Koshy
OdooBot

Also when i try to install/uninstall any app/module i got this error:


OpenERP Server Error

Traceback (most recent call last):
  File "/opt/odoo/v8/server/openerp/http.py", line 470, in dispatch
    result = self._call_function(**self.params)
  File "/opt/odoo/v8/server/openerp/http.py", line 294, in _call_function
    return checked_call(self.db, *args, **kwargs)
  File "/opt/odoo/v8/server/openerp/service/model.py", line 113, in wrapper
    return f(dbname, *args, **kwargs)
  File "/opt/odoo/v8/server/openerp/http.py", line 291, in checked_call
    return self.endpoint(*a, **kw)
  File "/opt/odoo/v8/server/openerp/http.py", line 638, in __call__
    return self.method(*args, **kw)
  File "/opt/odoo/v8/server/openerp/http.py", line 337, in response_wrap
    response = f(*args, **kw)
  File "/opt/odoo/v8/web/addons/web/controllers/main.py", line 1248, in call_button
    action = self._call_kw(model, method, args, {})
  File "/opt/odoo/v8/web/addons/web/controllers/main.py", line 1236, in _call_kw
    return getattr(request.registry.get(model), method)(request.cr, request.uid, *args, **kwargs)
  File "/opt/odoo/v8/server/openerp/addons/base/module/module.py", line 428, in button_immediate_install
    return self._button_immediate_function(cr, uid, ids, self.button_install, context=context)
  File "/opt/odoo/v8/server/openerp/addons/base/module/module.py", line 479, in _button_immediate_function
    registry = openerp.modules.registry.RegistryManager.new(cr.dbname, update_module=True)
  File "/opt/odoo/v8/server/openerp/modules/registry.py", line 299, in new
    openerp.modules.load_modules(registry._db, force_demo, status, update_module)
  File "/opt/odoo/v8/server/openerp/modules/loading.py", line 343, in load_modules
    loaded_modules, update_module)
  File "/opt/odoo/v8/server/openerp/modules/loading.py", line 247, in load_marked_modules
    loaded, processed = load_module_graph(cr, graph, progressdict, report=report, skip_modules=loaded_modules, perform_checks=perform_checks)
  File "/opt/odoo/v8/server/openerp/modules/loading.py", line 149, in load_module_graph
    load_openerp_module(package.name)
  File "/opt/odoo/v8/server/openerp/modules/module.py", line 266, in load_openerp_module
    __import__('openerp.addons.' + module_name)
  File "/opt/odoo/v8/server/openerp/modules/module.py", line 72, in load_module
    mod = imp.load_module('openerp.addons.' + module_part, f, path, descr)
  File "/opt/odoo/v8/addons/m2o-City/__init__.py", line 1, in <module>
    import order_info
  File "/opt/odoo/v8/addons/m2o-City/order_info.py", line 1, in <module>
    from osv import osv,fields
ImportError: No module named osv



On Mon, Oct 20, 2014 at 2:31 PM, libu koshy <libukoshym@gmail.com> wrote:
go to settings-> update module list ,then click on local modules -> extra module and search status display module

On Mon, Oct 20, 2014 at 4:12 PM, Parelli Artounian <phorse1@gmail.com> wrote:
Hi.
Thank you. I have created new database and copied your status_display folder into my addons folder. But from Settings/modules i cant find it!

On Mon, Oct 20, 2014 at 1:01 PM, libu koshy <libukoshym@gmail.com> wrote:
Hi

Check the username and password ?put password as admin

On Mon, Oct 20, 2014 at 1:58 PM, Parelli Artounian <phorse1@gmail.com> wrote:
Hi. I tried to create new database but i got this error:

OpenERP Server Error

Traceback (most recent call last):
  File "/opt/odoo/v8/server/openerp/http.py", line 470, in dispatch
    result = self._call_function(**self.params)
  File "/opt/odoo/v8/server/openerp/http.py", line 295, in _call_function
    return self.endpoint(*args, **kwargs)
  File "/opt/odoo/v8/server/openerp/http.py", line 638, in __call__
    return self.method(*args, **kw)
  File "/opt/odoo/v8/server/openerp/http.py", line 337, in response_wrap
    response = f(*args, **kw)
  File "/opt/odoo/v8/web/addons/web/controllers/main.py", line 917, in create
    params['create_admin_pwd'])
  File "/opt/odoo/v8/server/openerp/http.py", line 707, in proxy_method
    result = dispatch_rpc(self.service_name, method, args)
  File "/opt/odoo/v8/server/openerp/http.py", line 92, in dispatch_rpc
    result = dispatch(method, params)
  File "/opt/odoo/v8/server/openerp/service/db.py", line 67, in dispatch
    security.check_super(passwd)
  File "/opt/odoo/v8/server/openerp/service/security.py", line 32, in check_super
    raise openerp.exceptions.AccessDenied()
AccessDenied: Access denied.


On Mon, Oct 20, 2014 at 7:58 AM, libu koshy <libukoshym@gmail.com> wrote:
Create one new database and install this module into your new database.let me know if any error is raised or not?

On Sat, Oct 18, 2014 at 2:57 PM, Parelli Artounian <phorse1@gmail.com> wrote:
Hi Libu,
I have downloaded your module and tried to install it. Then OpenERP didnt list it in modules list. I tried to upgrade my CRM module. After that i have got: " 500 Internal Server Error. The server encountered an internal error and was unable to complete your request. "
And OpenERP goes down.
!!! Please help. I have removed the 'crm' folder from my 'odoo' folder. I could reach the OpenERP and taked backup from my data. But no chance to install/uninstall/upgrade the CRM module. When i click on Sales links, i got this error:

OpenERP Server Error

Traceback (most recent call last):
  File "/opt/odoo/v8/server/openerp/http.py", line 470, in dispatch
    result = self._call_function(**self.params)
  File "/opt/odoo/v8/server/openerp/http.py", line 294, in _call_function
    return checked_call(self.db, *args, **kwargs)
  File "/opt/odoo/v8/server/openerp/service/model.py", line 113, in wrapper
    return f(dbname, *args, **kwargs)
  File "/opt/odoo/v8/server/openerp/http.py", line 291, in checked_call
    return self.endpoint(*a, **kw)
  File "/opt/odoo/v8/server/openerp/http.py", line 638, in __call__
    return self.method(*args, **kw)
  File "/opt/odoo/v8/server/openerp/http.py", line 337, in response_wrap
    response = f(*args, **kw)
  File "/opt/odoo/v8/web/addons/web/controllers/main.py", line 1248, in call_button
    action = self._call_kw(model, method, args, {})
  File "/opt/odoo/v8/web/addons/web/controllers/main.py", line 1236, in _call_kw
    return getattr(request.registry.get(model), method)(request.cr, request.uid, *args, **kwargs)
  File "/opt/odoo/v8/server/openerp/addons/base/module/module.py", line 499, in button_immediate_uninstall
    return self._button_immediate_function(cr, uid, ids, self.button_uninstall, context=context)
  File "/opt/odoo/v8/server/openerp/addons/base/module/module.py", line 479, in _button_immediate_function
    registry = openerp.modules.registry.RegistryManager.new(cr.dbname, update_module=True)
  File "/opt/odoo/v8/server/openerp/modules/registry.py", line 299, in new
    openerp.modules.load_modules(registry._db, force_demo, status, update_module)
  File "/opt/odoo/v8/server/openerp/modules/loading.py", line 407, in load_modules
    registry['ir.module.module'].module_uninstall(cr, SUPERUSER_ID, mod_ids_to_remove)
  File "/opt/odoo/v8/server/openerp/addons/base/module/module.py", line 443, in module_uninstall
    ir_model_constraint._module_data_uninstall(cr, uid, constraint_ids, context)
  File "/opt/odoo/v8/server/openerp/addons/base/ir/ir_model.py", line 521, in _module_data_uninstall
    model_obj = self.pool[model]
  File "/opt/odoo/v8/server/openerp/modules/registry.py", line 106, in __getitem__
    return self.models[model_name]
KeyError: u'crm.lead.assignation'



Please Help Libu.

Thanks, Karolin.


On Wed, Oct 15, 2014 at 5:00 PM, LIBU <libukoshym@mail.odoo.com> wrote:

what is your error..? please put here or what is your requirement ,then only i can help you

--
LIBU
Sent by Odoo Inc. using Odoo about Forum Post False

--
Karolin Ar.
Sent by OpenERP S.A. using Odoo about Forum Post False



--
Thanks&Regards
Libu Koshy
--
LIBU
Sent by Odoo Inc. using Odoo about Forum Post False

--
Karolin Ar.
Sent by OpenERP S.A. using Odoo about Forum Post False



--
Thanks&Regards
Libu Koshy
--
LIBU
Sent by Odoo Inc. using Odoo about Forum Post False

--
Karolin Ar.
Sent by OpenERP S.A. using Odoo about Forum Post False



--
Thanks&Regards
Libu Koshy
--
LIBU
Sent by Odoo Inc. using Odoo about Forum Post False

OdooBot
open  this file ==order_info.py and add

remove the first file ..

from openerp.osv import fields, osv



On Mon, Oct 20, 2014 at 4:46 PM, Parelli Artounian <phorse1@gmail.com> wrote:

Also when i try to install/uninstall any app/module i got this error:


OpenERP Server Error

Traceback (most recent call last):
  File "/opt/odoo/v8/server/openerp/http.py", line 470, in dispatch
    result = self._call_function(**self.params)
  File "/opt/odoo/v8/server/openerp/http.py", line 294, in _call_function
    return checked_call(self.db, *args, **kwargs)
  File "/opt/odoo/v8/server/openerp/service/model.py", line 113, in wrapper
    return f(dbname, *args, **kwargs)
  File "/opt/odoo/v8/server/openerp/http.py", line 291, in checked_call
    return self.endpoint(*a, **kw)
  File "/opt/odoo/v8/server/openerp/http.py", line 638, in __call__
    return self.method(*args, **kw)
  File "/opt/odoo/v8/server/openerp/http.py", line 337, in response_wrap
    response = f(*args, **kw)
  File "/opt/odoo/v8/web/addons/web/controllers/main.py", line 1248, in call_button
    action = self._call_kw(model, method, args, {})
  File "/opt/odoo/v8/web/addons/web/controllers/main.py", line 1236, in _call_kw
    return getattr(request.registry.get(model), method)(request.cr, request.uid, *args, **kwargs)
  File "/opt/odoo/v8/server/openerp/addons/base/module/module.py", line 428, in button_immediate_install
    return self._button_immediate_function(cr, uid, ids, self.button_install, context=context)
  File "/opt/odoo/v8/server/openerp/addons/base/module/module.py", line 479, in _button_immediate_function
    registry = openerp.modules.registry.RegistryManager.new(cr.dbname, update_module=True)
  File "/opt/odoo/v8/server/openerp/modules/registry.py", line 299, in new
    openerp.modules.load_modules(registry._db, force_demo, status, update_module)
  File "/opt/odoo/v8/server/openerp/modules/loading.py", line 343, in load_modules
    loaded_modules, update_module)
  File "/opt/odoo/v8/server/openerp/modules/loading.py", line 247, in load_marked_modules
    loaded, processed = load_module_graph(cr, graph, progressdict, report=report, skip_modules=loaded_modules, perform_checks=perform_checks)
  File "/opt/odoo/v8/server/openerp/modules/loading.py", line 149, in load_module_graph
    load_openerp_module(package.name)
  File "/opt/odoo/v8/server/openerp/modules/module.py", line 266, in load_openerp_module
    __import__('openerp.addons.' + module_name)
  File "/opt/odoo/v8/server/openerp/modules/module.py", line 72, in load_module
    mod = imp.load_module('openerp.addons.' + module_part, f, path, descr)
  File "/opt/odoo/v8/addons/m2o-City/__init__.py", line 1, in <module>
    import order_info
  File "/opt/odoo/v8/addons/m2o-City/order_info.py", line 1, in <module>
    from osv import osv,fields
ImportError: No module named osv



On Mon, Oct 20, 2014 at 2:31 PM, libu koshy <libukoshym@gmail.com> wrote:
go to settings-> update module list ,then click on local modules -> extra module and search status display module

On Mon, Oct 20, 2014 at 4:12 PM, Parelli Artounian <phorse1@gmail.com> wrote:
Hi.
Thank you. I have created new database and copied your status_display folder into my addons folder. But from Settings/modules i cant find it!

On Mon, Oct 20, 2014 at 1:01 PM, libu koshy <libukoshym@gmail.com> wrote:
Hi

Check the username and password ?put password as admin

On Mon, Oct 20, 2014 at 1:58 PM, Parelli Artounian <phorse1@gmail.com> wrote:
Hi. I tried to create new database but i got this error:

OpenERP Server Error

Traceback (most recent call last):
  File "/opt/odoo/v8/server/openerp/http.py", line 470, in dispatch
    result = self._call_function(**self.params)
  File "/opt/odoo/v8/server/openerp/http.py", line 295, in _call_function
    return self.endpoint(*args, **kwargs)
  File "/opt/odoo/v8/server/openerp/http.py", line 638, in __call__
    return self.method(*args, **kw)
  File "/opt/odoo/v8/server/openerp/http.py", line 337, in response_wrap
    response = f(*args, **kw)
  File "/opt/odoo/v8/web/addons/web/controllers/main.py", line 917, in create
    params['create_admin_pwd'])
  File "/opt/odoo/v8/server/openerp/http.py", line 707, in proxy_method
    result = dispatch_rpc(self.service_name, method, args)
  File "/opt/odoo/v8/server/openerp/http.py", line 92, in dispatch_rpc
    result = dispatch(method, params)
  File "/opt/odoo/v8/server/openerp/service/db.py", line 67, in dispatch
    security.check_super(passwd)
  File "/opt/odoo/v8/server/openerp/service/security.py", line 32, in check_super
    raise openerp.exceptions.AccessDenied()
AccessDenied: Access denied.


On Mon, Oct 20, 2014 at 7:58 AM, libu koshy <libukoshym@gmail.com> wrote:
Create one new database and install this module into your new database.let me know if any error is raised or not?

On Sat, Oct 18, 2014 at 2:57 PM, Parelli Artounian <phorse1@gmail.com> wrote:
Hi Libu,
I have downloaded your module and tried to install it. Then OpenERP didnt list it in modules list. I tried to upgrade my CRM module. After that i have got: " 500 Internal Server Error. The server encountered an internal error and was unable to complete your request. "
And OpenERP goes down.
!!! Please help. I have removed the 'crm' folder from my 'odoo' folder. I could reach the OpenERP and taked backup from my data. But no chance to install/uninstall/upgrade the CRM module. When i click on Sales links, i got this error:

OpenERP Server Error

Traceback (most recent call last):
  File "/opt/odoo/v8/server/openerp/http.py", line 470, in dispatch
    result = self._call_function(**self.params)
  File "/opt/odoo/v8/server/openerp/http.py", line 294, in _call_function
    return checked_call(self.db, *args, **kwargs)
  File "/opt/odoo/v8/server/openerp/service/model.py", line 113, in wrapper
    return f(dbname, *args, **kwargs)
  File "/opt/odoo/v8/server/openerp/http.py", line 291, in checked_call
    return self.endpoint(*a, **kw)
  File "/opt/odoo/v8/server/openerp/http.py", line 638, in __call__
    return self.method(*args, **kw)
  File "/opt/odoo/v8/server/openerp/http.py", line 337, in response_wrap
    response = f(*args, **kw)
  File "/opt/odoo/v8/web/addons/web/controllers/main.py", line 1248, in call_button
    action = self._call_kw(model, method, args, {})
  File "/opt/odoo/v8/web/addons/web/controllers/main.py", line 1236, in _call_kw
    return getattr(request.registry.get(model), method)(request.cr, request.uid, *args, **kwargs)
  File "/opt/odoo/v8/server/openerp/addons/base/module/module.py", line 499, in button_immediate_uninstall
    return self._button_immediate_function(cr, uid, ids, self.button_uninstall, context=context)
  File "/opt/odoo/v8/server/openerp/addons/base/module/module.py", line 479, in _button_immediate_function
    registry = openerp.modules.registry.RegistryManager.new(cr.dbname, update_module=True)
  File "/opt/odoo/v8/server/openerp/modules/registry.py", line 299, in new
    openerp.modules.load_modules(registry._db, force_demo, status, update_module)
  File "/opt/odoo/v8/server/openerp/modules/loading.py", line 407, in load_modules
    registry['ir.module.module'].module_uninstall(cr, SUPERUSER_ID, mod_ids_to_remove)
  File "/opt/odoo/v8/server/openerp/addons/base/module/module.py", line 443, in module_uninstall
    ir_model_constraint._module_data_uninstall(cr, uid, constraint_ids, context)
  File "/opt/odoo/v8/server/openerp/addons/base/ir/ir_model.py", line 521, in _module_data_uninstall
    model_obj = self.pool[model]
  File "/opt/odoo/v8/server/openerp/modules/registry.py", line 106, in __getitem__
    return self.models[model_name]
KeyError: u'crm.lead.assignation'



Please Help Libu.

Thanks, Karolin.


On Wed, Oct 15, 2014 at 5:00 PM, LIBU <libukoshym@mail.odoo.com> wrote:

what is your error..? please put here or what is your requirement ,then only i can help you

--
LIBU
Sent by Odoo Inc. using Odoo about Forum Post False

--
Karolin Ar.
Sent by OpenERP S.A. using Odoo about Forum Post False



--
Thanks&Regards
Libu Koshy
--
LIBU
Sent by Odoo Inc. using Odoo about Forum Post False

--
Karolin Ar.
Sent by OpenERP S.A. using Odoo about Forum Post False



--
Thanks&Regards
Libu Koshy
--
LIBU
Sent by Odoo Inc. using Odoo about Forum Post False

--
Karolin Ar.
Sent by OpenERP S.A. using Odoo about Forum Post False



--
Thanks&Regards
Libu Koshy
--
LIBU
Sent by Odoo Inc. using Odoo about Forum Post False

--
Karolin Ar.
Sent by OpenERP S.A. using Odoo about Forum Post False



--
Thanks&Regards
Libu Koshy
OdooBot
open  this file ==order_info.py and add

remove the first line from osv import osv,fields  and add the below line

from openerp.osv import fields, osv

On Mon, Oct 20, 2014 at 4:49 PM, libu koshy <libukoshym@gmail.com> wrote:
open  this file ==order_info.py and add

remove the first file ..

from openerp.osv import fields, osv



On Mon, Oct 20, 2014 at 4:46 PM, Parelli Artounian <phorse1@gmail.com> wrote:

Also when i try to install/uninstall any app/module i got this error:


OpenERP Server Error

Traceback (most recent call last):
  File "/opt/odoo/v8/server/openerp/http.py", line 470, in dispatch
    result = self._call_function(**self.params)
  File "/opt/odoo/v8/server/openerp/http.py", line 294, in _call_function
    return checked_call(self.db, *args, **kwargs)
  File "/opt/odoo/v8/server/openerp/service/model.py", line 113, in wrapper
    return f(dbname, *args, **kwargs)
  File "/opt/odoo/v8/server/openerp/http.py", line 291, in checked_call
    return self.endpoint(*a, **kw)
  File "/opt/odoo/v8/server/openerp/http.py", line 638, in __call__
    return self.method(*args, **kw)
  File "/opt/odoo/v8/server/openerp/http.py", line 337, in response_wrap
    response = f(*args, **kw)
  File "/opt/odoo/v8/web/addons/web/controllers/main.py", line 1248, in call_button
    action = self._call_kw(model, method, args, {})
  File "/opt/odoo/v8/web/addons/web/controllers/main.py", line 1236, in _call_kw
    return getattr(request.registry.get(model), method)(request.cr, request.uid, *args, **kwargs)
  File "/opt/odoo/v8/server/openerp/addons/base/module/module.py", line 428, in button_immediate_install
    return self._button_immediate_function(cr, uid, ids, self.button_install, context=context)
  File "/opt/odoo/v8/server/openerp/addons/base/module/module.py", line 479, in _button_immediate_function
    registry = openerp.modules.registry.RegistryManager.new(cr.dbname, update_module=True)
  File "/opt/odoo/v8/server/openerp/modules/registry.py", line 299, in new
    openerp.modules.load_modules(registry._db, force_demo, status, update_module)
  File "/opt/odoo/v8/server/openerp/modules/loading.py", line 343, in load_modules
    loaded_modules, update_module)
  File "/opt/odoo/v8/server/openerp/modules/loading.py", line 247, in load_marked_modules
    loaded, processed = load_module_graph(cr, graph, progressdict, report=report, skip_modules=loaded_modules, perform_checks=perform_checks)
  File "/opt/odoo/v8/server/openerp/modules/loading.py", line 149, in load_module_graph
    load_openerp_module(package.name)
  File "/opt/odoo/v8/server/openerp/modules/module.py", line 266, in load_openerp_module
    __import__('openerp.addons.' + module_name)
  File "/opt/odoo/v8/server/openerp/modules/module.py", line 72, in load_module
    mod = imp.load_module('openerp.addons.' + module_part, f, path, descr)
  File "/opt/odoo/v8/addons/m2o-City/__init__.py", line 1, in <module>
    import order_info
  File "/opt/odoo/v8/addons/m2o-City/order_info.py", line 1, in <module>
    from osv import osv,fields
ImportError: No module named osv



On Mon, Oct 20, 2014 at 2:31 PM, libu koshy <libukoshym@gmail.com> wrote:
go to settings-> update module list ,then click on local modules -> extra module and search status display module

On Mon, Oct 20, 2014 at 4:12 PM, Parelli Artounian <phorse1@gmail.com> wrote:
Hi.
Thank you. I have created new database and copied your status_display folder into my addons folder. But from Settings/modules i cant find it!

On Mon, Oct 20, 2014 at 1:01 PM, libu koshy <libukoshym@gmail.com> wrote:
Hi

Check the username and password ?put password as admin

On Mon, Oct 20, 2014 at 1:58 PM, Parelli Artounian <phorse1@gmail.com> wrote:
Hi. I tried to create new database but i got this error:

OpenERP Server Error

Traceback (most recent call last):
  File "/opt/odoo/v8/server/openerp/http.py", line 470, in dispatch
    result = self._call_function(**self.params)
  File "/opt/odoo/v8/server/openerp/http.py", line 295, in _call_function
    return self.endpoint(*args, **kwargs)
  File "/opt/odoo/v8/server/openerp/http.py", line 638, in __call__
    return self.method(*args, **kw)
  File "/opt/odoo/v8/server/openerp/http.py", line 337, in response_wrap
    response = f(*args, **kw)
  File "/opt/odoo/v8/web/addons/web/controllers/main.py", line 917, in create
    params['create_admin_pwd'])
  File "/opt/odoo/v8/server/openerp/http.py", line 707, in proxy_method
    result = dispatch_rpc(self.service_name, method, args)
  File "/opt/odoo/v8/server/openerp/http.py", line 92, in dispatch_rpc
    result = dispatch(method, params)
  File "/opt/odoo/v8/server/openerp/service/db.py", line 67, in dispatch
    security.check_super(passwd)
  File "/opt/odoo/v8/server/openerp/service/security.py", line 32, in check_super
    raise openerp.exceptions.AccessDenied()
AccessDenied: Access denied.


On Mon, Oct 20, 2014 at 7:58 AM, libu koshy <libukoshym@gmail.com> wrote:
Create one new database and install this module into your new database.let me know if any error is raised or not?

On Sat, Oct 18, 2014 at 2:57 PM, Parelli Artounian <phorse1@gmail.com> wrote:
Hi Libu,
I have downloaded your module and tried to install it. Then OpenERP didnt list it in modules list. I tried to upgrade my CRM module. After that i have got: " 500 Internal Server Error. The server encountered an internal error and was unable to complete your request. "
And OpenERP goes down.
!!! Please help. I have removed the 'crm' folder from my 'odoo' folder. I could reach the OpenERP and taked backup from my data. But no chance to install/uninstall/upgrade the CRM module. When i click on Sales links, i got this error:

OpenERP Server Error

Traceback (most recent call last):
  File "/opt/odoo/v8/server/openerp/http.py", line 470, in dispatch
    result = self._call_function(**self.params)
  File "/opt/odoo/v8/server/openerp/http.py", line 294, in _call_function
    return checked_call(self.db, *args, **kwargs)
  File "/opt/odoo/v8/server/openerp/service/model.py", line 113, in wrapper
    return f(dbname, *args, **kwargs)
  File "/opt/odoo/v8/server/openerp/http.py", line 291, in checked_call
    return self.endpoint(*a, **kw)
  File "/opt/odoo/v8/server/openerp/http.py", line 638, in __call__
    return self.method(*args, **kw)
  File "/opt/odoo/v8/server/openerp/http.py", line 337, in response_wrap
    response = f(*args, **kw)
  File "/opt/odoo/v8/web/addons/web/controllers/main.py", line 1248, in call_button
    action = self._call_kw(model, method, args, {})
  File "/opt/odoo/v8/web/addons/web/controllers/main.py", line 1236, in _call_kw
    return getattr(request.registry.get(model), method)(request.cr, request.uid, *args, **kwargs)
  File "/opt/odoo/v8/server/openerp/addons/base/module/module.py", line 499, in button_immediate_uninstall
    return self._button_immediate_function(cr, uid, ids, self.button_uninstall, context=context)
  File "/opt/odoo/v8/server/openerp/addons/base/module/module.py", line 479, in _button_immediate_function
    registry = openerp.modules.registry.RegistryManager.new(cr.dbname, update_module=True)
  File "/opt/odoo/v8/server/openerp/modules/registry.py", line 299, in new
    openerp.modules.load_modules(registry._db, force_demo, status, update_module)
  File "/opt/odoo/v8/server/openerp/modules/loading.py", line 407, in load_modules
    registry['ir.module.module'].module_uninstall(cr, SUPERUSER_ID, mod_ids_to_remove)
  File "/opt/odoo/v8/server/openerp/addons/base/module/module.py", line 443, in module_uninstall
    ir_model_constraint._module_data_uninstall(cr, uid, constraint_ids, context)
  File "/opt/odoo/v8/server/openerp/addons/base/ir/ir_model.py", line 521, in _module_data_uninstall
    model_obj = self.pool[model]
  File "/opt/odoo/v8/server/openerp/modules/registry.py", line 106, in __getitem__
    return self.models[model_name]
KeyError: u'crm.lead.assignation'



Please Help Libu.

Thanks, Karolin.


On Wed, Oct 15, 2014 at 5:00 PM, LIBU <libukoshym@mail.odoo.com> wrote:

what is your error..? please put here or what is your requirement ,then only i can help you

--
LIBU
Sent by Odoo Inc. using Odoo about Forum Post False

--
Karolin Ar.
Sent by OpenERP S.A. using Odoo about Forum Post False



--
Thanks&Regards
Libu Koshy
--
LIBU
Sent by Odoo Inc. using Odoo about Forum Post False

--
Karolin Ar.
Sent by OpenERP S.A. using Odoo about Forum Post False



--
Thanks&Regards
Libu Koshy
--
LIBU
Sent by Odoo Inc. using Odoo about Forum Post False

--
Karolin Ar.
Sent by OpenERP S.A. using Odoo about Forum Post False



--
Thanks&Regards
Libu Koshy
--
LIBU
Sent by Odoo Inc. using Odoo about Forum Post False

--
Karolin Ar.
Sent by OpenERP S.A. using Odoo about Forum Post False



--
Thanks&Regards
Libu Koshy



--
Thanks&Regards
Libu Koshy
OdooBot
Libu,

Thank you. I have installed your module. But if you create a customer and fill its phone#, then open from SO, choose that customer, the phone field wouldnt fill automatically.
I mean the customer-name isnot link to phone field.
I need relatioship between them not unrelated fields!

On Mon, Oct 20, 2014 at 2:50 PM, libu koshy <libukoshym@gmail.com> wrote:
open  this file ==order_info.py and add

remove the first line from osv import osv,fields  and add the below line

from openerp.osv import fields, osv

On Mon, Oct 20, 2014 at 4:49 PM, libu koshy <libukoshym@gmail.com> wrote:
open  this file ==order_info.py and add

remove the first file ..

from openerp.osv import fields, osv



On Mon, Oct 20, 2014 at 4:46 PM, Parelli Artounian <phorse1@gmail.com> wrote:

Also when i try to install/uninstall any app/module i got this error:


OpenERP Server Error

Traceback (most recent call last):
  File "/opt/odoo/v8/server/openerp/http.py", line 470, in dispatch
    result = self._call_function(**self.params)
  File "/opt/odoo/v8/server/openerp/http.py", line 294, in _call_function
    return checked_call(self.db, *args, **kwargs)
  File "/opt/odoo/v8/server/openerp/service/model.py", line 113, in wrapper
    return f(dbname, *args, **kwargs)
  File "/opt/odoo/v8/server/openerp/http.py", line 291, in checked_call
    return self.endpoint(*a, **kw)
  File "/opt/odoo/v8/server/openerp/http.py", line 638, in __call__
    return self.method(*args, **kw)
  File "/opt/odoo/v8/server/openerp/http.py", line 337, in response_wrap
    response = f(*args, **kw)
  File "/opt/odoo/v8/web/addons/web/controllers/main.py", line 1248, in call_button
    action = self._call_kw(model, method, args, {})
  File "/opt/odoo/v8/web/addons/web/controllers/main.py", line 1236, in _call_kw
    return getattr(request.registry.get(model), method)(request.cr, request.uid, *args, **kwargs)
  File "/opt/odoo/v8/server/openerp/addons/base/module/module.py", line 428, in button_immediate_install
    return self._button_immediate_function(cr, uid, ids, self.button_install, context=context)
  File "/opt/odoo/v8/server/openerp/addons/base/module/module.py", line 479, in _button_immediate_function
    registry = openerp.modules.registry.RegistryManager.new(cr.dbname, update_module=True)
  File "/opt/odoo/v8/server/openerp/modules/registry.py", line 299, in new
    openerp.modules.load_modules(registry._db, force_demo, status, update_module)
  File "/opt/odoo/v8/server/openerp/modules/loading.py", line 343, in load_modules
    loaded_modules, update_module)
  File "/opt/odoo/v8/server/openerp/modules/loading.py", line 247, in load_marked_modules
    loaded, processed = load_module_graph(cr, graph, progressdict, report=report, skip_modules=loaded_modules, perform_checks=perform_checks)
  File "/opt/odoo/v8/server/openerp/modules/loading.py", line 149, in load_module_graph
    load_openerp_module(package.name)
  File "/opt/odoo/v8/server/openerp/modules/module.py", line 266, in load_openerp_module
    __import__('openerp.addons.' + module_name)
  File "/opt/odoo/v8/server/openerp/modules/module.py", line 72, in load_module
    mod = imp.load_module('openerp.addons.' + module_part, f, path, descr)
  File "/opt/odoo/v8/addons/m2o-City/__init__.py", line 1, in <module>
    import order_info
  File "/opt/odoo/v8/addons/m2o-City/order_info.py", line 1, in <module>
    from osv import osv,fields
ImportError: No module named osv



On Mon, Oct 20, 2014 at 2:31 PM, libu koshy <libukoshym@gmail.com> wrote:
go to settings-> update module list ,then click on local modules -> extra module and search status display module

On Mon, Oct 20, 2014 at 4:12 PM, Parelli Artounian <phorse1@gmail.com> wrote:
Hi.
Thank you. I have created new database and copied your status_display folder into my addons folder. But from Settings/modules i cant find it!

On Mon, Oct 20, 2014 at 1:01 PM, libu koshy <libukoshym@gmail.com> wrote:
Hi

Check the username and password ?put password as admin

On Mon, Oct 20, 2014 at 1:58 PM, Parelli Artounian <phorse1@gmail.com> wrote:
Hi. I tried to create new database but i got this error:

OpenERP Server Error

Traceback (most recent call last):
  File "/opt/odoo/v8/server/openerp/http.py", line 470, in dispatch
    result = self._call_function(**self.params)
  File "/opt/odoo/v8/server/openerp/http.py", line 295, in _call_function
    return self.endpoint(*args, **kwargs)
  File "/opt/odoo/v8/server/openerp/http.py", line 638, in __call__
    return self.method(*args, **kw)
  File "/opt/odoo/v8/server/openerp/http.py", line 337, in response_wrap
    response = f(*args, **kw)
  File "/opt/odoo/v8/web/addons/web/controllers/main.py", line 917, in create
    params['create_admin_pwd'])
  File "/opt/odoo/v8/server/openerp/http.py", line 707, in proxy_method
    result = dispatch_rpc(self.service_name, method, args)
  File "/opt/odoo/v8/server/openerp/http.py", line 92, in dispatch_rpc
    result = dispatch(method, params)
  File "/opt/odoo/v8/server/openerp/service/db.py", line 67, in dispatch
    security.check_super(passwd)
  File "/opt/odoo/v8/server/openerp/service/security.py", line 32, in check_super
    raise openerp.exceptions.AccessDenied()
AccessDenied: Access denied.


On Mon, Oct 20, 2014 at 7:58 AM, libu koshy <libukoshym@gmail.com> wrote:
Create one new database and install this module into your new database.let me know if any error is raised or not?

On Sat, Oct 18, 2014 at 2:57 PM, Parelli Artounian <phorse1@gmail.com> wrote:
Hi Libu,
I have downloaded your module and tried to install it. Then OpenERP didnt list it in modules list. I tried to upgrade my CRM module. After that i have got: " 500 Internal Server Error. The server encountered an internal error and was unable to complete your request. "
And OpenERP goes down.
!!! Please help. I have removed the 'crm' folder from my 'odoo' folder. I could reach the OpenERP and taked backup from my data. But no chance to install/uninstall/upgrade the CRM module. When i click on Sales links, i got this error:

OpenERP Server Error

Traceback (most recent call last):
  File "/opt/odoo/v8/server/openerp/http.py", line 470, in dispatch
    result = self._call_function(**self.params)
  File "/opt/odoo/v8/server/openerp/http.py", line 294, in _call_function
    return checked_call(self.db, *args, **kwargs)
  File "/opt/odoo/v8/server/openerp/service/model.py", line 113, in wrapper
    return f(dbname, *args, **kwargs)
  File "/opt/odoo/v8/server/openerp/http.py", line 291, in checked_call
    return self.endpoint(*a, **kw)
  File "/opt/odoo/v8/server/openerp/http.py", line 638, in __call__
    return self.method(*args, **kw)
  File "/opt/odoo/v8/server/openerp/http.py", line 337, in response_wrap
    response = f(*args, **kw)
  File "/opt/odoo/v8/web/addons/web/controllers/main.py", line 1248, in call_button
    action = self._call_kw(model, method, args, {})
  File "/opt/odoo/v8/web/addons/web/controllers/main.py", line 1236, in _call_kw
    return getattr(request.registry.get(model), method)(request.cr, request.uid, *args, **kwargs)
  File "/opt/odoo/v8/server/openerp/addons/base/module/module.py", line 499, in button_immediate_uninstall
    return self._button_immediate_function(cr, uid, ids, self.button_uninstall, context=context)
  File "/opt/odoo/v8/server/openerp/addons/base/module/module.py", line 479, in _button_immediate_function
    registry = openerp.modules.registry.RegistryManager.new(cr.dbname, update_module=True)
  File "/opt/odoo/v8/server/openerp/modules/registry.py", line 299, in new
    openerp.modules.load_modules(registry._db, force_demo, status, update_module)
  File "/opt/odoo/v8/server/openerp/modules/loading.py", line 407, in load_modules
    registry['ir.module.module'].module_uninstall(cr, SUPERUSER_ID, mod_ids_to_remove)
  File "/opt/odoo/v8/server/openerp/addons/base/module/module.py", line 443, in module_uninstall
    ir_model_constraint._module_data_uninstall(cr, uid, constraint_ids, context)
  File "/opt/odoo/v8/server/openerp/addons/base/ir/ir_model.py", line 521, in _module_data_uninstall
    model_obj = self.pool[model]
  File "/opt/odoo/v8/server/openerp/modules/registry.py", line 106, in __getitem__
    return self.models[model_name]
KeyError: u'crm.lead.assignation'



Please Help Libu.

Thanks, Karolin.


On Wed, Oct 15, 2014 at 5:00 PM, LIBU <libukoshym@mail.odoo.com> wrote:

what is your error..? please put here or what is your requirement ,then only i can help you

--
LIBU
Sent by Odoo Inc. using Odoo about Forum Post False

--
Karolin Ar.
Sent by OpenERP S.A. using Odoo about Forum Post False



--
Thanks&Regards
Libu Koshy
--
LIBU
Sent by Odoo Inc. using Odoo about Forum Post False

--
Karolin Ar.
Sent by OpenERP S.A. using Odoo about Forum Post False



--
Thanks&Regards
Libu Koshy
--
LIBU
Sent by Odoo Inc. using Odoo about Forum Post False

--
Karolin Ar.
Sent by OpenERP S.A. using Odoo about Forum Post False



--
Thanks&Regards
Libu Koshy
--
LIBU
Sent by Odoo Inc. using Odoo about Forum Post False

--
Karolin Ar.
Sent by OpenERP S.A. using Odoo about Forum Post False



--
Thanks&Regards
Libu Koshy



--
Thanks&Regards
Libu Koshy
--
LIBU
Sent by Odoo Inc. using Odoo about Forum Post False

Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Registrar-se
Community
  • Tutorials
  • Documentació
  • Fòrum
Codi obert
  • Descarregar
  • GitHub
  • Runbot
  • Traduccions
Serveis
  • Allotjament a Odoo.sh
  • Suport
  • Actualització
  • Desenvolupaments personalitzats
  • Educació
  • Troba un comptable
  • Troba un partner
  • Converteix-te en partner
Sobre nosaltres
  • La nostra empresa
  • Actius de marca
  • Contacta amb nosaltres
  • Llocs de treball
  • Esdeveniments
  • Pòdcast
  • Blog
  • Clients
  • Informació legal • Privacitat
  • Seguretat
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo és un conjunt d'aplicacions empresarials de codi obert que cobreix totes les necessitats de la teva empresa: CRM, comerç electrònic, comptabilitat, inventari, punt de venda, gestió de projectes, etc.

La proposta única de valor d'Odoo és ser molt fàcil d'utilitzar i estar totalment integrat, ambdues alhora.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now