34 lines
821 B
Handlebars
34 lines
821 B
Handlebars
<center>
|
|
<h2>จำนวนยาที่ใช้</h2>
|
|
<h3>
|
|
{{parent_company_name}} {{company_name}}<br/>
|
|
</h3>
|
|
<h4>
|
|
ประจำเดือน {{month}} {{year}}
|
|
</h4>
|
|
</center>
|
|
<table class="table">
|
|
<thead>
|
|
<th>{{prod_name}}</th>
|
|
<th>{{sc}}</th>
|
|
<th>{{uc}}</th>
|
|
<th>{{others}}</th>
|
|
<th>รวม</th>
|
|
</thead>
|
|
<tbody>
|
|
{{#each lines}}
|
|
<tr>
|
|
<td>
|
|
<a href="/ui#name=product&active_id={{prod_id}}&mode=form"> {{prod_name}} </a>
|
|
</td>
|
|
<td>{{sc}}</td>
|
|
<td>{{uc}}</td>
|
|
<td>{{others}}</td>
|
|
<td>{{total}}</td>
|
|
</tr>
|
|
{{/each}}
|
|
</tbody>
|
|
<tfoot>
|
|
</tfoot>
|
|
</table>
|