Server IP : 127.0.0.2 / Your IP : 18.119.10.46 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/rating_project_issue/views/ |
Upload File : |
<?xml version="1.0" encoding="utf-8"?> <odoo> <data> <record id="rating_rating_action_issue" model="ir.actions.act_window"> <field name="name">Customer Ratings</field> <field name="res_model">rating.rating</field> <field name="view_mode">kanban,pivot,graph</field> <field name="domain">[('res_model','=','project.issue'),('res_id','=',active_id), ('consumed', '=', True)]</field> <field name="help" type="html"> <p> Customer ratings on issues. If you have no rating, change your project Settings to activate it. </p> </field> </record> <record id="project_issue_view_form_inherit_rating" model="ir.ui.view"> <field name="name">project.issue.view.form.inherit.rating</field> <field name="model">project.issue</field> <field name="inherit_id" ref="project_issue.project_issue_form_view"/> <field name="arch" type="xml"> <xpath expr="//div[@name='button_box']" position="inside"> <button name="%(rating_rating_action_issue)d" type="action" class="oe_stat_button" icon="fa-smile-o"> <field name="rating_count" string="Rating" widget="statinfo"/> </button> </xpath> </field> </record> <record id="project_issue_view_kanban_inherit_rating" model="ir.ui.view"> <field name="name">project.issue.view.kanban.inherit.rating</field> <field name="model">project.issue</field> <field name="inherit_id" ref="project_issue.project_issue_kanban_view"/> <field name="arch" type="xml"> <xpath expr="//field[@name='color']" position="after"> <field name="rating_last_value"/> <field name="rating_ids"/> </xpath> <xpath expr="//div[@class='oe_kanban_bottom_left']" position="inside"> <b t-if="record.rating_ids.raw_value.length"> <span style="font-weight:bold;" class="fa fa-fw mt4 fa-smile-o text-success" t-if="record.rating_last_value.value == 10" title="Latest Rating: Happy"/> <span style="font-weight:bold;" class="fa fa-fw mt4 fa-meh-o text-warning" t-if="record.rating_last_value.value == 5" title="Latest Rating: Average"/> <span style="font-weight:bold;" class="fa fa-fw mt4 fa-frown-o text-danger" t-if="record.rating_last_value.value == 1" title="Latest Rating: Not Happy"/> </b> </xpath> </field> </record> <!-- inherit get state button on project --> <record id="project_issue_view_rating" model="ir.ui.view"> <field name="name">project.issue.view.rating</field> <field name="model">project.project</field> <field name="inherit_id" ref="project.edit_project"/> <field name="priority" eval="20"/> <field name="arch" type="xml"> <div name="button_box" position="inside"> <button name="action_view_issue_rating" attrs="{'invisible': ['|', '|', ('use_issues','=', False), ('rating_status', '=', 'no'), ('percentage_satisfaction_issue', '=', -1)]}" class="oe_stat_button oe_percent" type="object" icon="fa-smile-o"> <field string="% On issues" name="percentage_satisfaction_issue" widget="statinfo"/> </button> </div> </field> </record> </data> </odoo>