Server IP : 127.0.0.2 / Your IP : 3.149.4.109 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/fleet/views/ |
Upload File : |
<?xml version="1.0" encoding="utf-8"?> <odoo> <record id="fleet_costs_reporting_action" model="ir.actions.act_window"> <field name="name">Costs Analysis</field> <field name="res_model">fleet.vehicle.cost</field> <field name="view_type">form</field> <field name="view_mode">pivot,graph</field> <field name="view_id"></field> <!-- force empty --> <field name="context">{"search_default_parent_false" : True,}</field> <field name="help" type="html"> <p> Odoo helps you managing the costs for your different vehicles Costs are generally created from services and contract and appears here. </p> <p> Thanks to the different filters, Odoo can only print the effective costs, sort them by type and by vehicle. </p> </field> </record> <record id="fleet_reporting_pivot_action" model="ir.actions.act_window.view"> <field name="sequence" eval="2"/> <field name="view_mode">pivot</field> <field name="view_id" ref="fleet_vehicle_cost_view_pivot"/> <field name="act_window_id" ref="fleet_costs_reporting_action"/> </record> <record id="fleet_reporting_graph_action" model="ir.actions.act_window.view"> <field name="sequence" eval="2"/> <field name="view_mode">graph</field> <field name="view_id" ref="fleet_vehicle_cost_view_graph"/> <field name="act_window_id" ref="fleet_costs_reporting_action"/> </record> <record id="fleet_costs_reporting_non_effective_action" model="ir.actions.act_window"> <field name="name">Indicative Costs Analysis</field> <field name="res_model">fleet.vehicle.cost</field> <field name="view_type">form</field> <field name="view_mode">pivot,graph</field> <field name="view_id"></field> <!-- force empty --> <field name="context">{"search_default_parent_true" : True,}</field> <field name="help" type="html"> <p> Odoo helps you managing the costs for your different vehicles Costs are generally created from services and contract and appears here. </p> <p> Thanks to the different filters, Odoo can only print the effective costs, sort them by type and by vehicle. </p> </field> </record> <record id="view_fleet_non_effective_pivot_action" model="ir.actions.act_window.view"> <field name="sequence" eval="2"/> <field name="view_mode">pivot</field> <field name="view_id" ref="fleet_vehicle_cost_indicative_view_pivot"/> <field name="act_window_id" ref="fleet_costs_reporting_non_effective_action"/> </record> <record id="view_fleet_non_effective_graph_action" model="ir.actions.act_window.view"> <field name="sequence" eval="2"/> <field name="view_mode">graph</field> <field name="view_id" ref="fleet_vehicle_cost_indicative_view_graph"/> <field name="act_window_id" ref="fleet_costs_reporting_non_effective_action"/> </record> <menuitem name="Reports" parent="menu_root" id="menu_fleet_reporting" sequence="99" groups="fleet_group_manager"/> <menuitem id="menu_fleet_reporting_costs" name="Costs" parent="menu_fleet_reporting" action="fleet_costs_reporting_action" sequence="1" groups="fleet_group_manager"/> <menuitem id="menu_fleet_reporting_indicative_costs" name="Indicative Costs" parent="menu_fleet_reporting" action="fleet_costs_reporting_non_effective_action" sequence="2" groups="fleet_group_manager"/> </odoo>