clinic/netforce_clinic/templates/report_medical_summary.hbs

31 lines
810 B
Handlebars

<center>
<h2>จำนวนยาที่ใช้</h2>
<h3>
{{parent_company_name}}&nbsp;{{company_name}}<br/>
</h3>
<h4>
ประจำเดือน {{month}} {{year}}
</h4>
</center>
<table class="table table-bordered">
<thead>
{{#each titles}}
<th style="text-align:center">{{name}}</th>
{{/each}}
</thead>
<tbody>
{{#each lines}}
<tr>
<td style="width:20%;">
<a href="/ui#name=product&active_id={{prod_id}}&mode=form"> {{prod_name}} </a>
</td>
{{#each sub_lines}}
<td style="text-align:center">{{qty}}</td>
{{/each}}
</tr>
{{/each}}
</tbody>
<tfoot>
</tfoot>
</table>