NINS_CODE/bahmni_config/openmrs/apps/customDisplayControl/views/reflowChartBody.html

58 lines
1.9 KiB
HTML
Raw Permalink Normal View History

2024-12-12 22:37:39 +06:00
<style>
table,
th,
td {
border: 1px solid black;
border-collapse: collapse;
}
</style>
<table style="width:100%">
<tr>
<th>Date</th>
<th>Time</th>
<th>Reflow</th>
<th>Dose of Insulin</th>
<th>Signature</th>
<th>Time</th>
<th>Reflow</th>
<th>Dose of Insulin</th>
<th>Signature</th>
</tr>
<tbody ng-repeat="data in reflowChartData">
<tr>
<th rowspan="3" style="padding: 32px 0px"><span ng-if="data.dietDateTime">{{ data.dietDateTime |
bahmniDateTime}}</span></th>
<td>B.BF</td>
<td><span ng-if="data.beforeBBFReflow">{{data.beforeBBFReflow}}</span></td>
<td><span ng-if="data.beforeBBFDoseofInsulin">{{data.beforeBBFDoseofInsulin}}</span></td>
<td></td>
<td>A.BF</td>
<td><span ng-if="data.afterABFReflow">{{data.afterABFReflow}}</span></td>
<td><span ng-if="data.afterABFDoseofInsulin">{{data.afterABFDoseofInsulin}}</span></td>
<td></td>
</tr>
<tr>
<td>BL</td>
<td><span ng-if="data.beforeBLReflow">{{data.beforeBLReflow}}</span></td>
<td><span ng-if="data.beforeBLDoseofInsulin">{{data.beforeBLDoseofInsulin}}</span></td>
<td></td>
<td>AL</td>
<td><span ng-if="data.afterALReflow">{{data.afterALReflow}}</span></td>
<td><span ng-if="data.afterALDoseofInsulin">{{data.afterALDoseofInsulin}}</span></td>
<td></td>
</tr>
<tr>
<td>BD</td>
<td><span ng-if="data.beforeBDReflow">{{data.beforeBDReflow}}</span></td>
<td><span ng-if="data.beforeBDDoseofInsulin">{{data.beforeBDDoseofInsulin}}</span></td>
<td></td>
<td>AD</td>
<td><span ng-if="data.afterADReflow">{{data.afterADReflow}}</span></td>
<td><span ng-if="data.afterADDoseofInsulin">{{data.afterADDoseofInsulin}}</span></td>
<td></td>
</tr>
</tbody>
</table>