Server IP : 127.0.0.2 / Your IP : 52.15.143.11 Web Server : Apache/2.4.18 (Ubuntu) System : User : www-data ( ) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : disk_free_space,disk_total_space,diskfreespace,dl,exec,fpaththru,getmyuid,getmypid,highlight_file,ignore_user_abord,leak,listen,link,opcache_get_configuration,opcache_get_status,passthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,php_uname,phpinfo,posix_ctermid,posix_getcwd,posix_getegid,posix_geteuid,posix_getgid,posix_getgrgid,posix_getgrnam,posix_getgroups,posix_getlogin,posix_getpgid,posix_getpgrp,posix_getpid,posix,_getppid,posix_getpwnam,posix_getpwuid,posix_getrlimit,posix_getsid,posix_getuid,posix_isatty,posix_kill,posix_mkfifo,posix_setegid,posix_seteuid,posix_setgid,posix_setpgid,posix_setsid,posix_setuid,posix_times,posix_ttyname,posix_uname,pclose,popen,proc_open,proc_close,proc_get_status,proc_nice,proc_terminate,shell_exec,source,show_source,system,virtual MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /opt/odoo/addons/hr_gamification/views/ |
Upload File : |
<?xml version="1.0" encoding="UTF-8"?> <odoo> <record id="hr_badge_form_view" model="ir.ui.view"> <field name="name">gamification.badge.form.inherit</field> <field name="model">gamification.badge</field> <field name="inherit_id" ref="gamification.badge_form_view"/> <field name="arch" type="xml"> <div name="button_box" position="inside"> <button class="oe_stat_button" type="object" name="get_granted_employees" attrs="{'invisible': [('stat_count','=',0)]}" icon="fa-user"> <field name="granted_employees_count" string="Granted" widget="statinfo"/> </button> </div> </field> </record> <record id="goals_menu_groupby_action2" model="ir.actions.act_window"> <field name="res_model">gamification.goal</field> <field name="view_type">form</field> <field name="name">Goals History</field> <field name="view_mode">tree,kanban</field> <field name="context">{'search_default_group_by_user': True, 'search_default_group_by_definition': True}</field> <field name="domain">[('challenge_id.category', '=', 'hr')]</field> <field name="help" type="html"> <p class="oe_view_nocontent_create"> Click to create a goal. </p> <p> A goal is defined by a user and a goal type. Goals can be created automatically by using challenges. </p> </field> </record> <record id="challenge_list_action2" model="ir.actions.act_window"> <field name="name">Challenges</field> <field name="res_model">gamification.challenge</field> <field name="view_mode">kanban,tree,form</field> <field name="domain">[('category', '=', 'hr')]</field> <field name="context">{'search_default_inprogress':True, 'default_inprogress':True}</field> <field name="help" type="html"> <p class="oe_view_nocontent_create"> Click to create a challenge. </p> <p> Assign a list of goals to chosen users to evaluate them. The challenge can use a period (weekly, monthly...) for automatic creation of goals. The goals are created for the specified users or member of the group. </p> </field> </record> <record id="challenge_list_action2_view1" model="ir.actions.act_window.view"> <field name="sequence" eval="1"/> <field name="view_mode">kanban</field> <field name="act_window_id" ref="challenge_list_action2"/> <field name="view_id" ref="gamification.view_challenge_kanban"/> </record> <record id="challenge_list_action2_view2" model="ir.actions.act_window.view"> <field name="sequence" eval="10"/> <field name="view_mode">form</field> <field name="act_window_id" ref="challenge_list_action2"/> <field name="view_id" ref="gamification.challenge_form_view"/> </record> <menuitem id="menu_hr_gamification" parent="hr.menu_hr_root" name="Challenges" sequence="40"/> <menuitem id="gamification_badge_menu_hr" parent="menu_hr_gamification" action="gamification.badge_list_action" /> <menuitem id="gamification_challenge_menu_hr" parent="menu_hr_gamification" action="challenge_list_action2" groups="hr.group_hr_user"/> <menuitem id="gamification_goal_menu_hr" parent="menu_hr_gamification" action="goals_menu_groupby_action2" groups="hr.group_hr_user"/> </odoo>