Backend Service

This commit is contained in:
2019-03-12 16:55:07 +00:00
parent 30e45993f5
commit 3bea9a25d1
2 changed files with 15 additions and 4 deletions
@@ -39,7 +39,7 @@ $icc++;
<td><?=$prow->phone?></td>
<td><a href="/patient/chart"><button type="button" class="btn btn-info btn-sm">Chart</button></a></td>
<td><span class="badge badge-success-inverse">Active</span></td>
<td> <a class="mr-3" href="javascript:void(0);"><i class="fe fe-edit"></i></a><a href="javascript:void(0);"><i class="fe fe-trash-2"></i></a></td>
<td> <a class="mr-3" href="javascript:void(0);" onclick="selectPatient(<?=$prow->patient_id?>)" ><i class="fe fe-edit"></i></a><a href="javascript:void(0);" onclick="calendarPatient(<?=$prow->patient_id?>)"><i class="fe fe-calendar"></i></a></td>
</tr>
<?
}
@@ -62,5 +62,3 @@ $icc++;
</div>
</div>
</div>
@@ -25,6 +25,19 @@
<!-- custom app -->
<script src="/assets/js/app.js"></script>
<script type="text/javascript">
<!--
function selectPatient( practicePatientId ){
alert( practicePatientId );
}
function calendarPatient( practicePatientId ){
alert( practicePatientId );
}
// -->
</script>
</body>
</html>
</html>