Server IP : 127.0.0.2 / Your IP : 18.119.107.255 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/odoo/addons/base/ir/ |
Upload File : |
<?xml version="1.0" encoding="utf-8"?> <odoo> <!-- Attachment --> <record id="view_attachment_form" model="ir.ui.view"> <field name="model">ir.attachment</field> <field name="arch" type="xml"> <form string="Attachments"> <sheet> <label for="name" class="oe_edit_only"/> <h1> <field name="name"/> </h1> <group> <group> <field name="type"/> <field name="datas" filename="datas_fname" attrs="{'invisible':[('type','=','url')]}"/> <field name="datas_fname" invisible="1" attrs="{'invisible':[('type','=','url')]}" class="oe_inline oe_right"/> <field name="url" widget="url" attrs="{'invisible':[('type','=','binary')]}"/> <field name="mimetype" groups="base.group_no_one"/> </group> <group string="Attached To" groups="base.group_no_one"> <field name="res_model"/> <field name="res_field"/> <field name="res_id"/> <field name="res_name"/> <field name="company_id" groups="base.group_multi_company" options="{'no_create': True}"/> <field name="public"/> </group> <group string="History" groups="base.group_no_one"> <label for="create_uid" string="Creation"/> <div name="creation_div"> <field name="create_uid" readonly="1" class="oe_inline"/> on <field name="create_date" readonly="1" class="oe_inline"/> </div> </group> <group name="description_group" string="Description" groups="base.group_no_one" colspan="4"> <field name="description" nolabel="1"/> </group> <group groups="base.group_no_one" string="Indexed Content" colspan="4"> <field name="index_content" nolabel="1"/> </group> </group> </sheet> </form> </field> </record> <record id="view_attachment_tree" model="ir.ui.view"> <field name="model">ir.attachment</field> <field name="arch" type="xml"> <tree string="Attachments"> <field name="name"/> <field name="datas_fname"/> <field name="res_model"/> <field name="res_field"/> <field name="res_id"/> <field name="type"/> <field name="company_id" groups="base.group_multi_company"/> <field name="create_uid"/> <field name="create_date"/> </tree> </field> </record> <record id="view_attachment_search" model="ir.ui.view"> <field name="model">ir.attachment</field> <field name="arch" type="xml"> <search string="Attachments"> <field name="name" filter_domain="['|', ('name','ilike',self), ('datas_fname','ilike',self)]" string="Attachment"/> <field name="create_date"/> <filter name="url_filter" string="URL" domain="[('type','=','url')]"/> <filter name="binary_filter" string="Binary" domain="[('type','=','binary')]"/> <separator/> <filter name="my_documents_filter" string="My Document(s)" domain="[('create_uid','=',uid)]" help="Filter on my documents"/> <field name="create_uid"/> <field name="type"/> <group expand="0" string="Group By"> <filter name="owner" string="Owner" domain="[]" context="{'group_by':'create_uid'}"/> <filter string="Type" domain="[]" context="{'group_by':'type'}" groups="base.group_no_one"/> <filter string="Company" domain="[]" context="{'group_by':'company_id'}" groups="base.group_multi_company"/> <filter string="Creation Month" domain="[]" context="{'group_by':'create_date'}"/> <filter string="Attached Document Name" domain="[]" context="{'group_by': 'res_name'}"/> </group> </search> </field> </record> <record id="action_attachment" model="ir.actions.act_window"> <field name="name">Attachments</field> <field name="type">ir.actions.act_window</field> <field name="res_model">ir.attachment</field> <field name="view_type">form</field> <field name="view_id" eval="False"/> <field name="search_view_id" ref="view_attachment_search"/> <field name="help" type="html"> <p class="oe_view_nocontent_create"> Click here to create new documents. </p> <p> Also you will find here all the related documents and download it by clicking on any individual document. </p> </field> </record> <menuitem action="action_attachment" id="menu_action_attachment" parent="base.next_id_9"/> </odoo>