Server IP : 127.0.0.2 / Your IP : 3.143.4.96 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/views/ |
Upload File : |
<?xml version="1.0"?> <odoo> <record id="act_res_partner_2_sale_order" model="ir.actions.act_window"> <field name="name">Quotations and Sales</field> <field name="res_model">sale.order</field> <field name="view_type">form</field> <field name="view_mode">tree,form,graph</field> <field name="context">{'search_default_partner_id': active_id}</field> <field name="groups_id" eval="[(4, ref('sales_team.group_sale_salesman'))]"/> <field name="help" type="html"> <p class="oe_view_nocontent_create"> Create a Quotation, the first step of a new sale. </p><p> Your next actions should flow efficiently: confirm the Quotation to a Sale Order, then create the Invoice and collect the Payment. </p><p> Note that once a Quotation becomes a Sale Order, it will be moved from the Quotations list to the Sales Order list. </p> </field> </record> <!-- Partner kanban view inherte --> <record model="ir.ui.view" id="crm_lead_partner_kanban_view"> <field name="name">res.partner.kanban.saleorder.inherit</field> <field name="model">res.partner</field> <field name="inherit_id" ref="base.res_partner_kanban_view"/> <field name="priority" eval="20"/> <field name="groups_id" eval="[(4, ref('sales_team.group_sale_salesman'))]"/> <field name="arch" type="xml"> <field name="mobile" position="after"> <field name="sale_order_count"/> </field> <xpath expr="//div[@class='oe_kanban_partner_links']" position="inside"> <span t-if="record.sale_order_count.value>0" class="badge"><i class="fa fa-fw fa-usd"/><t t-esc="record.sale_order_count.value"/></span> </xpath> </field> </record> <record id="res_partner_view_buttons" model="ir.ui.view"> <field name="name">res.partner.view.buttons</field> <field name="model">res.partner</field> <field name="inherit_id" ref="base.view_partner_form" /> <field name="priority" eval="20"/> <field name="groups_id" eval="[(4, ref('sales_team.group_sale_salesman'))]"/> <field name="arch" type="xml"> <div name="button_box" position="inside"> <button class="oe_stat_button" type="action" name="%(sale.act_res_partner_2_sale_order)d" attrs="{'invisible': [('customer', '=', False)]}" icon="fa-usd"> <field string="Sales" name="sale_order_count" widget="statinfo"/> </button> </div> <page name="internal_notes" position="inside"> <group colspan="2" col="2" groups="sale.group_warning_sale"> <separator string="Warning on the Sales Order" colspan="4" /> <field name="sale_warn" nolabel="1" /> <field name="sale_warn_msg" colspan="3" nolabel="1" attrs="{'required':[('sale_warn','!=','no-message')],'readonly':[('sale_warn','=','no-message')]}"/> </group> </page> </field> </record> </odoo>