You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
2.3 KiB
62 lines
2.3 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
|
|
<report id="action_scrap_report"
|
|
model="stock.scrap"
|
|
string="Scrap Report"
|
|
report_type="qweb-pdf"
|
|
file="scrap_source_report.scrap_report"
|
|
name="scrap_source_report.scrap_report"
|
|
/>
|
|
|
|
<template id="scrap_report">
|
|
<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>Scrap Name : <span t-field="o.name"/></h2>
|
|
</div>
|
|
|
|
</div>
|
|
<div class="row mt32 mb32">
|
|
<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.scrap_qty"/><span t-field="o.product_uom_id"/>
|
|
</div>
|
|
|
|
<div class="col-xs-3">
|
|
<strong>Source Document:</strong><br/>
|
|
<span t-esc="o.origin"/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
<div class="row mt32 mb32">
|
|
<div class="col-xs-3">
|
|
<strong>Expected Date:</strong><br/>
|
|
<span t-field="o.date_expected"/>
|
|
</div>
|
|
<div class="col-xs-3">
|
|
<strong>Picking:</strong><br/>
|
|
<span t-field="o.picking_id"/>
|
|
</div>
|
|
<div class="col-xs-3">
|
|
<strong>Manufacturing Order:</strong><br/>
|
|
<span t-field="o.production_id"/>
|
|
</div>
|
|
|
|
</div>
|
|
<div class="oe_structure"/>
|
|
</div>
|
|
</t>
|
|
</t>
|
|
</t>
|
|
</template>
|
|
</odoo>
|