Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/views/ScheduledRestockReview.vue
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
</ion-item>
<ion-item :disabled="currentJob?.statusId === 'SERVICE_FINISHED'" lines="none">
<ion-button v-show="!isJobNameUpdating" color="medium" size="small" fill="outline" @click="editJobName">{{ translate("Rename") }}</ion-button>
<ion-button v-show="isJobNameUpdating" color="medium" size="small" fill="outline" @click="updateJobName">{{ translate("Save") }}</ion-button>
<ion-button v-show="isJobNameUpdating" color="medium" size="small" fill="outline" @mousedown.prevent @click="updateJobName">{{ translate("Save") }}</ion-button>
<ion-button color="medium" size="small" fill="outline" @click="cancelInventory">{{ translate("Cancel") }}</ion-button>
</ion-item>
</div>
Expand Down Expand Up @@ -84,7 +84,7 @@

<script>
import { computed, defineComponent, nextTick } from "vue";
import { IonBackButton, IonButton, IonButtons, IonChip, IonContent, IonHeader, IonIcon, IonInput, IonItem, IonLabel, IonList, IonModal, IonDatetime, IonPage, IonSelect, IonSelectOption, IonThumbnail, IonTitle, IonToolbar, alertController, modalController } from "@ionic/vue";

Check warning on line 87 in src/views/ScheduledRestockReview.vue

View workflow job for this annotation

GitHub Actions / call-workflow-in-another-repo / reusable_workflow_job (20.x)

'IonSelectOption' is defined but never used

Check warning on line 87 in src/views/ScheduledRestockReview.vue

View workflow job for this annotation

GitHub Actions / call-workflow-in-another-repo / reusable_workflow_job (20.x)

'IonSelect' is defined but never used

Check warning on line 87 in src/views/ScheduledRestockReview.vue

View workflow job for this annotation

GitHub Actions / call-workflow-in-another-repo / reusable_workflow_job (18.x)

'IonSelectOption' is defined but never used

Check warning on line 87 in src/views/ScheduledRestockReview.vue

View workflow job for this annotation

GitHub Actions / call-workflow-in-another-repo / reusable_workflow_job (18.x)

'IonSelect' is defined but never used
import { DxpShopifyImg, getProductIdentificationValue, translate, useProductIdentificationStore } from "@hotwax/dxp-components";
import { addOutline, closeCircleOutline, timerOutline, businessOutline, cloudUploadOutline, globeOutline} from "ionicons/icons"
import { mapGetters, useStore } from "vuex";
Expand Down Expand Up @@ -204,7 +204,7 @@
'jobId': job.jobId,
'systemJobEnumId': job.systemJobEnumId,
'recurrenceTimeZone': this.userProfile.userTimeZone,
'tempExprId': job.jobStatus,
'tempExprId': job.tempExprId,
'statusId': "SERVICE_PENDING",
'runTimeEpoch': '', // when updating a job clearning the epoch time, as job honors epoch time as runTime and the new job created also uses epoch time as runTime
'lastModifiedByUserLogin': this.userProfile.userLoginId
Expand Down
Loading