clinic/netforce_clinic/templates/report_medical_summary.hbs

32 lines
806 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>
</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>
</tr>
{{/each}}
</tbody>
<tfoot>
</tfoot>
</table>