diff --git a/src/App.vue b/src/App.vue index 8ccdec92..d715c85e 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,11 +1,15 @@ + diff --git a/src/locales/en.json b/src/locales/en.json index 502e32f5..dd53e344 100644 --- a/src/locales/en.json +++ b/src/locales/en.json @@ -1,5 +1,6 @@ { "Are you sure you want to change the time zone to?": "Are you sure you want to change the time zone to?", + "Arrival date": "Arrival date", "Blank": "Blank", "Cancel": "Cancel", "Change": "Change", @@ -7,24 +8,35 @@ "Click the backdrop to dismiss.": "Click the backdrop to dismiss.", "Confirm": "Confirm", "Dismiss": "Dismiss", + "Import": "Import", "Instance Url": "Instance Url", "Login": "Login", "Logout": "Logout", "No time zone found": "No time zone found", "OMS": "OMS", + "Order ID": "Order ID", + "Ordered quantity": "Ordered quantity", "Password": "Password", + "Purchase order": "Purchase order", + "Purchase orders": "Purchase orders", "Ready to create an app?": "Ready to create an app?", + "REVIEW": "REVIEW", "Search time zones": "Search time zones", "Select time zone": "Select time zone", + "Select the column index for the following information in the uploaded CSV.": "Select the column index for the following information in the uploaded CSV.", "Something went wrong": "Something went wrong", "Sorry, your username or password is incorrect. Please try again.": "Sorry, your username or password is incorrect. Please try again.", + "Select CSV": "Select CSV", "Settings": "Settings", + "Shopify product SKU": "Shopify product SKU", + "Shopify product UPC": "Shopify product UPC", "Start with Ionic": "Start with Ionic", "Store": "Store", "store name": "store name", "Time zone updated successfully": "Time zone updated successfully", "UI Components": "UI Components", "Update time zone": "Update time zone", + "Upload": "Upload", "Username": "Username", "Would you like to update your time zone to . Your profile is currently set to . This setting can always be changed from the settings menu.": "Would you like to update your time zone to {localTimeZone}. Your profile is currently set to {profileTimeZone}. This setting can always be changed from the settings menu." } \ No newline at end of file diff --git a/src/router/index.ts b/src/router/index.ts index 62e34bb1..7c6f3ee1 100644 --- a/src/router/index.ts +++ b/src/router/index.ts @@ -1,6 +1,6 @@ import { createRouter, createWebHistory } from '@ionic/vue-router'; import { RouteRecordRaw } from 'vue-router'; -import Home from '@/views/Home.vue' +import PurchaseOrder from '@/views/PurchaseOrder.vue' import Login from '@/views/Login.vue' import Settings from "@/views/Settings.vue" import store from '@/store' @@ -27,9 +27,9 @@ const routes: Array = [ redirect: '/settings' }, { - path: '/home', - name: 'Home', - component: Home, + path: '/purchase-order', + name: 'Purchase Order', + component: PurchaseOrder, beforeEnter: authGuard }, { diff --git a/src/views/PurchaseOrder.vue b/src/views/PurchaseOrder.vue new file mode 100644 index 00000000..45bf1912 --- /dev/null +++ b/src/views/PurchaseOrder.vue @@ -0,0 +1,81 @@ + + + \ No newline at end of file