66 lines
3.2 KiB
XML
Executable File
66 lines
3.2 KiB
XML
Executable File
<?xml version="1.0" encoding="UTF-8"?>
|
|
<templates>
|
|
<t t-name="sos_inventory.ParetoChartWidget">
|
|
<!-- <div class="container mt-3">
|
|
<canvas t-ref="paretoChart" id="paretoChart" width="100%" height="40"></canvas>
|
|
</div> -->
|
|
<div class="o_pareto_chart_container">
|
|
<div class="o_date_filter_controls" style="margin-left:20px;">
|
|
<table>
|
|
<tr>
|
|
<td>
|
|
<div class="form-group">
|
|
<label>Start Date:</label><br />
|
|
<input type="date" t-ref="startDate" class="form-control" style="min-width: 150px;" />
|
|
</div>
|
|
</td>
|
|
<td>
|
|
<div class="form-group">
|
|
<label>End Date:</label><br />
|
|
<input type="date" t-ref="endDate" class="form-control" style="min-width: 150px;" />
|
|
</div>
|
|
</td>
|
|
<td>
|
|
<div class="form-group">
|
|
<label>Goods Type:</label><br />
|
|
<select t-ref="goodsType" t-on-change="onGoodsTypeChange" class="form-select" style="min-width: 150px;">
|
|
<option selected="selected">Material</option>
|
|
<option>SFG</option>
|
|
<option>FG</option>
|
|
</select>
|
|
</div>
|
|
</td>
|
|
<td>
|
|
<div class="form-group">
|
|
<label>Category:</label><br />
|
|
<select t-ref="category" class="form-select" style="min-width: 150px;">
|
|
<option selected="selected" disabled="disabled">Select Category</option>
|
|
</select>
|
|
</div>
|
|
</td>
|
|
<td>
|
|
<div class="form-group">
|
|
<label>Supplier/Service:</label><br />
|
|
<select t-ref="servicesupplier" class="form-select" style="min-width: 150px;">
|
|
<option selected="selected" disabled="disabled">Select Supplier/Service</option>
|
|
</select>
|
|
</div>
|
|
</td>
|
|
<td>
|
|
<div class="form-group" style="margin-top: 1.5rem;">
|
|
<button t-on-click="onFilterClick" class="btn btn-primary">Graph</button>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
<!-- Placeholder for No Data -->
|
|
<div t-ref="noDataMessage" class="o_no_data_message" style="display: none; text-align: center; font-weight: bold; color: red; margin: 2rem;">
|
|
No Data Available for Selected Dates
|
|
</div>
|
|
<!-- <button class="btn btn-primary o-default-button" style="display:none;">Ok</button> -->
|
|
<canvas t-ref="paretoChart" id="paretoChart" width="1600" height="600"></canvas>
|
|
</div>
|
|
</t>
|
|
</templates>
|