clinic/netforce_clinic/templates/report_medical_summary.hbs

34 lines
829 B
Handlebars
Raw Normal View History

2014-11-05 07:03:12 +00:00
<center>
2014-11-12 11:13:23 +00:00
<h2>จำนวนยาที่ใช้</h2>
2014-11-05 07:03:12 +00:00
<h3>
{{parent_company_name}}&nbsp;{{company_name}}<br/>
</h3>
<h4>
ประจำเดือน {{month}} {{year}}
</h4>
</center>
<table class="table">
<thead>
2014-11-10 11:33:01 +00:00
<th>{{prod_name}}</th>
<th>{{sc}}</th>
<th>{{nhso}}</th>
<th>{{personal}}</th>
2014-11-12 11:13:23 +00:00
<th>รวม</th>
2014-11-05 07:03:12 +00:00
</thead>
<tbody>
{{#each lines}}
<tr>
2014-11-10 14:52:47 +00:00
<td>
<a href="/ui#name=product&active_id={{prod_id}}&mode=form"> {{prod_name}} </a>
</td>
2014-11-10 11:33:01 +00:00
<td>{{sc}}</td>
<td>{{nhso}}</td>
<td>{{personal}}</td>
2014-11-12 11:13:23 +00:00
<td>{{total}}</td>
2014-11-05 07:03:12 +00:00
</tr>
{{/each}}
</tbody>
<tfoot>
</tfoot>
</table>