This question has been flagged
2 Replies
3257 Views
Avatar
Discard

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

Author

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

Author

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

Author

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

Author

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

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?

Author

Can anyone answer this Q ?

The longuest post I have seen so far!

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>

 

 

 

 

Avatar
Discard

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

Author

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

Author

is it necessary to use xpath tag?

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

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

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

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

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

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

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
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,

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