Server IP : 127.0.0.2 / Your IP : 3.133.100.204 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/website_sale/data/ |
Upload File : |
<?xml version="1.0" encoding="utf-8"?> <odoo> <data noupdate="1"> <record id="menu_shop" model="website.menu"> <field name="name">Shop</field> <field name="url">/shop</field> <field name="parent_id" ref="website.main_menu"/> <field name="sequence" type="int">20</field> </record> <record id="action_open_website" model="ir.actions.act_url"> <field name="name">Website Shop</field> <field name="target">self</field> <field name="url">/shop</field> </record> <record id="base.open_menu" model="ir.actions.todo"> <field name="action_id" ref="action_open_website"/> <field name="state">open</field> </record> <record id="website_sale.image_promo" model="product.style"> <field name="name">Sale Ribbon</field> <field name="html_class">oe_ribbon_promo</field> </record> <record id="website_sale.image_full" model="product.style"> <field name="name">Image Full</field> <field name="html_class">oe_image_full</field> </record> <record model="crm.team" id="sales_team.salesteam_website_sales"> <field name="use_quotations" eval="False"/> </record> <record model="website" id="website.default_website"> <field name="salesteam_id" ref="sales_team.salesteam_website_sales"/> </record> <record model="product.pricelist" id="product.list0"> <field name="selectable" eval="False" /> <field name="website_id" ref="website.default_website" /> </record> </data> <data> <record id="sale.model_sale_order" model="ir.model"> <field name="website_form_access" eval="True"/> <field name="website_form_label">Sale Order</field> </record> <function model="ir.model.fields" name="formbuilder_whitelist"> <value>sale.order</value> <value eval="[ 'client_order_ref', ]"/> </function> <record id="base.model_res_partner" model="ir.model"> <field name="website_form_access">True</field> <field name="website_form_label">Customer</field> </record> <function model="ir.model.fields" name="formbuilder_whitelist"> <value>res.partner</value> <value eval="[ 'name', 'phone', 'email', 'city', 'zip', 'street', 'state_id', 'country_id', 'vat', 'company_name' ]"/> </function> </data> </odoo>