odoo/addons/mrp/views/report_mrporder.xml

136 lines
7.1 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>
<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"/>
<h2>Production Order N° : <span t-field="o.name"/></h2>
<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.code"/>
<span t-field="o.product_id.name"/>
</div>
<div class="col-xs-3">
<strong>Quantity:</strong><br/>
<span t-field="o.product_qty"/>
<span t-field="o.product_uom.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"/>
</div>
<div class="col-xs-3">
<strong>Printing date:</strong><br/>
<span t-esc="time.strftime('%Y-%m-%d')"/>
</div>
<div class="col-xs-3" t-if="'sale_ref' in o._columns.keys()">
<strong>Partner Ref:</strong><br/>
<span t-esc="'sale_ref' in o._columns.keys() and o.sale_ref"/>
</div>
<div class="col-xs-3" t-if="'sale_name' in o._columns.keys()">
<strong>SO Number:</strong><br/>
<span t-esc="'sale_name' in o._columns.keys() and o.sale_name"/>
</div>
</div>
<div t-if="o.workcenter_lines">
<strong>Work Orders</strong>
<table class="table table-condensed">
<tr>
<td class="text-center"><strong>Sequence</strong></td>
<td class="text-center"><strong>Name</strong></td>
<td class="text-center"><strong>WorkCenter</strong></td>
<td class="text-center"><strong>No. Of Cycles</strong></td>
<td class="text-center"><strong>No. Of Hours</strong></td>
</tr>
<tr t-foreach="o.workcenter_lines" t-as="line2">
<td class="text-center"><span t-field="line2.sequence"/></td>
<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.cycle"/></td>
<td class="text-center"><span t-field="line2.hour"/></td>
</tr>
</table>
</div>
<h3 t-if="o.move_lines">Bill Of Material</h3>
<table class="table table-condensed" t-if="o.move_lines or o.move_lines2">
<thead>
<tr>
<th><strong>Product</strong></th>
<th class="text-right"><strong>Quantity</strong></th>
<th class="text-center" groups="stock.group_locations">
<strong>Source Location</strong>
</th>
<th class="text-center" groups="stock.group_locations">
<strong>Destination Location</strong>
</th>
</tr>
</thead>
<tbody>
<t t-if="o.move_lines">
<tr>
<td colspan="4"><strong>Products to Consume</strong></td>
</tr>
<tr t-foreach="o.move_lines" t-as="line">
<td>
<span t-field="line.product_id.code"/>
<span t-field="line.product_id.name"/>
</td>
<td class="text-right">
<span t-field="line.product_qty"/>
<span t-field="line.product_uom.name" groups="product.group_uom"/>
</td>
<td class="text-center" groups="stock.group_locations">
<span t-field="line.location_id.name"/>
</td>
<td class="text-center" groups="stock.group_locations">
<span t-field="line.location_dest_id.name"/>
</td>
</tr>
</t>
<t t-if="o.move_lines2">
<tr>
<td colspan="4"><strong>Consumed Products</strong></td>
</tr>
<tr t-foreach="o.move_lines2" t-as="line2">>
<td>
<span t-field="line2.product_id.code"/>
<span t-field="line2.product_id.name"/>
</td>
<td class="text-right">
<span t-field="line2.product_qty"/>
<span t-field="line2.product_uom.name"/>
</td>
<td class="text-center" groups="stock.group_locations">
<span t-field="line2.location_id.name"/>
</td>
<td class="text-center" groups="stock.group_locations">
<span t-field="line2.location_dest_id.name"/>
</td>
</tr>
</t>
</tbody>
</table>
<div class="oe_structure"/>
</div>
</t>
</t>
</t>
</template>
</data>
</openerp>