Server IP : 127.0.0.2 / Your IP : 3.149.27.125 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/sale_crm/views/ |
Upload File : |
<?xml version="1.0" encoding="utf-8"?> <odoo> <!-- Top menu item --> <!-- This menu item's purpose is to rename it into 'Sales' in the case that CRM was installed after Sales --> <menuitem name="Sales" id="sales_team.menu_base_partner"/> <record id="crm_case_form_view_oppor" model="ir.ui.view"> <field name="name">crm.lead.oppor.inherited.crm</field> <field name="model">crm.lead</field> <field name="inherit_id" ref="crm.crm_case_form_view_oppor"/> <field name="arch" type="xml"> <xpath expr="//button[@name='action_set_won']" position="before"> <button string="New Quotation" name="%(sale_action_quotations_new)d" type="action" class="oe_highlight" context="{'search_default_partner_id': partner_id, 'default_partner_id': partner_id, 'default_team_id': team_id}"/> </xpath> <div name="button_box" position="inside"> <button class="oe_stat_button" type="action" name="%(sale_action_quotations)d" icon="fa-pencil-square-o" context="{'default_partner_id': partner_id, 'search_default_draft': 1}"> <div class="o_stat_info"> <field name="sale_number" class="o_stat_value"/> <span class="o_stat_text"> Quote(s) </span> </div> </button> <button class="oe_stat_button" type="action" attrs="{'invisible': [('sale_amount_total', '=', 0)]}" name="%(sale_action_quotations)d" icon="fa-usd" context="{'search_default_partner_id': partner_id, 'default_partner_id': partner_id, 'search_default_sales': 1}"> <div class="o_form_field o_stat_info"> <span class="o_stat_value"><field name="sale_amount_total" widget="monetary" options="{'currency_field': 'company_currency'}"/></span> <span class="o_stat_text"> Orders</span> </div> </button> </div> </field> </record> <!-- add needaction_menu_ref to reload quotation needaction when opportunity needaction is reloaded --> <record id="crm.crm_lead_opportunities" model="ir.actions.act_window"> <field name="context">{'default_type': 'opportunity', 'default_user_id': uid, 'needaction_menu_ref': 'sale.menu_sale_quotations'}</field> </record> </odoo>