Skip to Content
Menu
This question has been flagged
1 Reply
8050 Views

hi all ,  I need to know that how to calculate age from birthday in odoo13 , i tired this one , iam getting this error

Error:

Odoo Server Error


Traceback (most recent call last):

  File "/odoo/odoo-server/odoo/addons/base/models/ir_ui_view.py", line 392, in _check_xml

    self.postprocess_and_fields(view.model, view_doc, view.id)

  File "/odoo/odoo-server/odoo/addons/base/models/ir_ui_view.py", line 964, in postprocess_and_fields

    self.raise_view_error(message, view_id)

  File "/odoo/odoo-server/odoo/addons/base/models/ir_ui_view.py", line 592, in raise_view_error

    raise ValueError(message)

ValueError: Field `age` does not exist


Error context:

View `hr.employee.form`

[view_id: 766, xml_id: hr.view_employee_form, model: hr.employee, parent_id: n/a]


During handling of the above exception, another exception occurred:


Traceback (most recent call last):

  File "/odoo/odoo-server/odoo/tools/convert.py", line 712, in parse

    self._tag_root(de)

  File "/odoo/odoo-server/odoo/tools/convert.py", line 674, in _tag_root

    f(rec)

  File "/odoo/odoo-server/odoo/tools/convert.py", line 674, in _tag_root

    f(rec)

  File "/odoo/odoo-server/odoo/tools/convert.py", line 577, in _tag_record

    record = model._load_records([data], self.mode == 'update')

  File "/odoo/odoo-server/odoo/models.py", line 4040, in _load_records

    data['record']._load_records_write(data['values'])

  File "/odoo/odoo-server/odoo/models.py", line 3978, in _load_records_write

    self.write(values)

  File "/odoo/odoo-server/odoo/addons/base/models/ir_ui_view.py", line 490, in write

    return super(View, self).write(self._compute_defaults(vals))

  File "/odoo/odoo-server/odoo/models.py", line 3556, in write

    fields[0].determine_inverse(real_recs)

  File "/odoo/odoo-server/odoo/fields.py", line 1114, in determine_inverse

    getattr(records, self.inverse)()

  File "/odoo/odoo-server/odoo/addons/base/models/ir_ui_view.py", line 299, in _inverse_arch

    view.write(data)

  File "/odoo/odoo-server/odoo/addons/base/models/ir_ui_view.py", line 490, in write

    return super(View, self).write(self._compute_defaults(vals))

  File "/odoo/odoo-server/odoo/models.py", line 3551, in write

    real_recs._validate_fields(set(vals) - set(inverse_fields))

  File "/odoo/odoo-server/odoo/models.py", line 1167, in _validate_fields

    check(self)

  File "/odoo/odoo-server/odoo/addons/base/models/ir_ui_view.py", line 394, in _check_xml

    raise ValidationError("%s\n\n%s" % (_("Error while validating view"), tools.ustr(e)))

odoo.exceptions.ValidationError: ('Error while validating view\n\nField `age` does not exist\n\nError context:\nView `hr.employee.form`\n[view_id: 766, xml_id: hr.view_employee_form, model: hr.employee, parent_id: n/a]', None)


During handling of the above exception, another exception occurred:


Traceback (most recent call last):

  File "/odoo/odoo-server/odoo/http.py", line 619, in _handle_exception

    return super(JsonRequest, self)._handle_exception(exception)

  File "/odoo/odoo-server/odoo/http.py", line 309, in _handle_exception

    raise pycompat.reraise(type(exception), exception, sys.exc_info()[2])

  File "/odoo/odoo-server/odoo/tools/pycompat.py", line 14, in reraise

    raise value

  File "/odoo/odoo-server/odoo/http.py", line 664, in dispatch

    result = self._call_function(**self.params)

  File "/odoo/odoo-server/odoo/http.py", line 345, in _call_function

    return checked_call(self.db, *args, **kwargs)

  File "/odoo/odoo-server/odoo/service/model.py", line 93, in wrapper

    return f(dbname, *args, **kwargs)

  File "/odoo/odoo-server/odoo/http.py", line 338, in checked_call

    result = self.endpoint(*a, **kw)

  File "/odoo/odoo-server/odoo/http.py", line 910, in __call__

    return self.method(*args, **kw)

  File "/odoo/odoo-server/odoo/http.py", line 510, in response_wrap

    response = f(*args, **kw)

  File "/odoo/odoo-server/addons/web/controllers/main.py", line 1324, in call_button

    action = self._call_kw(model, method, args, kwargs)

  File "/odoo/odoo-server/addons/web/controllers/main.py", line 1312, in _call_kw

    return call_kw(request.env[model], method, args, kwargs)

  File "/odoo/odoo-server/odoo/api.py", line 387, in call_kw

    result = _call_kw_multi(method, model, args, kwargs)

  File "/odoo/odoo-server/odoo/api.py", line 374, in _call_kw_multi

    result = method(recs, *args, **kwargs)

  File "<decorator-gen-64>", line 2, in button_immediate_upgrade

  File "/odoo/odoo-server/odoo/addons/base/models/ir_module.py", line 72, in check_and_log

    return method(self, *args, **kwargs)

  File "/odoo/odoo-server/odoo/addons/base/models/ir_module.py", line 629, in button_immediate_upgrade

    return self._button_immediate_function(type(self).button_upgrade)

  File "/odoo/odoo-server/odoo/addons/base/models/ir_module.py", line 573, in _button_immediate_function

    modules.registry.Registry.new(self._cr.dbname, update_module=True)

  File "/odoo/odoo-server/odoo/modules/registry.py", line 86, in new

    odoo.modules.load_modules(registry._db, force_demo, status, update_module)

  File "/odoo/odoo-server/odoo/modules/loading.py", line 419, in load_modules

    force, status, report, loaded_modules, update_module, models_to_check)

  File "/odoo/odoo-server/odoo/modules/loading.py", line 315, in load_marked_modules

    perform_checks=perform_checks, models_to_check=models_to_check

  File "/odoo/odoo-server/odoo/modules/loading.py", line 225, in load_module_graph

    load_data(cr, idref, mode, kind='data', package=package, report=report)

  File "/odoo/odoo-server/odoo/modules/loading.py", line 68, in load_data

    tools.convert_file(cr, package.name, filename, idref, mode, noupdate, kind, report)

  File "/odoo/odoo-server/odoo/tools/convert.py", line 736, in convert_file

    convert_xml_import(cr, module, fp, idref, mode, noupdate, report)

  File "/odoo/odoo-server/odoo/tools/convert.py", line 803, in convert_xml_import

    obj.parse(doc.getroot())

  File "/odoo/odoo-server/odoo/tools/convert.py", line 721, in parse

    exc_info[2]

  File "/odoo/odoo-server/odoo/tools/pycompat.py", line 13, in reraise

    raise value.with_traceback(tb)

  File "/odoo/odoo-server/odoo/tools/convert.py", line 712, in parse

    self._tag_root(de)

  File "/odoo/odoo-server/odoo/tools/convert.py", line 674, in _tag_root

    f(rec)

  File "/odoo/odoo-server/odoo/tools/convert.py", line 674, in _tag_root

    f(rec)

  File "/odoo/odoo-server/odoo/tools/convert.py", line 577, in _tag_record

    record = model._load_records([data], self.mode == 'update')

  File "/odoo/odoo-server/odoo/models.py", line 4040, in _load_records

    data['record']._load_records_write(data['values'])

  File "/odoo/odoo-server/odoo/models.py", line 3978, in _load_records_write

    self.write(values)

  File "/odoo/odoo-server/odoo/addons/base/models/ir_ui_view.py", line 490, in write

    return super(View, self).write(self._compute_defaults(vals))

  File "/odoo/odoo-server/odoo/models.py", line 3556, in write

    fields[0].determine_inverse(real_recs)

  File "/odoo/odoo-server/odoo/fields.py", line 1114, in determine_inverse

    getattr(records, self.inverse)()

  File "/odoo/odoo-server/odoo/addons/base/models/ir_ui_view.py", line 299, in _inverse_arch

    view.write(data)

  File "/odoo/odoo-server/odoo/addons/base/models/ir_ui_view.py", line 490, in write

    return super(View, self).write(self._compute_defaults(vals))

  File "/odoo/odoo-server/odoo/models.py", line 3551, in write

    real_recs._validate_fields(set(vals) - set(inverse_fields))

  File "/odoo/odoo-server/odoo/models.py", line 1167, in _validate_fields

    check(self)

  File "/odoo/odoo-server/odoo/addons/base/models/ir_ui_view.py", line 394, in _check_xml

    raise ValidationError("%s\n\n%s" % (_("Error while validating view"), tools.ustr(e)))

odoo.tools.convert.ParseError: "Error while validating view


Field `age` does not exist


Error context:

View `hr.employee.form`

[view_id: 766, xml_id: hr.view_employee_form, model: hr.employee, parent_id: n/a]

None" while parsing /odoo/odoo-server/addons/hr/views/hr_employee_views.xml:2, near

<odoo>

    <data>


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

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

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

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

                <search string="Employees">

                    <field name="name" string="Employee" filter_domain="['|', ('work_email', 'ilike', self), ('name', 'ilike', self)]"/>

                    <field name="category_ids" groups="hr.group_hr_user"/>

                    <field name="job_id"/>

                    <separator/>

                    <filter string="Unread Messages" name="message_needaction" domain="[('message_needaction', '=', True)]"/>

                    <separator/>

                    <filter invisible="1" string="Late Activities" name="activities_overdue" domain="[('activity_ids.date_deadline', '&lt;', context_today().strftime('%Y-%m-%d'))]"/>

                    <filter invisible="1" string="Today Activities" name="activities_today" domain="[('activity_ids.date_deadline', '=', context_today().strftime('%Y-%m-%d'))]"/>

                    <filter invisible="1" string="Future Activities" name="activities_upcoming_all" domain="[('activity_ids.date_deadline', '&gt;', context_today().strftime('%Y-%m-%d'))]"/>

                    <separator/>

                    <filter string="Archived" name="inactive" domain="[('active', '=', False)]"/>

                    <group expand="0" string="Group By">

                        <filter name="group_manager" string="Manager" domain="[]" context="{'group_by': 'parent_id'}"/>

                        <filter name="group_department" string="Department" domain="[]" context="{'group_by': 'department_id'}"/>

                        <filter name="group_job" string="Job" domain="[]" context="{'group_by': 'job_id'}"/>

                    </group>

                    <searchpanel>

                        <field name="company_id" groups="base.group_multi_company" icon="fa-building"/>

                        <field name="department_id" icon="fa-users"/>

                    </searchpanel>

                </search>

             </field>

        </record>


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

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

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

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

                <form string="Employee" js_class="hr_employee_form">

                    <field name="active" invisible="1"/>

                    <field name="user_partner_id" invisible="1"/>

                    <field name="hr_presence_state" invisible="1"/>

                    <header>

                        <button string="Chat" class="btn btn-primary o_employee_chat_btn" attrs="{'invisible': [('user_id','=', False)]}"/>

                        <button name="%(plan_wizard_action)d" string="Launch Plan" type="action" groups="hr.group_hr_manager"/>

                    </header>

                    <sheet>

                        <div name="button_box" class="oe_button_box">

                            <button id="hr_presence_button" class="oe_stat_button" disabled="1" attrs="{'invisible': ['|', ('last_activity', '=', False), ('user_id', '=', False)]}">

                                <div role="img" class="fa fa-fw fa-circle text-success o_button_icon" attrs="{'invisible': [('hr_presence_state', '!=', 'present')]}" aria-label="Available" title="Available"/>

                                <div role="img" class="fa fa-fw fa-circle text-warning o_button_icon" attrs="{'invisible': [('hr_presence_state', '!=', 'to_define')]}" aria-label="Away" title="Away"/>

                                <div role="img" class="fa fa-fw fa-circle text-danger o_button_icon" attrs="{'invisible': [('hr_presence_state', '!=', 'absent')]}" aria-label="Not available" title="Not available"/>


                                <div class="o_stat_info" attrs="{'invisible': [('hr_presence_state', '=', 'present')]}">

                                    <span class="o_stat_text">

                                        Not Connected

                                    </span>

                                </div>

                                <div class="o_stat_info" attrs="{'invisible': [('hr_presence_state', '!=', 'present')]}">

                                    <span class="o_stat_value" attrs="{'invisible': [('last_activity_time', '=', False)]}">

                                        <field name="last_activity_time"/>

                                    </span>

                                    <span class="o_stat_value" attrs="{'invisible': [('last_activity_time', '!=', False)]}">

                                        <field name="last_activity"/>

                                    </span>

                                    <span class="o_stat_text">Present Since</span>

                                </div>

                            </button>

                        </div>

                        <widget name="web_ribbon" title="Archived" bg_color="bg-danger" attrs="{'invisible': [('active', '=', True)]}"/>

                        <field name="image_1920" widget="image" class="oe_avatar" options="{&quot;zoom&quot;: true, &quot;preview_image&quot;:&quot;image_128&quot;}"/>

                        <div class="oe_title">

                            <h1>

                                <field name="name" placeholder="Employee's Name" required="True"/>

                            </h1>

                            <h2>

                                <field name="job_title" placeholder="Job Position"/>

                            </h2>

                            <field name="category_ids" widget="many2many_tags" options="{'color_field': 'color', 'no_create_edit': True}" placeholder="Tags" groups="hr.group_hr_manager"/>

                        </div>

                        <group>

                            <group>

                                <field name="mobile_phone" widget="phone"/>

                                <field name="work_phone" widget="phone"/>

                                <field name="work_email" widget="email"/>

                                <field name="work_location"/>

                                <field name="company_id" groups="base.group_multi_company"/>

                            </group>

                            <group>

                                <field name="department_id"/>

                                <field name="job_id"/>

                                <field name="parent_id"/>

                            </group>

                        </group>

                        <notebook>

                            <page name="public" string="Work Information">

                                <div id="o_work_employee_container"> <!-- These two div are used to position org_chart -->

                                    <div id="o_work_employee_main">

                                        <group string="Location">

                                            <field name="address_id" context="{'show_address': 1}" options="{&quot;always_reload&quot;: True, &quot;highlight_first_line&quot;: True}"/>

                                        </group>

                                        <group name="managers" string="Responsibles">

                                            <field name="coach_id"/>

                                        </group>

                                        <group name="departure" string="Departure" attrs="{'invisible': [('active', '=', True)]}">

                                            <field name="departure_reason"/>

                                            <field name="departure_description"/>

                                        </group>

                                        <group string="Schedule" groups="base.group_no_one">

                                            <field name="resource_calendar_id" required="1"/>

                                            <field name="tz"/>

                                        </group>

                                    </div>

                                </div>

                            </page>

                            <page name="personal_information" string="Private Information" groups="hr.group_hr_user">

                                <group>

                                    <group string="Private Contact">

                                        <field name="address_home_id" context="{                                                 'show_address': 1,                                                 'default_type': 'private',                                                 'form_view_ref': 'base.res_partner_view_form_private'}" options="{&quot;always_reload&quot;: True, &quot;highlight_first_line&quot;: True}"/>

                                        <field name="birthday"/>

                                        <field name="age"/>

                                        <field name="private_email" string="Email"/>

                                        <field name="phone" groups="hr.group_hr_user" string="Phone"/>

                                        <field name="bank_account_id" context="{'default_partner_id': address_home_id}"/>

                                        <field name="km_home_work" groups="hr.group_hr_user"/>

                                    </group>

                                    <group string="Citizenship">

                                        <field name="country_id" options="{&quot;no_open&quot;: True, &quot;no_create&quot;: True}"/>

                                        <field name="identification_id" groups="hr.group_hr_user"/>

                                        <field name="passport_id" groups="hr.group_hr_user"/>

                                        <field name="gender"/>

                                        <field name="place_of_birth" groups="hr.group_hr_user"/>

                                        <field name="country_of_birth" groups="hr.group_hr_user"/>

                                    </group>

                                    <group string="Marital Status">

                                        <field name="marital"/>

                                        <field name="spouse_complete_name" attrs="{'invisible': [('marital', 'not in', ['married', 'cohabitant'])]}" groups="hr.group_hr_user"/>

                                        <field name="spouse_birthdate" attrs="{'invisible': [('marital', 'not in', ['married', 'cohabitant'])]}" groups="hr.group_hr_user"/>

                                    </group>

                                    <group string="Dependant">

                                        <field name="children"/>

                                    </group>

                                    <group string="Emergency">

                                        <field name="emergency_contact"/>

                                        <field name="emergency_phone"/>

                                    </group>

                                    <group string="Work Permit" name="work_permit">

                                        <field name="visa_no"/>

                                        <field name="permit_no"/>

                                        <field name="visa_expire"/>

                                    </group>

                                    <group string="Education">

                                        <field name="certificate"/>

                                        <field name="study_field"/>

                                        <field name="study_school"/>

                                    </group>

                                </group>

                            </page>

                            <page name="hr_settings" string="HR Settings" groups="hr.group_hr_user">

                                <group>

                                    <group string="Status" name="active_group">

                                        <field name="user_id" string="Related User"/>

                                    </group>

                                    <group string="Attendance" name="identification_group">

                                        <field name="pin" string="PIN Code"/>

                                        <label for="barcode"/>

                                        <div class="o_row">

                                            <field name="barcode"/>

                                            <button string="Generate" class="btn btn-link" type="object" name="generate_random_barcode" attrs="{'invisible': [('barcode', '!=', False)]}"/>

                                            <button name="%(hr_employee_print_badge)d" string="Print Badge" class="btn btn-link" type="action" attrs="{'invisible': [('barcode', '=', False)]}"/>

                                        </div>

                                    </group>

                                </group>

                            </page>

                        </notebook>


                    </sheet>

                    <div class="oe_chatter">

                        <field name="message_follower_ids" widget="mail_followers" groups="base.group_user"/>

                        <field name="activity_ids" widget="mail_activity"/>

                        <field name="message_ids" widget="mail_thread"/>

                    </div>

                </form>

            </field>

        </record>


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

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

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

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

                <tree string="Employees">

                    <field name="name"/>

                    <field name="work_phone"/>

                    <field name="work_email"/>

                    <field name="company_id" groups="base.group_multi_company"/>

                    <field name="department_id"/>

                    <field name="job_id"/>

                    <field name="parent_id"/>

                    <field name="coach_id" invisible="1"/>

                </tree>

            </field>

        </record>


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

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

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

           <field name="priority">10</field>

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

               <kanban class="o_hr_employee_kanban">

                   <field name="id"/>

                   <field name="hr_presence_state"/>

                   <templates>

                       <t t-name="kanban-box">

                       <div class="oe_kanban_global_click o_kanban_record_has_image_fill o_hr_kanban_record">

                           <field name="image_128" widget="image" class="o_kanban_image_fill_left" options="{'zoom': true, 'zoom_delay': 1000, 'background': true, 'preventClicks': false}"/>


                            <div class="oe_kanban_details">

                               <div class="o_kanban_record_top">

                                   <div class="o_kanban_record_headings">

                                       <strong class="o_kanban_record_title">

                                            <div class="float-right" t-if="record.hr_presence_state.raw_value == 'present'">

                                                <span class="fa fa-circle text-success" role="img" aria-label="Present" title="Present" name="presence_present"/>

                                            </div>

                                            <div class="float-right" t-if="record.hr_presence_state.raw_value == 'absent'">

                                                <span class="fa fa-circle text-danger" role="img" aria-label="Absent" title="Absent" name="presence_absent"/>

                                            </div>

                                            <div class="float-right" t-if="record.hr_presence_state.raw_value == 'to_define'">

                                                <span class="fa fa-circle text-warning" role="img" aria-label="To define" title="To define" name="presence_to_define"/>

                                            </div>

                                            <field name="name" placeholder="Employee's Name"/>

                                       </strong>

                                       <span t-if="record.job_title.raw_value" class="o_kanban_record_subtitle"><field name="job_title"/></span>

                                   </div>

                               </div>

                               <field name="category_ids" widget="many2many_tags" options="{'color_field': 'color'}" groups="hr.group_hr_manager"/>

                               <ul>

                                   <li id="last_login"/>

                                   <li t-if="record.work_email.raw_value" class="o_text_overflow"><field name="work_email"/></li>

                                   <li t-if="record.work_phone.raw_value"><field name="work_phone"/></li>

                               </ul>

                           </div>

                       </div>

                       </t>

                   </templates>

               </kanban>

            </field>

        </record>


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

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

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

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

                <activity string="Employees">

                    <field name="id"/>

                    <templates>

                        <div t-name="activity-box">

                            <img t-att-src="activity_image('hr.employee', 'image_128', record.id.raw_value)" role="img" t-att-title="record.id.value" t-att-alt="record.id.value"/>

                            <div>

                                <field name="name" display="full"/>

                                <field name="job_id" muted="1" display="full"/>

                            </div>

                        </div>

                    </templates>

                </activity>

            </field>

        </record>


        <record id="open_view_employee_list_my" model="ir.actions.act_window">

            <field name="name">Employees</field>

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

            <field name="view_mode">kanban,tree,form,activity</field>

            <field name="domain">[]</field>

            <field name="context">{}</field>

            <field name="view_id" eval="False"/>

            <field name="search_view_id" ref="view_employee_filter"/>

            <field name="help" type="html">

             <p class="o_view_nocontent_smiling_face">

               Add a new employee

             </p><p>

               With just a quick glance on the Odoo employee screen, you

               can easily find all the information you need for each person;

               contact data, job position, availability, etc.

             </p>

            </field>

        </record>


        <record id="open_view_employee_tree" model="ir.actions.act_window">

            <field name="name">Employees Structure</field>

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

            <field name="view_mode">tree,form</field>

            <field name="view_id" ref="view_employee_tree"/>

            <field name="domain">[('parent_id','=',False)]</field>

            <field name="search_view_id" ref="view_employee_filter"/>

        </record>


        <record id="open_view_employee_list" model="ir.actions.act_window">

            <field name="name">Employees</field>

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

            <field name="view_mode">form,tree</field>

            <field name="view_id" eval="False"/>

            <field name="search_view_id" ref="view_employee_filter"/>

        </record>


        <!-- Employee tree by manager -->

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

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

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

            <field name="priority" eval="20"/>

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

                <tree string="Employees">

                    <field name="name"/>

                    <field name="work_phone"/>

                    <field name="work_email"/>

                    <field name="company_id" groups="base.group_multi_company"/>

                    <field name="department_id"/>

                    <field name="job_id"/>

                    <field name="coach_id" invisible="1"/>

                    <field name="parent_id" invisible="1"/>

                </tree>

            </field>

        </record>


        <record id="act_employee_from_department" model="ir.actions.act_window">

            <field name="name">Employees</field>

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

            <field name="view_mode">kanban,form,tree</field>

            <field name="search_view_id" ref="view_employee_filter"/>

            <field name="context">{

                "searchpanel_default_department_id": active_id,

                "default_department_id": active_id}

            </field>

            <field name="help" type="html">

              <p class="o_view_nocontent_smiling_face">

                Add a new employee

              </p><p>

                With just a quick glance on the Odoo employee screen, you

                can easily find all the information you need for each person;

                contact data, job position, availability, etc.

              </p>

            </field>

        </record>


    </data>

</odoo>


hr_employee.py :

# -*- coding: utf-8 -*-

# Part of Odoo. See LICENSE file for full copyright and licensing details.


import base64

from random import choice

from string import digits

import itertools

from werkzeug import url_encode

import pytz


from odoo import api, fields, models, _

from odoo.exceptions import ValidationError, AccessError

from odoo.modules.module import get_module_resource

from odoo.addons.resource.models.resource_mixin import timezone_datetime



class HrEmployeePrivate(models.Model):

    """

    NB: Any field only available on the model hr.employee (i.e. not on the

    hr.employee.public model) should have `groups="hr.group_hr_user"` on its

    definition to avoid being prefetched when the user hasn't access to the

    hr.employee model. Indeed, the prefetch loads the data for all the fields

    that are available according to the group defined on them.

    """

    _name = "hr.employee"

    _description = "Employee"

    _order = 'name'

    _inherit = ['hr.employee.base', 'mail.thread', 'mail.activity.mixin', 'resource.mixin', 'image.mixin']

    _mail_post_access = 'read'


    @api.model

    def _default_image(self):

        image_path = get_module_resource('hr', 'static/src/img', 'default_image.png')

        return base64.b64encode(open(image_path, 'rb').read())


    # resource and user

    # required on the resource, make sure required="True" set in the view

    name = fields.Char(string="Employee Name", related='resource_id.name', store=True, readonly=False, tracking=True)

    user_id = fields.Many2one('res.users', 'User', related='resource_id.user_id', store=True, readonly=False)

    user_partner_id = fields.Many2one(related='user_id.partner_id', related_sudo=False, string="User's partner")

    active = fields.Boolean('Active', related='resource_id.active', default=True, store=True, readonly=False)

    # private partner

    address_home_id = fields.Many2one(

        'res.partner', 'Address', help='Enter here the private address of the employee, not the one linked to your company.',

        groups="hr.group_hr_user", tracking=True,

        domain="['|', ('company_id', '=', False), ('company_id', '=', company_id)]")

    is_address_home_a_company = fields.Boolean(

        'The employee address has a company linked',

        compute='_compute_is_address_home_a_company',

    )

    private_email = fields.Char(related='address_home_id.email', string="Private Email", groups="hr.group_hr_user")

    country_id = fields.Many2one(

        'res.country', 'Nationality (Country)', groups="hr.group_hr_user", tracking=True)

    gender = fields.Selection([

        ('male', 'Male'),

        ('female', 'Female'),

        ('other', 'Other')

    ], groups="hr.group_hr_user", default="male", tracking=True)

    marital = fields.Selection([

        ('single', 'Single'),

        ('married', 'Married'),

        ('cohabitant', 'Legal Cohabitant'),

        ('widower', 'Widower'),

        ('divorced', 'Divorced')

    ], string='Marital Status', groups="hr.group_hr_user", default='single', tracking=True)

    spouse_complete_name = fields.Char(string="Spouse Complete Name", groups="hr.group_hr_user", tracking=True)

    spouse_birthdate = fields.Date(string="Spouse Birthdate", groups="hr.group_hr_user", tracking=True)

    children = fields.Integer(string='Number of Children', groups="hr.group_hr_user", tracking=True)

    place_of_birth = fields.Char('Place of Birth', groups="hr.group_hr_user", tracking=True)

    country_of_birth = fields.Many2one('res.country', string="Country of Birth", groups="hr.group_hr_user", tracking=True)

    birthday = fields.Date('Date of Birth', groups="hr.group_hr_user", tracking=True)

    age = fields.Integer(string="Age", readonly=True, compute="_compute_age")


    @api.model

    @api.depends("birthday")

    def _compute_age(self):

        for record in self:

            age = 0

            if record.birthday:

                age = relativedelta(

                    fields.Date.today(),

                    record.birthday,

                ).years

            record.age = age

    ssnid = fields.Char('SSN No', help='Social Security Number', groups="hr.group_hr_user", tracking=True)

    sinid = fields.Char('SIN No', help='Social Insurance Number', groups="hr.group_hr_user", tracking=True)

    identification_id = fields.Char(string='Identification No', groups="hr.group_hr_user", tracking=True)

    passport_id = fields.Char('Passport No', groups="hr.group_hr_user", tracking=True)

    bank_account_id = fields.Many2one(

        'res.partner.bank', 'Bank Account Number',

        domain="[('partner_id', '=', address_home_id), '|', ('company_id', '=', False), ('company_id', '=', company_id)]",

        groups="hr.group_hr_user",

        tracking=True,

        help='Employee bank salary account')

    permit_no = fields.Char('Work Permit No', groups="hr.group_hr_user", tracking=True)

    visa_no = fields.Char('Visa No', groups="hr.group_hr_user", tracking=True)

    visa_expire = fields.Date('Visa Expire Date', groups="hr.group_hr_user", tracking=True)

    additional_note = fields.Text(string='Additional Note', groups="hr.group_hr_user", tracking=True)

    certificate = fields.Selection([

        ('bachelor', 'Bachelor'),

        ('master', 'Master'),

        ('other', 'Other'),

    ], 'Certificate Level', default='other', groups="hr.group_hr_user", tracking=True)

    study_field = fields.Char("Field of Study", groups="hr.group_hr_user", tracking=True)

    study_school = fields.Char("School", groups="hr.group_hr_user", tracking=True)

    emergency_contact = fields.Char("Emergency Contact", groups="hr.group_hr_user", tracking=True)

    emergency_phone = fields.Char("Emergency Phone", groups="hr.group_hr_user", tracking=True)

    km_home_work = fields.Integer(string="Km Home-Work", groups="hr.group_hr_user", tracking=True)


    image_1920 = fields.Image(default=_default_image)

    phone = fields.Char(related='address_home_id.phone', related_sudo=False, string="Private Phone", groups="hr.group_hr_user")

    # employee in company

    child_ids = fields.One2many('hr.employee', 'parent_id', string='Direct subordinates')

    category_ids = fields.Many2many(

        'hr.employee.category', 'employee_category_rel',

        'emp_id', 'category_id', groups="hr.group_hr_manager",

        string='Tags')

    # misc

    notes = fields.Text('Notes', groups="hr.group_hr_user")

    color = fields.Integer('Color Index', default=0, groups="hr.group_hr_user")

    barcode = fields.Char(string="Badge ID", help="ID used for employee identification.", groups="hr.group_hr_user", copy=False)

    pin = fields.Char(string="PIN", groups="hr.group_hr_user", copy=False,

        help="PIN used to Check In/Out in Kiosk Mode (if enabled in Configuration).")

    departure_reason = fields.Selection([

        ('fired', 'Fired'),

        ('resigned', 'Resigned'),

        ('retired', 'Retired')

    ], string="Departure Reason", groups="hr.group_hr_user", copy=False, tracking=True)

    departure_description = fields.Text(string="Additional Information", groups="hr.group_hr_user", copy=False, tracking=True)

    message_main_attachment_id = fields.Many2one(groups="hr.group_hr_user")


    _sql_constraints = [

        ('barcode_uniq', 'unique (barcode)', "The Badge ID must be unique, this one is already assigned to another employee."),

        ('user_uniq', 'unique (user_id, company_id)', "A user cannot be linked to multiple employees in the same company.")

    ]


    def name_get(self):

        if self.check_access_rights('read', raise_exception=False):

            return super(HrEmployeePrivate, self).name_get()

        return self.env['hr.employee.public'].browse(self.ids).name_get()


    def _read(self, fields):

        if self.check_access_rights('read', raise_exception=False):

            return super(HrEmployeePrivate, self)._read(fields)


        res = self.env['hr.employee.public'].browse(self.ids).read(fields)

        for r in res:

            record = self.browse(r['id'])

            record._update_cache({k:v for k,v in r.items() if k in fields}, validate=False)


    def read(self, fields, load='_classic_read'):

        if self.check_access_rights('read', raise_exception=False):

            return super(HrEmployeePrivate, self).read(fields, load=load)

        private_fields = set(fields).difference(self.env['hr.employee.public']._fields.keys())

        if private_fields:

            raise AccessError(_('The fields "%s" you try to read is not available on the public employee profile.') % (','.join(private_fields)))

        return self.env['hr.employee.public'].browse(self.ids).read(fields, load=load)


    @api.model

    def load_views(self, views, options=None):

        if self.check_access_rights('read', raise_exception=False):

            return super(HrEmployeePrivate, self).load_views(views, options=options)

        return self.env['hr.employee.public'].load_views(views, options=options)


    @api.model

    def _search(self, args, offset=0, limit=None, order=None, count=False, access_rights_uid=None):

        """

            We override the _search because it is the method that checks the access rights

            This is correct to override the _search. That way we enforce the fact that calling

            search on an hr.employee returns a hr.employee recordset, even if you don't have access

            to this model, as the result of _search (the ids of the public employees) is to be

            browsed on the hr.employee model. This can be trusted as the ids of the public

            employees exactly match the ids of the related hr.employee.

        """

        if self.check_access_rights('read', raise_exception=False):

            return super(HrEmployeePrivate, self)._search(args, offset=offset, limit=limit, order=order, count=count, access_rights_uid=access_rights_uid)

        return self.env['hr.employee.public']._search(args, offset=offset, limit=limit, order=order, count=count, access_rights_uid=access_rights_uid)


    def get_formview_id(self, access_uid=None):

        """ Override this method in order to redirect many2one towards the right model depending on access_uid """

        if access_uid:

            self_sudo = self.with_user(access_uid)

        else:

            self_sudo = self


        if self_sudo.check_access_rights('read', raise_exception=False):

            return super(HrEmployeePrivate, self).get_formview_id(access_uid=access_uid)

        # Hardcode the form view for public employee

        return self.env.ref('hr.hr_employee_public_view_form').id


    def get_formview_action(self, access_uid=None):

        """ Override this method in order to redirect many2one towards the right model depending on access_uid """

        res = super(HrEmployeePrivate, self).get_formview_action(access_uid=access_uid)

        if access_uid:

            self_sudo = self.with_user(access_uid)

        else:

            self_sudo = self


        if not self_sudo.check_access_rights('read', raise_exception=False):

            res['res_model'] = 'hr.employee.public'


        return res


    @api.constrains('pin')

    def _verify_pin(self):

        for employee in self:

            if employee.pin and not employee.pin.isdigit():

                raise ValidationError(_("The PIN must be a sequence of digits."))


    @api.onchange('job_id')

    def _onchange_job_id(self):

        if self.job_id:

            self.job_title = self.job_id.name


    @api.onchange('address_id')

    def _onchange_address(self):

        self.work_phone = self.address_id.phone

        self.mobile_phone = self.address_id.mobile


    @api.onchange('company_id')

    def _onchange_company(self):

        address = self.company_id.partner_id.address_get(['default'])

        self.address_id = address['default'] if address else False


    @api.onchange('department_id')

    def _onchange_department(self):

        if self.department_id.manager_id:

            self.parent_id = self.department_id.manager_id


    @api.onchange('user_id')

    def _onchange_user(self):

        if self.user_id:

            self.update(self._sync_user(self.user_id))

            if not self.name:

                self.name = self.user_id.name


    @api.onchange('resource_calendar_id')

    def _onchange_timezone(self):

        if self.resource_calendar_id and not self.tz:

            self.tz = self.resource_calendar_id.tz


    def _sync_user(self, user):

        vals = dict(

            image_1920=user.image_1920,

            work_email=user.email,

            user_id=user.id,

        )

        if user.tz:

            vals['tz'] = user.tz

        return vals


    @api.model

    def create(self, vals):

        if vals.get('user_id'):

            user = self.env['res.users'].browse(vals['user_id'])

            vals.update(self._sync_user(user))

            vals['name'] = vals.get('name', user.name)

        employee = super(HrEmployeePrivate, self).create(vals)

        url = '/web#%s' % url_encode({'action': 'hr.plan_wizard_action', 'active_id': employee.id, 'active_model': 'hr.employee'})

        employee._message_log(body=_('<b>Congratulations!</b> May I recommend you to setup an <a href="%s">onboarding plan?</a>') % (url))

        if employee.department_id:

            self.env['mail.channel'].sudo().search([

                ('subscription_department_ids', 'in', employee.department_id.id)

            ])._subscribe_users()

        return employee


    def write(self, vals):

        if 'address_home_id' in vals:

            account_id = vals.get('bank_account_id') or self.bank_account_id.id

            if account_id:

                self.env['res.partner.bank'].browse(account_id).partner_id = vals['address_home_id']

        if vals.get('user_id'):

            vals.update(self._sync_user(self.env['res.users'].browse(vals['user_id'])))

        res = super(HrEmployeePrivate, self).write(vals)

        if vals.get('department_id') or vals.get('user_id'):

            department_id = vals['department_id'] if vals.get('department_id') else self[:1].department_id.id

            # When added to a department or changing user, subscribe to the channels auto-subscribed by department

            self.env['mail.channel'].sudo().search([

                ('subscription_department_ids', 'in', department_id)

            ])._subscribe_users()

        return res


    def unlink(self):

        resources = self.mapped('resource_id')

        super(HrEmployeePrivate, self).unlink()

        return resources.unlink()


    def toggle_active(self):

        res = super(HrEmployeePrivate, self).toggle_active()

        self.filtered(lambda employee: employee.active).write({

            'departure_reason': False,

            'departure_description': False,

        })

        if len(self) == 1 and not self.active:

            return {

                'type': 'ir.actions.act_window',

                'name': _('Register Departure'),

                'res_model': 'hr.departure.wizard',

                'view_mode': 'form',

                'target': 'new',

                'context': {'active_id': self.id},

                'views': [[False, 'form']]

            }

        return res


    def generate_random_barcode(self):

        for employee in self:

            employee.barcode = '041'+"".join(choice(digits) for i in range(9))


    @api.depends('address_home_id.parent_id')

    def _compute_is_address_home_a_company(self):

        """Checks that chosen address (res.partner) is not linked to a company.

        """

        for employee in self:

            try:

                employee.is_address_home_a_company = employee.address_home_id.parent_id.id is not False

            except AccessError:

                employee.is_address_home_a_company = False


    # ---------------------------------------------------------

    # Business Methods

    # ---------------------------------------------------------


    @api.model

    def get_import_templates(self):

        return [{

            'label': _('Import Template for Employees'),

            'template': '/hr/static/xls/hr_employee.xls'

        }]


    def _post_author(self):

        """

        When a user updates his own employee's data, all operations are performed

        by super user. However, tracking messages should not be posted as OdooBot

        but as the actual user.

        This method is used in the overrides of `_message_log` and `message_post`

        to post messages as the correct user.

        """

        real_user = self.env.context.get('binary_field_real_user')

        if self.env.is_superuser() and real_user:

            self = self.with_user(real_user)

        return self


    # ---------------------------------------------------------

    # Messaging

    # ---------------------------------------------------------


    def _message_log(self, **kwargs):

        return super(HrEmployeePrivate, self._post_author())._message_log(**kwargs)


    @api.returns('mail.message', lambda value: value.id)

    def message_post(self, **kwargs):

        return super(HrEmployeePrivate, self._post_author()).message_post(**kwargs)


    def _sms_get_partner_fields(self):

        return ['user_partner_id']


    def _sms_get_number_fields(self):

        return ['mobile_phone']


hr.xml:

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

        <record id="view_employee_filter" model="ir.ui.view">
            <field name="name">hr.employee.search</field>
            <field name="model">hr.employee</field>
            <field name="arch" type="xml">
                <search string="Employees">
                    <field name="name" string="Employee" filter_domain="['|', ('work_email', 'ilike', self), ('name', 'ilike', self)]"/>
                    <field name="category_ids" groups="hr.group_hr_user"/>
                    <field name="job_id"/>
                    <separator/>
                    <filter string="Unread Messages" name="message_needaction" domain="[('message_needaction', '=', True)]"/>
                    <separator/>
                    <filter invisible="1" string="Late Activities" name="activities_overdue"
                        domain="[('activity_ids.date_deadline', '&lt;', context_today().strftime('%Y-%m-%d'))]"/>
                    <filter invisible="1" string="Today Activities" name="activities_today"
                        domain="[('activity_ids.date_deadline', '=', context_today().strftime('%Y-%m-%d'))]"/>
                    <filter invisible="1" string="Future Activities" name="activities_upcoming_all"
                        domain="[('activity_ids.date_deadline', '&gt;', context_today().strftime('%Y-%m-%d'))]"/>
                    <separator/>
                    <filter string="Archived" name="inactive" domain="[('active', '=', False)]"/>
                    <group expand="0" string="Group By">
                        <filter name="group_manager" string="Manager" domain="[]" context="{'group_by': 'parent_id'}"/>
                        <filter name="group_department" string="Department" domain="[]" context="{'group_by': 'department_id'}"/>
                        <filter name="group_job" string="Job" domain="[]" context="{'group_by': 'job_id'}"/>
                    </group>
                    <searchpanel>
                        <field name="company_id" groups="base.group_multi_company" icon="fa-building"/>
                        <field name="department_id" icon="fa-users"/>
                    </searchpanel>
                </search>
             </field>
        </record>

        <record id="view_employee_form" model="ir.ui.view">
            <field name="name">hr.employee.form</field>
            <field name="model">hr.employee</field>
            <field name="arch" type="xml">
                <form string="Employee" js_class="hr_employee_form">
                    <field name="active" invisible="1"/>
                    <field name="user_partner_id" invisible="1"/>
                    <field name="hr_presence_state" invisible="1"/>
                    <header>
                        <button string="Chat" class="btn btn-primary o_employee_chat_btn" attrs="{'invisible': [('user_id','=', False)]}"/>
                        <button name="%(plan_wizard_action)d" string="Launch Plan" type="action" groups="hr.group_hr_manager"/>
                    </header>
                    <sheet>
                        <div name="button_box" class="oe_button_box">
                            <button
                                id="hr_presence_button"
                                class="oe_stat_button"
                                disabled="1"
                                attrs="{'invisible': ['|', ('last_activity', '=', False), ('user_id', '=', False)]}">
                                <div role="img" class="fa fa-fw fa-circle text-success o_button_icon" attrs="{'invisible': [('hr_presence_state', '!=', 'present')]}" aria-label="Available" title="Available"/>
                                <div role="img" class="fa fa-fw fa-circle text-warning o_button_icon" attrs="{'invisible': [('hr_presence_state', '!=', 'to_define')]}" aria-label="Away" title="Away"/>
                                <div role="img" class="fa fa-fw fa-circle text-danger o_button_icon" attrs="{'invisible': [('hr_presence_state', '!=', 'absent')]}" aria-label="Not available" title="Not available"/>

                                <div class="o_stat_info" attrs="{'invisible': [('hr_presence_state', '=', 'present')]}">
                                    <span class="o_stat_text">
                                        Not Connected
                                    </span>
                                </div>
                                <div class="o_stat_info" attrs="{'invisible': [('hr_presence_state', '!=', 'present')]}">
                                    <span class="o_stat_value" attrs="{'invisible': [('last_activity_time', '=', False)]}">
                                        <field name="last_activity_time"/>
                                    </span>
                                    <span class="o_stat_value" attrs="{'invisible': [('last_activity_time', '!=', False)]}">
                                        <field name="last_activity"/>
                                    </span>
                                    <span class="o_stat_text">Present Since</span>
                                </div>
                            </button>
                        </div>
                        <widget name="web_ribbon" title="Archived" bg_color="bg-danger" attrs="{'invisible': [('active', '=', True)]}"/>
                        <field name="image_1920" widget='image' class="oe_avatar" options='{"zoom": true, "preview_image":"image_128"}'/>
                        <div class="oe_title">
                            <h1>
                                <field name="name" placeholder="Employee's Name" required="True"/>
                            </h1>
                            <h2>
                                <field name="job_title" placeholder="Job Position" />
                            </h2>
                            <field name="category_ids" widget="many2many_tags" options="{'color_field': 'color', 'no_create_edit': True}" placeholder="Tags"  groups="hr.group_hr_manager"/>
                        </div>
                        <group>
                            <group>
                                <field name="mobile_phone" widget="phone"/>
                                <field name="work_phone" widget="phone"/>
                                <field name="work_email" widget="email"/>
                                <field name="work_location"/>
                                <field name="company_id" groups="base.group_multi_company"/>
                            </group>
                            <group>
                                <field name="department_id"/>
                                <field name="job_id"/>
                                <field name="parent_id"/>
                            </group>
                        </group>
                        <notebook>
                            <page name="public" string="Work Information">
                                <div id="o_work_employee_container"> <!-- These two div are used to position org_chart -->
                                    <div id="o_work_employee_main">
                                        <group string="Location">
                                            <field name="address_id"
                                                context="{'show_address': 1}"
                                                options='{"always_reload": True, "highlight_first_line": True}'/>
                                        </group>
                                        <group name="managers" string="Responsibles">
                                            <field name="coach_id"/>
                                        </group>
                                        <group name="departure" string="Departure" attrs="{'invisible': [('active', '=', True)]}">
                                            <field name="departure_reason"/>
                                            <field name="departure_description"/>
                                        </group>
                                        <group string="Schedule" groups="base.group_no_one">
                                            <field name="resource_calendar_id" required="1"/>
                                            <field name="tz"/>
                                        </group>
                                    </div>
                                </div>
                            </page>
                            <page name="personal_information" string="Private Information" groups="hr.group_hr_user">
                                <group>
                                    <group string="Private Contact">
                                        <field name="address_home_id"
                                            context="{
                                                'show_address': 1,
                                                'default_type': 'private',
                                                'form_view_ref': 'base.res_partner_view_form_private'}"
                                            options='{"always_reload": True, "highlight_first_line": True}'/>
                                        <field name='birthday'/>
                                        <field name="age"/>
                                        <field name="private_email" string="Email"/>
                                        <field name="phone" groups="hr.group_hr_user" string="Phone"/>
                                        <field name="bank_account_id" context="{'default_partner_id': address_home_id}"/>
                                        <field name="km_home_work" groups="hr.group_hr_user"/>
                                    </group>
                                    <group string="Citizenship">
                                        <field name="country_id" options='{"no_open": True, "no_create": True}'/>
                                        <field name="identification_id" groups="hr.group_hr_user"/>
                                        <field name="passport_id" groups="hr.group_hr_user"/>
                                        <field name="gender"/>
                                        <field name="place_of_birth" groups="hr.group_hr_user"/>
                                        <field name="country_of_birth" groups="hr.group_hr_user"/>
                                    </group>
                                    <group string="Marital Status">
                                        <field name="marital"/>
                                        <field name="spouse_complete_name" attrs="{'invisible': [('marital', 'not in', ['married', 'cohabitant'])]}" groups="hr.group_hr_user"/>
                                        <field name="spouse_birthdate" attrs="{'invisible': [('marital', 'not in', ['married', 'cohabitant'])]}" groups="hr.group_hr_user"/>
                                    </group>
                                    <group string="Dependant">
                                        <field name="children"/>
                                    </group>
                                    <group string="Emergency">
                                        <field name="emergency_contact"/>
                                        <field name="emergency_phone"/>
                                    </group>
                                    <group string="Work Permit" name="work_permit">
                                        <field name="visa_no"/>
                                        <field name="permit_no"/>
                                        <field name="visa_expire"/>
                                    </group>
                                    <group string="Education">
                                        <field name="certificate"/>
                                        <field name="study_field"/>
                                        <field name="study_school"/>
                                    </group>
                                </group>
                            </page>
                            <page name="hr_settings" string="HR Settings" groups="hr.group_hr_user">
                                <group>
                                    <group string='Status' name="active_group">
                                        <field name="user_id" string="Related User"/>
                                    </group>
                                    <group string="Attendance" name="identification_group">
                                        <field name="pin" string="PIN Code"/>
                                        <label for="barcode"/>
                                        <div class="o_row">
                                            <field name="barcode"/>
                                            <button string="Generate" class="btn btn-link" type="object" name="generate_random_barcode" attrs="{'invisible': [('barcode', '!=', False)]}"/>
                                            <button name="%(hr_employee_print_badge)d" string="Print Badge" class="btn btn-link" type="action" attrs="{'invisible': [('barcode', '=', False)]}"/>
                                        </div>
                                    </group>
                                </group>
                            </page>
                        </notebook>

                    </sheet>
                    <div class="oe_chatter">
                        <field name="message_follower_ids" widget="mail_followers" groups="base.group_user"/>
                        <field name="activity_ids" widget="mail_activity"/>
                        <field name="message_ids" widget="mail_thread"/>
                    </div>
                </form>
            </field>
        </record>

        <record id="view_employee_tree" model="ir.ui.view">
            <field name="name">hr.employee.tree</field>
            <field name="model">hr.employee</field>
            <field name="arch" type="xml">
                <tree string="Employees">
                    <field name="name"/>
                    <field name="work_phone"/>
                    <field name="work_email"/>
                    <field name="company_id" groups="base.group_multi_company"/>
                    <field name="department_id"/>
                    <field name="job_id"/>
                    <field name="parent_id"/>
                    <field name="coach_id" invisible="1"/>
                </tree>
            </field>
        </record>

        <record id="hr_kanban_view_employees" model="ir.ui.view">
           <field name="name">hr.employee.kanban</field>
           <field name="model">hr.employee</field>
           <field name="priority">10</field>
           <field name="arch" type="xml">
               <kanban class="o_hr_employee_kanban">
                   <field name="id"/>
                   <field name="hr_presence_state"/>
                   <templates>
                       <t t-name="kanban-box">
                       <div class="oe_kanban_global_click o_kanban_record_has_image_fill o_hr_kanban_record">
                           <field name="image_128" widget="image" class="o_kanban_image_fill_left" options="{'zoom': true, 'zoom_delay': 1000, 'background': true, 'preventClicks': false}"/>

                            <div class="oe_kanban_details">
                               <div class="o_kanban_record_top">
                                   <div class="o_kanban_record_headings">
                                       <strong class="o_kanban_record_title">
                                            <div class="float-right" t-if="record.hr_presence_state.raw_value == 'present'">
                                                <span class="fa fa-circle text-success" role="img" aria-label="Present" title="Present" name="presence_present"></span>
                                            </div>
                                            <div class="float-right" t-if="record.hr_presence_state.raw_value == 'absent'">
                                                <span class="fa fa-circle text-danger" role="img" aria-label="Absent" title="Absent" name="presence_absent"></span>
                                            </div>
                                            <div class="float-right" t-if="record.hr_presence_state.raw_value == 'to_define'">
                                                <span class="fa fa-circle text-warning" role="img" aria-label="To define" title="To define" name="presence_to_define"></span>
                                            </div>
                                            <field name="name" placeholder="Employee's Name"/>
                                       </strong>
                                       <span t-if="record.job_title.raw_value" class="o_kanban_record_subtitle"><field name="job_title"/></span>
                                   </div>
                               </div>
                               <field name="category_ids" widget="many2many_tags" options="{'color_field': 'color'}" groups="hr.group_hr_manager"/>
                               <ul>
                                   <li id="last_login"/>
                                   <li t-if="record.work_email.raw_value" class="o_text_overflow"><field name="work_email" /></li>
                                   <li t-if="record.work_phone.raw_value"><field name="work_phone" /></li>
                               </ul>
                           </div>
                       </div>
                       </t>
                   </templates>
               </kanban>
            </field>
        </record>

        <record id="hr_employee_view_activity" model="ir.ui.view">
            <field name="name">hr.employee.activity</field>
            <field name="model">hr.employee</field>
            <field name="arch" type="xml">
                <activity string="Employees">
                    <field name="id"/>
                    <templates>
                        <div t-name="activity-box">
                            <img t-att-src="activity_image('hr.employee', 'image_128', record.id.raw_value)" role="img" t-att-title="record.id.value" t-att-alt="record.id.value"/>
                            <div>
                                <field name="name" display="full"/>
                                <field name="job_id" muted="1" display="full"/>
                            </div>
                        </div>
                    </templates>
                </activity>
            </field>
        </record>

        <record id="open_view_employee_list_my" model="ir.actions.act_window">
            <field name="name">Employees</field>
            <field name="res_model">hr.employee</field>
            <field name="view_mode">kanban,tree,form,activity</field>
            <field name="domain">[]</field>
            <field name="context">{}</field>
            <field name="view_id" eval="False"/>
            <field name="search_view_id" ref="view_employee_filter"/>
            <field name="help" type="html">
             <p class="o_view_nocontent_smiling_face">
               Add a new employee
             </p><p>
               With just a quick glance on the Odoo employee screen, you
               can easily find all the information you need for each person;
               contact data, job position, availability, etc.
             </p>
            </field>
        </record>

        <record id="open_view_employee_tree" model="ir.actions.act_window">
            <field name="name">Employees Structure</field>
            <field name="res_model">hr.employee</field>
            <field name="view_mode">tree,form</field>
            <field name="view_id" ref="view_employee_tree"/>
            <field name="domain">[('parent_id','=',False)]</field>
            <field name="search_view_id" ref="view_employee_filter"/>
        </record>

        <record id="open_view_employee_list" model="ir.actions.act_window">
            <field name="name">Employees</field>
            <field name="res_model">hr.employee</field>
            <field name="view_mode">form,tree</field>
            <field name="view_id" eval="False"/>
            <field name="search_view_id" ref="view_employee_filter"/>
        </record>

        <!-- Employee tree by manager -->
        <record id="view_partner_tree2" model="ir.ui.view">
            <field name="name">hr.employee.tree</field>
            <field name="model">hr.employee</field>
            <field name="priority" eval="20"/>
            <field name="arch" type="xml">
                <tree string="Employees">
                    <field name="name"/>
                    <field name="work_phone"/>
                    <field name="work_email"/>
                    <field name="company_id" groups="base.group_multi_company"/>
                    <field name="department_id"/>
                    <field name="job_id"/>
                    <field name="coach_id" invisible="1"/>
                    <field name="parent_id" invisible="1"/>
                </tree>
            </field>
        </record>

        <record id="act_employee_from_department" model="ir.actions.act_window">
            <field name="name">Employees</field>
            <field name="res_model">hr.employee</field>
            <field name="view_mode">kanban,form,tree</field>
            <field name="search_view_id" ref="view_employee_filter"/>
            <field name="context">{
                "searchpanel_default_department_id": active_id,
                "default_department_id": active_id}
            </field>
            <field name="help" type="html">
              <p class="o_view_nocontent_smiling_face">
                Add a new employee
              </p><p>
                With just a quick glance on the Odoo employee screen, you
                can easily find all the information you need for each person;
                contact data, job position, availability, etc.
              </p>
            </field>
        </record>

    </data>
</odoo>

Avatar
Discard
Best Answer

According to error. You have not created age name filed in it's related module.

In below code

    _name = "hr.employee"
    _description = "Employee"
    _order = 'name'
    _inherit = ['hr.employee.base', 'mail.thread', 'mail.activity.mixin', 'resource.mixin', 'image.mixin']

you are making mistake you are create new class with the name of "hr.employee" and also inheriting module with the name of "hr.employee.base" in same class try to do both of them in separate classes like

Class HrEmployee   
    _name = "hr.employee"
    _description = "Employee"
    _order = 'name'
Class HrEmployeBase  
    _inherit = ['hr.employee.base', 'mail.thread', 'mail.activity.mixin', 'resource.mixin', 'image.mixin']
after following above code the create field age and it will work


Note: If you will got any issue let me know.
Avatar
Discard