Server IP : 127.0.0.2 / Your IP : 3.129.218.83 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/res/ |
Upload File : |
<?xml version="1.0" encoding="UTF-8"?> <odoo> <data> <report id="preview_rml_report" model="res.config.settings" name="preview.report" menu="False" rml="base/report/preview_report.rml" string="Preview RML Report"/> <record id="view_company_form" model="ir.ui.view"> <field name="name">res.company.form</field> <field name="model">res.company</field> <field name="arch" type="xml"> <form string="Company"> <sheet> <field name="logo" widget="image" class="oe_avatar"/> <div class="oe_title"> <label for="name" class="oe_edit_only"/> <h1> <field name="name" class="oe_inline"/> </h1> <label for="rml_header1" class="oe_edit_only"/> <h3> <field name="rml_header1" placeholder="e.g. Global Business Solutions"/> </h3> </div> <notebook colspan="4"> <page string="General Information"> <group> <group> <field name="partner_id" readonly="1" required="0" groups="base.group_no_one"/> <label for="street" string="Address"/> <div class="o_address_format"> <field name="street" placeholder="Street..." class="o_address_street"/> <field name="street2" placeholder="Street 2..." class="o_address_street"/> <field name="city" placeholder="City" class="o_address_city"/> <field name="state_id" class="o_address_state" placeholder="State" options='{"no_open": True}'/> <field name="zip" placeholder="ZIP" class="o_address_zip"/> <field name="country_id" placeholder="Country" class="o_address_country" options='{"no_open": True}'/> </div> <field name="website" widget="url" placeholder="e.g. www.odoo.com"/> </group> <group> <field name="phone"/> <field name="fax"/> <field name="email"/> <field name="vat"/> <field name="company_registry"/> <field name="currency_id" options="{'no_create': True}" id="company_currency"/> <field name="parent_id" groups="base.group_multi_company"/> <field name="sequence" invisible="1"/> </group> </group> </page> </notebook> </sheet> </form> </field> </record> <record id="view_company_tree" model="ir.ui.view"> <field name="name">res.company.tree</field> <field name="model">res.company</field> <field name="field_parent">child_ids</field> <field name="arch" type="xml"> <tree string="Companies"> <field name="sequence" widget="handle"/> <field name="name"/> <field name="partner_id"/> </tree> </field> </record> <record id="company_normal_action_tree" model="ir.actions.act_window"> <field name="name">Companies</field> <field name="type">ir.actions.act_window</field> <field name="res_model">res.company</field> <field name="view_type">form</field> <field name="view_mode">tree,form</field> <field name="domain">[('id','=',active_id)]</field> </record> <record id="action_res_company_form" model="ir.actions.act_window"> <field name="name">Companies</field> <field name="type">ir.actions.act_window</field> <field name="res_model">res.company</field> <field name="view_type">form</field> <field name="help">Create and manage the companies that will be managed by Odoo from here. Shops or subsidiaries can be created and maintained from here.</field> </record> <menuitem action="action_res_company_form" id="menu_action_res_company_form" parent="base.menu_users"/> <record id="ir_open_company" model="ir.values"> <field eval="'tree_but_open'" name="key2"/> <field eval="'res.company'" name="model"/> <field name="name">Companies</field> <field eval="'ir.actions.act_window,%d'%company_normal_action_tree" name="value"/> </record> </data> </odoo>