fix
This commit is contained in:
@@ -6,8 +6,8 @@ android {
|
|||||||
applicationId "com.mermsemr.providers"
|
applicationId "com.mermsemr.providers"
|
||||||
minSdkVersion rootProject.ext.minSdkVersion
|
minSdkVersion rootProject.ext.minSdkVersion
|
||||||
targetSdkVersion rootProject.ext.targetSdkVersion
|
targetSdkVersion rootProject.ext.targetSdkVersion
|
||||||
versionCode 1032
|
versionCode 1033
|
||||||
versionName "1.0.32"
|
versionName "1.0.33"
|
||||||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||||
}
|
}
|
||||||
buildTypes {
|
buildTypes {
|
||||||
|
|||||||
@@ -41,11 +41,25 @@ export class MermsCalendarPage implements OnInit {
|
|||||||
|
|
||||||
|
|
||||||
onEventSelected(eEvent: any) {
|
onEventSelected(eEvent: any) {
|
||||||
|
console.log('onEventSelected');
|
||||||
}
|
}
|
||||||
|
|
||||||
onViewTitleChanged(eEvent: any) {
|
onViewTitleChanged(eEvent: any) {
|
||||||
|
console.log('onViewTitleChanged');
|
||||||
|
}
|
||||||
|
|
||||||
|
onCurrentDateChanged(event: Date) {
|
||||||
|
var today = new Date();
|
||||||
|
today.setHours(0, 0, 0, 0);
|
||||||
|
event.setHours(0, 0, 0, 0);
|
||||||
|
console.log('onCurrentDateChanged');
|
||||||
|
if (this.calendar.mode === 'month') {
|
||||||
|
if (event.getFullYear() < today.getFullYear() || (event.getFullYear() === today.getFullYear() && event.getMonth() <= today.getMonth())) {
|
||||||
|
// this.lockSwipeToPrev = true;
|
||||||
|
} else {
|
||||||
|
// this.lockSwipeToPrev = false;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
goPatient() {
|
goPatient() {
|
||||||
|
|||||||
@@ -14,6 +14,11 @@
|
|||||||
<!-- Item Dividers in a List -->
|
<!-- Item Dividers in a List -->
|
||||||
<ion-list>
|
<ion-list>
|
||||||
|
|
||||||
|
<ion-item>
|
||||||
|
<ion-label>Bill: $1000.23 Pending</ion-label>
|
||||||
|
<ion-icon name="heart" (click)="goConsultBillProfine()"></ion-icon>
|
||||||
|
</ion-item>
|
||||||
|
|
||||||
<ion-item>
|
<ion-item>
|
||||||
<ion-label>Reason:{{reason}}</ion-label>
|
<ion-label>Reason:{{reason}}</ion-label>
|
||||||
</ion-item>
|
</ion-item>
|
||||||
|
|||||||
@@ -63,4 +63,8 @@ export class MermsPatientPage implements OnInit {
|
|||||||
goHome() {
|
goHome() {
|
||||||
this.router.navigateByUrl('/merms-dash')
|
this.router.navigateByUrl('/merms-dash')
|
||||||
}
|
}
|
||||||
|
|
||||||
|
goConsultBillProfine() {
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user