-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Implemented: logic to fetch the facility order count history and added support to change the fulfillment capacity(#8)
- Loading branch information
Showing
5 changed files
with
215 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
<template> | ||
<ion-header> | ||
<ion-toolbar> | ||
<ion-buttons slot="start"> | ||
<ion-button @click="closeModal()"> | ||
<ion-icon slot="icon-only" :icon="closeOutline" /> | ||
</ion-button> | ||
</ion-buttons> | ||
<ion-title>{{ translate("Consumed Order Limit") }}</ion-title> | ||
</ion-toolbar> | ||
</ion-header> | ||
|
||
<ion-content> | ||
<ion-grid v-if="facilityOrderCounts.length && !isLoading"> | ||
<ion-row class="ion-justify-content-center"> | ||
<ion-col>{{ translate('Entry Date') }}</ion-col> | ||
<ion-col>{{ translate('Consumed Order Limit') }}</ion-col> | ||
</ion-row> | ||
<ion-row class="ion-justify-content-center" v-for="facilityOrderCount in facilityOrderCounts" :key="facilityOrderCount.facilityId"> | ||
<ion-col>{{ facilityOrderCount.entryDate }}</ion-col> | ||
<ion-col>{{ facilityOrderCount.lastOrderCount }}</ion-col> | ||
</ion-row> | ||
</ion-grid> | ||
<div v-else-if="!isLoading" class="ion-text-center ion-padding-top"> | ||
{{ translate('No records found') }} | ||
</div> | ||
</ion-content> | ||
</template> | ||
|
||
<script lang="ts"> | ||
import { | ||
IonButton, | ||
IonButtons, | ||
IonCol, | ||
IonContent, | ||
IonGrid, | ||
IonHeader, | ||
IonIcon, | ||
IonRow, | ||
IonTitle, | ||
IonToolbar, | ||
modalController | ||
} from "@ionic/vue"; | ||
import { defineComponent } from "vue"; | ||
import { closeOutline, saveOutline } from "ionicons/icons"; | ||
import { translate } from '@hotwax/dxp-components' | ||
import { FacilityService } from "@/services/FacilityService"; | ||
export default defineComponent({ | ||
name: "ViewFacilityOrderCountModal", | ||
components: { | ||
IonButton, | ||
IonButtons, | ||
IonCol, | ||
IonContent, | ||
IonGrid, | ||
IonHeader, | ||
IonIcon, | ||
IonRow, | ||
IonTitle, | ||
IonToolbar | ||
}, | ||
props: ["facilityId"], | ||
data() { | ||
return { | ||
facilityOrderCounts: [] as Array<any>, | ||
isLoading: true | ||
} | ||
}, | ||
async mounted() { | ||
this.facilityOrderCounts = await FacilityService.fetchFacilityOrderCounts(this.facilityId) | ||
this.isLoading = false; | ||
}, | ||
methods: { | ||
closeModal() { | ||
modalController.dismiss() | ||
} | ||
}, | ||
setup() { | ||
return { | ||
closeOutline, | ||
saveOutline, | ||
translate | ||
}; | ||
}, | ||
}); | ||
</script> | ||
|
||
<style> | ||
ion-col { | ||
text-align: center; | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters