Reputation: 93
Here is my model from my custom module, my custom module is under custom directory and when run I run with custom modules and I updated my apps when I make any changes but the problem is not solved.
from odoo import models, fields
class ResPartner(models.Model):
_inherit = "res.partner"
cnp = fields.Char(string="CNP", help="Cod Numeric Personal for verification")
here is my cnp_list_view.xml,
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<data>
<!-- List View -->
<record id="cnp_number_view_tree" model="ir.ui.view">
<field name="name">res.partner.view.list.inherit.cnp</field>
<field name="model">res.partner</field>
<field name="inherit_id" ref="base.view_partner_tree"/>
<field name="arch" type="xml">
<xpath expr="//field" position="before">
<field name="name"/>
<field name="phone"/>
<field name="email"/>
<field name="city"/>
<field name="cnp"/>
</xpath>
</field>
</record>
<!-- Form View -->
<record id="cnp_number_view_form" model="ir.ui.view">
<field name="name">res.partner.view.form.inherit</field>
<field name="model">res.partner</field>
<field name="arch" type="xml">
<form string="CNP Numbers">
<div class="s_website_form_rows row s_col_no_bgcolor">
<div class="form-group s_website_form_field col-12 s_website_form_done" data-name="Field">
<field id="name" name="name" placeholder="Name"/>
<field name="phone" placeholder="Phone"/>
<field name="email" placeholder="Email"/>
<field name="city" placeholder="City"/>
<field name="cnp" placeholder="CNP"/>
</div>
</div>
</form>
</field>
</record>
<!-- Action -->
<record id="action_cnp_validation" model="ir.actions.act_window">
<field name="name">CNP Numbers</field>
<field name="res_model">res.partner</field>
<field name="view_mode">list,form</field>
</record>
<!-- Menu -->
<menuitem
id="menu_cnp_validation_root"
name="CNP Validation App"
/>
<menuitem
id="menu_cnp_validation"
parent="menu_cnp_validation_root"
action="action_cnp_validation"
/>
</data>
</odoo>
After adding the form view I can't see the list view , from interface if I click on debug no list view is found
Upvotes: 0
Views: 59
Reputation: 1
Check if the "cnp" field exists in the model. If so, you know that at least the module is installed. If not check that the status is "Installed" and not something like "Pending" or "Updating".
If the "cnp" field does exist, check if you're correctly referencing the view file in the manifest https://www.odoo.com/documentation/18.0/developer/tutorials/define_module_data.html?highlight=manifest#data-declaration
Upvotes: 0