Server IP : 127.0.0.2 / Your IP : 18.222.183.63 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_quote/report/ |
Upload File : |
<?xml version="1.0" encoding="utf-8"?> <odoo> <template id="report_saleorder_validity_date" inherit_id="sale.report_saleorder_document"> <xpath expr="//div[@class='page']/div[@id='informations']" position="inside"> <div t-if="doc.validity_date and doc.state in ['draft', 'sent']" class="col-xs-3"> <strong>Expiration Date:</strong> <p t-field="doc.validity_date"/> </div> </xpath> <xpath expr="//div[@class='page']/p[@id='fiscal_position_remark']" position="after"> <div t-if="doc.options and doc.state in ['draft', 'sent']" style="page-break-before:always;"> <h2> <span>Suggested Products</span> </h2> <table class="table table-condensed"> <thead> <tr> <th>Product</th> <th>Description</th> <th groups="sale.group_discount_per_so_line"></th> <th class="text-right">Unit Price</th> </tr> </thead> <tbody class="sale_tbody"> <tr t-foreach="doc.options" t-as="option"> <td> <span t-field="option.product_id.name"/> </td> <td> <span t-field="option.name"/> </td> <td groups="sale.group_discount_per_so_line"> <strong class="text-info"> <t t-esc="((option.discount % 1) and '%s' or '%d') % option.discount"/>% discount </strong> </td> <td> <strong class="text-right"> <div t-field="option.price_unit" t-options='{"widget": "monetary", "display_currency": doc.pricelist_id.currency_id}' t-att-style="option.discount and 'text-decoration: line-through' or None" t-att-class="option.discount and 'text-danger' or None"/> <div t-if="option.discount"> <t t-esc="'%.2f' % ((1-option.discount / 100.0) * option.price_unit)"/> </div> </strong> </td> </tr> </tbody> </table> </div> </xpath> </template> </odoo>