Server IP : 127.0.0.2 / Your IP : 3.147.103.209 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/google_spreadsheet/views/ |
Upload File : |
<?xml version="1.0" encoding="utf-8"?> <odoo> <!-- add google drive config field in user form --> <record id="view_ir_attachment_google_spreadsheet_tree" model="ir.ui.view"> <field name="name">ir.attachment.google.spreadsheet.tree</field> <field name="model">ir.attachment</field> <field name="arch" type="xml"> <tree string="Google Spreadsheets"> <field name="name" string="Name"/> <field name="url" /> </tree> </field> </record> <record id="view_ir_attachment_google_spreadsheet_form" model="ir.ui.view"> <field name="name">ir.attachment.google.spreadsheet.form</field> <field name="model">ir.attachment</field> <field name="arch" type="xml"> <form string="Google Spreadsheets"> <sheet> <group> <group> <field name="name" string="Name"/> <field name="url" widget="url"/> </group> <group colspan="2"> <label for="description" colspan="2"/> <field name="description" nolabel="1" colspan="2"/> </group> </group> </sheet> </form> </field> </record> <record id="action_ir_attachment_google_spreadsheet_tree" model="ir.actions.act_window"> <field name="name">Google Spreadsheets</field> <field name="res_model">ir.attachment</field> <field name="view_type">form</field> <field name="view_mode">tree,form</field> <field name="context">{}</field> <field name="domain">[('url', '=ilike', '%google%/spreadsheet%')]</field> <field name="help">Google Spreadsheets</field> </record> <record id="action_ir_attachment_google_spreadsheet_tree_view" model="ir.actions.act_window.view"> <field eval="1" name="sequence"/> <field name="view_mode">tree</field> <field name="view_id" ref="view_ir_attachment_google_spreadsheet_tree"/> <field name="act_window_id" ref="action_ir_attachment_google_spreadsheet_tree"/> </record> <record id="action_ir_attachment_google_spreadsheet_form_view" model="ir.actions.act_window.view"> <field eval="2" name="sequence"/> <field name="view_mode">form</field> <field name="view_id" ref="view_ir_attachment_google_spreadsheet_form"/> <field name="act_window_id" ref="action_ir_attachment_google_spreadsheet_tree"/> </record> <menuitem id="menu_reporting_dashboard_google_spreadsheets" parent="base.menu_board_root" action="action_ir_attachment_google_spreadsheet_tree"/> </odoo>