Server IP : 127.0.0.2 / Your IP : 3.15.160.18 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/mrp/report/ |
Upload File : |
<?xml version="1.0" encoding="utf-8"?> <odoo> <template id="report_mrporder"> <t t-call="report.html_container"> <t t-foreach="docs" t-as="o"> <t t-call="report.internal_layout"> <div class="page"> <div class="oe_structure"/> <div class="row"> <div class="col-xs-7"> <h2>Production Order # : <span t-field="o.name"/></h2> </div> <div class="col-xs-5"> <span class="text-right"> <img t-att-src="'/report/barcode/?type=%s&value=%s&width=%s&height=%s' % ('Code128', o.name, 600, 100)" style="width:350px;height:60px"/> </span> </div> </div> <div class="row mt32 mb32"> <div class="col-xs-3"> <strong>Source Document:</strong><br/> <span t-field="o.origin"/> </div> <div class="col-xs-3"> <strong>Product:</strong><br/> <span t-field="o.product_id"/> </div> <div class="col-xs-3"> <strong>Quantity:</strong><br/> <span t-field="o.product_qty"/> <span t-field="o.product_uom_id.name" groups="product.group_uom"/> </div> </div> <div class="row mt32 mb32"> <div class="col-xs-3"> <strong>Scheduled Date:</strong><br/> <span t-field="o.date_planned_start"/><span t-if="o.date_planned_finished"> - <span t-field="o.date_planned_finished"/></span> </div> <div class="col-xs-3"> <strong>Printing date:</strong><br/> <span t-esc="time.strftime('%Y-%m-%d')" t-options='{"widget": "date"}'/> </div> <div class="col-xs-3" t-if="'sale_ref' in o"> <strong>Partner Ref:</strong><br/> <span t-esc="'sale_ref' in o and o.sale_ref"/> </div> <div class="col-xs-3" t-if="'sale_name' in o"> <strong>SO Number:</strong><br/> <span t-esc="'sale_name' in o and o.sale_name"/> </div> </div> <div t-if="o.workorder_ids"> <strong>Work Orders</strong> <table class="table table-condensed"> <tr> <td class="text-center"><strong>Name</strong></td> <td class="text-center"><strong>WorkCenter</strong></td> <td class="text-center"><strong>No. Of Minutes</strong></td> </tr> <tr t-foreach="o.workorder_ids" t-as="line2"> <td class="text-center"><span t-field="line2.name"/></td> <td class="text-center"><span t-field="line2.workcenter_id.name"/></td> <td class="text-center"><span t-field="line2.duration_expected"/></td> </tr> </table> </div> <h3 t-if="o.move_raw_ids">Bill Of Material</h3> <table class="table table-condensed" t-if="o.move_raw_ids"> <thead> <tr> <th><strong>Product</strong></th> <th class="text-right"><strong>Quantity</strong></th> <th class="text-center" groups="stock.group_stock_multi_locations"> <strong>Source Location</strong> </th> <th class="text-center" groups="stock.group_stock_multi_locations"> <strong>Destination Location</strong> </th> <th class="text-center"> <strong>Barcode</strong> </th> </tr> </thead> <tbody> <t t-if="o.move_raw_ids"> <tr> <td colspan="4"><strong>Products to Consume</strong></td> </tr> <tr t-foreach="o.move_raw_ids" t-as="line"> <td> <span t-field="line.product_id"/> </td> <td class="text-right"> <span t-field="line.product_uom_qty"/> <span t-field="line.product_uom.name" groups="product.group_uom"/> </td> <td class="text-center" groups="stock.group_stock_multi_locations"> <span t-field="line.location_id.name"/> </td> <td class="text-center" groups="stock.group_stock_multi_locations"> <span t-field="line.location_dest_id.name"/> </td> <td class="text-center"> <span t-if="line.product_id.barcode"> <img t-att-src="'/report/barcode/?type=%s&value=%s&width=%s&height=%s' % ('Code128', line.product_id.barcode, 600, 100)" style="width:300px;height:50px"/> </span> </td> </tr> </t> </tbody> </table> <div class="oe_structure"/> </div> </t> </t> </t> </template> </odoo>