Skip to Content
Odoo Menu
  • Sign in
  • Try it free
  • Apps
    Finance
    • Accounting
    • Invoicing
    • Expenses
    • Spreadsheet (BI)
    • Documents
    • Sign
    Sales
    • CRM
    • Sales
    • POS Shop
    • POS Restaurant
    • Subscriptions
    • Rental
    Websites
    • Website Builder
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Supply Chain
    • Inventory
    • Manufacturing
    • PLM
    • Purchase
    • Maintenance
    • Quality
    Human Resources
    • Employees
    • Recruitment
    • Time Off
    • Appraisals
    • Referrals
    • Fleet
    Marketing
    • Social Marketing
    • Email Marketing
    • SMS Marketing
    • Events
    • Marketing Automation
    • Surveys
    Services
    • Project
    • Timesheets
    • Field Service
    • Helpdesk
    • Planning
    • Appointments
    Productivity
    • Discuss
    • Approvals
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industries
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Beverage Distributor
    • Hotel
    Real Estate
    • Real Estate Agency
    • Architecture Firm
    • Construction
    • Estate Management
    • Gardening
    • Property Owner Association
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Manufacturing
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware & Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Others
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Community
    Learn
    • Tutorials
    • Documentation
    • Certifications
    • Training
    • Blog
    • Podcast
    Empower Education
    • Education Program
    • Scale Up! Business Game
    • Visit Odoo
    Get the Software
    • Download
    • Compare Editions
    • Releases
    Collaborate
    • Github
    • Forum
    • Events
    • Translations
    • Become a Partner
    • Services for Partners
    • Register your Accounting Firm
    Get Services
    • Find a Partner
    • Find an Accountant
    • Meet an advisor
    • Implementation Services
    • Customer References
    • Support
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Get a demo
  • Pricing
  • Help

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

  • CRM
  • e-Commerce
  • Accounting
  • Inventory
  • PoS
  • Project
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
Help

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

Subscribe

Get notified when there's activity on this post

This question has been flagged
2 Replies
4371 Views
Avatar
Karolin Ar.
0
Avatar
Discard
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.
Author

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

Karolin Ar.
Author

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

Karolin Ar.
Author

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

Karolin Ar.
Author

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

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
Discard
ABU K

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

Karolin Ar.
Author

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

Karolin Ar.
Author

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!

Sign up
Community
  • Tutorials
  • Documentation
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Translations
Services
  • Odoo.sh Hosting
  • Support
  • Upgrade
  • Custom Developments
  • Education
  • Find an Accountant
  • Find a Partner
  • Become a Partner
About us
  • Our company
  • Brand Assets
  • Contact us
  • Jobs
  • Events
  • Podcast
  • Blog
  • Customers
  • Legal • Privacy
  • Security
الْعَرَبيّة 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 is a suite of open source business apps that cover all your company needs: CRM, eCommerce, accounting, inventory, point of sale, project management, etc.

Odoo's unique value proposition is to be at the same time very easy to use and fully integrated.

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