Skip to Content
Odoo Menu
  • Log ind
  • Prøv gratis
  • apps
    Økonomi
    • Bogføring
    • Fakturering
    • Udgifter
    • Regneark (BI)
    • Dokumenter
    • e-Signatur
    Salg
    • CRM
    • Salg
    • POS Butik
    • POS Restaurant
    • Abonnementer
    • Udlejning
    Hjemmeside
    • Hjemmesidebygger
    • e-Handel
    • Blog
    • Forum
    • LiveChat
    • e-Læring
    Forsyningskæde
    • Lagerbeholdning
    • Produktion
    • PLM
    • Indkøb
    • Vedligeholdelse
    • Kvalitet
    HR
    • Medarbejdere
    • Rekruttering
    • Fravær
    • Medarbejdersamtaler
    • Anbefalinger
    • Flåde
    Marketing
    • Markedsføring på sociale medier
    • E-mailmarketing
    • SMS-marketing
    • Arrangementer
    • Automatiseret marketing
    • Spørgeundersøgelser
    Tjenester
    • Projekt
    • Timesedler
    • Udkørende Service
    • Kundeservice
    • Planlægning
    • Aftaler
    Produktivitet
    • Dialog
    • Godkendelser
    • IoT
    • VoIP
    • Vidensdeling
    • WhatsApp
    Tredjepartsapps Odoo Studio Odoo Cloud-platform
  • Brancher
    Detailhandel
    • Boghandel
    • Tøjforretning
    • Møbelforretning
    • Dagligvarebutik
    • Byggemarked
    • Legetøjsforretning
    Mad og værtsskab
    • Bar og pub
    • Restaurant
    • Fastfood
    • Gæstehus
    • Drikkevareforhandler
    • Hotel
    Ejendom
    • Ejendomsmægler
    • Arkitektfirma
    • Byggeri
    • Ejendomsadministration
    • Havearbejde
    • Boligejerforening
    Rådgivning
    • Regnskabsfirma
    • Odoo-partner
    • Marketingbureau
    • Advokatfirma
    • Rekruttering
    • Audit & certificering
    Produktion
    • Tekstil
    • Metal
    • Møbler
    • Fødevareproduktion
    • Bryggeri
    • Firmagave
    Heldbred & Fitness
    • Sportsklub
    • Optiker
    • Fitnesscenter
    • Kosmetolog
    • Apotek
    • Frisør
    Håndværk
    • Handyman
    • IT-hardware og support
    • Solenergisystemer
    • Skomager
    • Rengøringsservicer
    • VVS- og ventilationsservice
    Andet
    • Nonprofitorganisation
    • Miljøagentur
    • Udlejning af billboards
    • Fotografi
    • Cykeludlejning
    • Softwareforhandler
    Gennemse alle brancher
  • Community
    Få mere at vide
    • Tutorials
    • Dokumentation
    • Certificeringer
    • Oplæring
    • Blog
    • Podcast
    Bliv klogere
    • Udannelselsesprogram
    • Scale Up!-virksomhedsspillet
    • Besøg Odoo
    Få softwaren
    • Download
    • Sammenlign versioner
    • Udgaver
    Samarbejde
    • Github
    • Forum
    • Arrangementer
    • Oversættelser
    • Bliv partner
    • Tjenester til partnere
    • Registrér dit regnskabsfirma
    Modtag tjenester
    • Find en partner
    • Find en bogholder
    • Kontakt en rådgiver
    • Implementeringstjenester
    • Kundereferencer
    • Support
    • Opgraderinger
    Github Youtube Twitter LinkedIn Instagram Facebook Spotify
    +1 (650) 691-3277
    Få en demo
  • Prissætning
  • Hjælp

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

  • CRM
  • e-Commerce
  • Bogføring
  • Lager
  • PoS
  • Projekt
  • MRP
All apps
Du skal være registreret for at interagere med fællesskabet.
All Posts People Emblemer
Tags (View all)
odoo accounting v14 pos v15
Om dette forum
Du skal være registreret for at interagere med fællesskabet.
All Posts People Emblemer
Tags (View all)
odoo accounting v14 pos v15
Om dette forum
Hjælp

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

Tilmeld

Få besked, når der er aktivitet på dette indlæg

Dette spørgsmål er blevet anmeldt
2 Besvarelser
4369 Visninger
Avatar
Karolin Ar.
0
Avatar
Kassér
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.
Forfatter

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

Karolin Ar.
Forfatter

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

Karolin Ar.
Forfatter

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

Karolin Ar.
Forfatter

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.
Forfatter

Can anyone answer this Q ?

michel Guénard

The longuest post I have seen so far!

Avatar
ABU K
Bedste svar

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
Kassér
ABU K

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

Karolin Ar.
Forfatter

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

Karolin Ar.
Forfatter

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!

Tilmeld dig
Community
  • Tutorials
  • Dokumentation
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Oversættelser
Tjenester
  • Odoo.sh-hosting
  • Support
  • Opgradere
  • Individuelt tilpasset udvikling
  • Uddannelse
  • Find en bogholder
  • Find en partner
  • Bliv partner
Om os
  • Vores virksomhed
  • Brandaktiver
  • Kontakt os
  • Stillinger
  • Arrangementer
  • Podcast
  • Blog
  • Kunder
  • Juridiske dokumenter • Privatlivspolitik
  • Sikkerhedspolitik
الْعَرَبيّة 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 er en samling open source-forretningsapps, der dækker alle dine virksomhedsbehov – lige fra CRM, e-handel og bogføring til lagerstyring, POS, projektledelse og meget mere.

Det unikke ved Odoo er, at systemet både er brugervenligt og fuldt integreret.

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