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.
88 lines
3.7 KiB
88 lines
3.7 KiB
<odoo>
|
|
<template id="vehicle_crop">
|
|
<t t-call="web.html_container">
|
|
<t t-foreach="docs" t-as="doc">
|
|
<t t-call="web.external_layout">
|
|
<div class="page">
|
|
<strong>
|
|
<h1>Crop Vehicle Report</h1>
|
|
</strong>
|
|
<table class="table table-sm"
|
|
style="border: 2px solid black;">
|
|
<tr>
|
|
<td>REFERENCE</td>
|
|
<td>:</td>
|
|
<td>
|
|
<t t-esc="doc.ref"/>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>FARMER</td>
|
|
<td>:</td>
|
|
<td>
|
|
<t t-esc="doc.farmer_id.farmer_name.name"/>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>CROP</td>
|
|
<td>:</td>
|
|
<td>
|
|
<t t-esc="doc.seed_id.name"/>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>LOCATION</td>
|
|
<td>:</td>
|
|
<td>
|
|
<t t-esc="doc.location_id.location_name"/>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<br>
|
|
</br>
|
|
<style>
|
|
table, thead, th, td, tr, tbody {
|
|
border: 1px solid black;
|
|
border-collapse: collapse;
|
|
padding: 5px;
|
|
}
|
|
</style>
|
|
<table class="table table-sm"
|
|
style="border: 2px solid black;">
|
|
<thead>
|
|
<tr>
|
|
<strong>
|
|
<th>Vehicle</th>
|
|
<th>Quantity</th>
|
|
</strong>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr t-foreach="doc.machinery_ids" t-as="line">
|
|
<td>
|
|
<span t-esc="'%s/%s/%s' % (line.vehicle_id.vehicle_main_id.model_id.name,line.vehicle_id.vehicle_main_id.model_id.name,line.vehicle_id.vehicle_main_id.license_plate)"/>
|
|
</td>
|
|
<td>
|
|
<span t-esc="line.qty"/>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</t>
|
|
</t>
|
|
</t>
|
|
</template>
|
|
|
|
|
|
<record id="report_vehicle_crop" model="ir.actions.report">
|
|
<field name="name">Vehicle Crop Report</field>
|
|
<field name="model">crop.requests</field>
|
|
<field name="report_type">qweb-pdf</field>
|
|
<field name="report_name">agriculture_management_odoo.vehicle_crop</field>
|
|
<field name="report_file">agriculture_management_odoo.vehicle_crop</field>
|
|
<field name="binding_type">report</field>
|
|
<field name="binding_model_id" ref="model_crop_requests"/>
|
|
</record>
|
|
</odoo>
|