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.
38 lines
1.5 KiB
38 lines
1.5 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<template id="stock_expiry_reports">
|
|
<t t-call="web.html_container">
|
|
<t t-call="web.external_layout">
|
|
<div class="page">
|
|
<div class="oe_structure"/>
|
|
<h2>Stock Expiry Report</h2>
|
|
<div class="oe_structure"/>
|
|
</div>
|
|
<table class="table table-condensed" name="stock_expiry_table">
|
|
<thead>
|
|
<tr>
|
|
<th>Lot/Serial Number</th>
|
|
<th>Product</th>
|
|
<t t-if="data['check']">
|
|
<th>Location</th>
|
|
</t>
|
|
<th>Date Of Expiry</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr t-foreach="dat" t-as="o">
|
|
<tr>
|
|
<td><span t-esc="o['name']"/></td>
|
|
<td><span t-esc="o['product_name']"/></td>
|
|
<t t-if="data['check']">
|
|
<td><span t-esc="o['location_name']"/></td>
|
|
</t>
|
|
<td><span t-esc="o['life_date']"/></td>
|
|
</tr>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</t>
|
|
</t>
|
|
</template>
|
|
</odoo>
|