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

Getting error while extending hr.employee to add custom fields. Can someone help?

Subscribe

Get notified when there's activity on this post

This question has been flagged
employeecustom-moduleadd-new-field
5 Replies
8066 Views
Avatar
SynerBize Inc.

Hello,

(I use ODOO v10)

I am getting an error while trying to add custom fields into hr.employee model. Below is the code -

My XML file -

<?xml version="1.0" encoding="utf-8"?>

<odoo>

<data>

<record id="employee_extn" model="ir.ui.view">

<field name="name">employee.extn</field>

<field name="model">hr.employee</field>

<field name="inherit_id" ref="hr.view_employee_form"/>

<field name="arch" type="xml">

<xpath expr="//form/sheet/notebook/page[2]/group[1]/group[1]/field[@name='identification_id']" position="replace">

<label for="identification_id" string="Aadhaar Number"/>

</xpath>

<xpath expr="//form/sheet/notebook/page[2]/group[1]/group[2]/field[@name='address_home_id']" position="after">

<field name="address_perm_id"/>

</xpath>

<xpath expr="//form/sheet/notebook/page[2]/group[1]/group[4]/field[@name='birthday']" position="after">

<field name="wedding_date"/>

</xpath>

</field>

</record>

</data>

</odoo>


My .py file -

from odoo import models, fields, api, _

class EmpExtension{models.Model):

_name = "hr.employee"

_inherit = "hr.employee"

address_perm_id = fields.Many2one("res.partner", string="Permanent Address", store=True, help="Select or Enter the Permanent Address of employee")

contract_type = fields.Selection([("Regular", "Daily Wager")], string="Contract Type", store=True, help="Is this employee a Regular employee or contracted Daily Wager?")

wedding_date = fields.Date(string="Wedding Date", store=True, help="Enter wedding date of employee")

joining_date = fields.Date(string="Date of Joining", store=True, help="Enter date on which employee joined this organization.")

joining_desig = fields.Char(string="Joining Designation", store=True, help="Enter Joining Designation of this employee.")

joining_salary = fields.Float(string="Joining Salary", required=True, store=True, help="Enter the consolidated salary paid / offered to employee at the time of joining the organization.")

current_salary = fields.Float(string="Current Salary", required=True, store=True, help="Enter the current consolidated salary paid to employee.")

 attendance_type = fields.Char(string="Attendance Type", required=True, store=True, help="Choose how the attendance of this employee will be recorded. It could be Biometric, Card Swipe or Manual.")


I get error as below -

Traceback (most recent call last):
  File "C:\Program Files (x86)\Odoo 10.0\server\odoo\http.py", line 640, in _handle_exception
  File "C:\Program Files (x86)\Odoo 10.0\server\odoo\http.py", line 677, in dispatch
  File "C:\Program Files (x86)\Odoo 10.0\server\odoo\http.py", line 333, in _call_function
  File "C:\Program Files (x86)\Odoo 10.0\server\odoo\service\model.py", line 101, in wrapper
  File "C:\Program Files (x86)\Odoo 10.0\server\odoo\http.py", line 326, in checked_call
  File "C:\Program Files (x86)\Odoo 10.0\server\odoo\http.py", line 935, in __call__
  File "C:\Program Files (x86)\Odoo 10.0\server\odoo\http.py", line 506, in response_wrap
  File "C:\Program Files (x86)\Odoo 10.0\server\odoo\addons\web\controllers\main.py", line 889, in call_button
  File "C:\Program Files (x86)\Odoo 10.0\server\odoo\addons\web\controllers\main.py", line 877, in _call_kw
  File "C:\Program Files (x86)\Odoo 10.0\server\odoo\api.py", line 689, in call_kw
  File "C:\Program Files (x86)\Odoo 10.0\server\odoo\api.py", line 680, in call_kw_multi
  File "C:\Program Files (x86)\Odoo 10.0\server\odoo\addons\base\module\module.py", line 411, in button_immediate_install
  File "C:\Program Files (x86)\Odoo 10.0\server\odoo\addons\base\module\module.py", line 485, in _button_immediate_function
  File "C:\Program Files (x86)\Odoo 10.0\server\odoo\modules\registry.py", line 82, in new
  File "C:\Program Files (x86)\Odoo 10.0\server\odoo\modules\loading.py", line 339, in load_modules
  File "C:\Program Files (x86)\Odoo 10.0\server\odoo\modules\loading.py", line 237, in load_marked_modules
  File "C:\Program Files (x86)\Odoo 10.0\server\odoo\modules\loading.py", line 156, in load_module_graph
  File "C:\Program Files (x86)\Odoo 10.0\server\odoo\modules\loading.py", line 95, in _load_data
  File "C:\Program Files (x86)\Odoo 10.0\server\odoo\tools\convert.py", line 845, in convert_file
  File "C:\Program Files (x86)\Odoo 10.0\server\odoo\tools\convert.py", line 915, in convert_xml_import
  File "C:\Program Files (x86)\Odoo 10.0\server\odoo\tools\convert.py", line 796, in parse
  File "C:\Program Files (x86)\Odoo 10.0\server\odoo\tools\convert.py", line 799, in parse
  File "C:\Program Files (x86)\Odoo 10.0\server\odoo\tools\convert.py", line 707, in _tag_record
  File "C:\Program Files (x86)\Odoo 10.0\server\odoo\addons\base\ir\ir_model.py", line 1229, in _update
  File "C:\Program Files (x86)\Odoo 10.0\server\odoo\addons\base\ir\ir_ui_view.py", line 362, in create
  File "C:\Program Files (x86)\Odoo 10.0\server\odoo\models.py", line 3834, in create
  File "C:\Program Files (x86)\Odoo 10.0\server\odoo\fields.py", line 1041, in determine_inverse
  File "C:\Program Files (x86)\Odoo 10.0\server\odoo\addons\base\ir\ir_ui_view.py", line 220, in _inverse_arch
  File "C:\Program Files (x86)\Odoo 10.0\server\odoo\addons\base\ir\ir_ui_view.py", line 380, in write
  File "C:\Program Files (x86)\Odoo 10.0\server\odoo\models.py", line 3560, in write
  File "C:\Program Files (x86)\Odoo 10.0\server\odoo\models.py", line 3711, in _write
  File "C:\Program Files (x86)\Odoo 10.0\server\odoo\models.py", line 1083, in _validate_fields
ParseError: "Error while validating constraint

Field `wedding_date` does not exist

Error context:
View `employee.extn`
[view_id: 1490, xml_id: n/a, model: hr.employee, parent_id: 874]
None" while parsing file:///c:/program files (x86)/odoo 10.0/server/odoo/addons/employee_extn/employee_extn.xml:4, near
<record id="employee_extn" model="ir.ui.view">
            <field name="name">employee.extn</field>
            <field name="model">hr.employee</field>
            <field name="inherit_id" ref="hr.view_employee_form"/>
            <field name="arch" type="xml">
				<data><xpath expr="//form/sheet/notebook/page[2]/group[1]/group[1]/field[@name='identification_id']" position="replace">
					<label for="identification_id" string="Aadhaar Number"/>
				</xpath>
				<xpath expr="//form/sheet/notebook/page[2]/group[1]/group[2]/field[@name='address_home_id']" position="after">
					<field name="address_perm_id"/>
				</xpath>
				<xpath expr="//form/sheet/notebook/page[2]/group[1]/group[4]/field[@name='birthday']" position="after">
					<field name="wedding_date"/>
				</xpath>
			</data></field>
		</record>
0
Avatar
Discard
Avatar
Sudhir Arya (ERP Harbor Consulting Services)
Best Answer

Make sure you restarted the server first before upgrading the module.

Also make sure that py file is added in __init__.py file.

Sudhir Arya
ERP Harbor Consulting Services
Skype:sudhir@erpharbor.com
Website: http://www.erpharbor.com
3
Avatar
Discard
Avatar
SynerBize Inc.
Author Best Answer

Hi Sudhir, replying to your revert as "answer" for I have insufficient Karma to comment.

Thanks for writing in and or your suggestion. Yes, I tried with the options you suggested. But, no gain.

My __init__.py is as -

import emp_extension

Name of the .py file is emp_extension.py

0
Avatar
Discard
SynerBize Inc.
Author

I later realized that while installing this module does not create the fields that it intends to. So, the error I guess. Can anyone suggest about that? I am unable to figure out.

Jasad Moozhiyan

Make sure you have imported 'models' folder in __init__.py if you are using models folder.

Avatar
Jasad Moozhiyan
Best Answer

Make sure you have imported 'models' folder in __init__.py if you are using 'models' folder.

0
Avatar
Discard
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
Related Posts Replies Views Activity
Column x does not exist error (custom module) Solved
inheritance custom-module add-new-field
Avatar
Avatar
Avatar
2
Dec 23
24191
how to create employee as an user Solved
employee
Avatar
Avatar
Avatar
Avatar
Avatar
4
Dec 25
34940
hr_employee_public.timesheet_manager_id does not exist
employee
Avatar
Avatar
1
Aug 25
5086
Recurring training
employee
Avatar
0
Dec 25
8258
Employee Bank Account Number Solved
employee
Avatar
Avatar
Avatar
2
Jul 24
3313
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 Svenska ภาษาไทย 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