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