Backend Service

This commit is contained in:
2019-03-12 17:19:17 +00:00
parent 3bea9a25d1
commit a0adce7214
@@ -26,14 +26,27 @@
<!-- custom app -->
<script src="/assets/js/app.js"></script>
<form method="post" name="post_nav" action="">
<input type="hidden" name="patientID" value="">
</form>
<script type="text/javascript">
<!--
function post_nav_action(what, value) {
// alert(what);
document.post_nav.action = what + '';
document.post_nav.patientID.value = value;
document.post_nav.submit();
return false;
}
function selectPatient( practicePatientId ){
alert( practicePatientId );
//alert( practicePatientId );
return post_nav_action('/patient', practicePatientId);
}
function calendarPatient( practicePatientId ){
alert( practicePatientId );
// alert( practicePatientId );
return post_nav_action('/patient', practicePatientId);
}
// -->