clinic/netforce_clinic/templates/report_medical_summary.hbs

34 lines
829 B
Handlebars

<center>
<h2>จำนวนยาที่ใช้</h2>
<h3>
{{parent_company_name}}&nbsp;{{company_name}}<br/>
</h3>
<h4>
ประจำเดือน {{month}} {{year}}
</h4>
</center>
<table class="table">
<thead>
<th>{{prod_name}}</th>
<th>{{sc}}</th>
<th>{{nhso}}</th>
<th>{{personal}}</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>{{nhso}}</td>
<td>{{personal}}</td>
<td>{{total}}</td>
</tr>
{{/each}}
</tbody>
<tfoot>
</tfoot>
</table>