Posts

Showing posts with the label odoo-8

add field on module odoo localhost

Image
Clash Royale CLAN TAG #URR8PPP add field on module odoo localhost I want to add a field on odoo module. I'm using odoo v8. <openerp> <data> <record model="ir.ui.view" id="add_field_product_form"> <field name="name">add.field.product.form</field> <field name="model">product.template</field> <field name="inherit_id" ref="product.product_template_only_form_view"/> <field name="arch" type="xml"> <xpath expr="//field[@name='type']" position="after"> <field name="info"/> </xpath> </field> </record> </data> </openerp> My class: from openerp import models, fields class AddFieldProduct(models.Model): # Name class _inherit = "product.te...

I can't find my module in Odoo8

Image
Clash Royale CLAN TAG #URR8PPP I can't find my module in Odoo8 it must create my module on addons of odoo ? or in back of my project because when I add the project on add ons of odoo it be show on local module but when i remove from addons he doesn't I'm using odoo V8 with pycharm 2017 python 2.7 NB:odoo is working fine on localhost By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.