diff --git a/resources/assets/js/pages/booking/completed.vue b/resources/assets/js/pages/booking/completed.vue
index e69de29b..9d739b0f 100644
--- a/resources/assets/js/pages/booking/completed.vue
+++ b/resources/assets/js/pages/booking/completed.vue
@@ -0,0 +1,157 @@
+
+
+
+
+
+
Transfer Completed
+ Please upload your PO
+
+
+
+
+
+
+
+
+
+ Upload PO
+
+
+
+
+
+
+ Drop file here or
+ click to upload
+
+ jpg/png files with a size less than 1mb
+
+
+
+
+
+
+
+
+
+ Proof : China BankSlip
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Order Details
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ BankinSlip
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/assets/js/pages/booking/poComplete.vue b/resources/assets/js/pages/booking/poComplete.vue
new file mode 100644
index 00000000..3627916e
--- /dev/null
+++ b/resources/assets/js/pages/booking/poComplete.vue
@@ -0,0 +1,152 @@
+
+
+
+
+
+
Processing Invoice
+
+
+
+
+
+
+
+
+
+ PO
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Proof : China BankSlip
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Order Details
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ BankinSlip
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/assets/js/pages/booking/uploadPo.vue b/resources/assets/js/pages/booking/uploadPo.vue
index bd1875d9..f936462f 100644
--- a/resources/assets/js/pages/booking/uploadPo.vue
+++ b/resources/assets/js/pages/booking/uploadPo.vue
@@ -27,7 +27,12 @@
jpg/png files with a size less than 500kb
+
+
+
+ Submit
+
diff --git a/resources/assets/js/router/routes.js b/resources/assets/js/router/routes.js
index 2f3d21d6..9d72ad75 100644
--- a/resources/assets/js/router/routes.js
+++ b/resources/assets/js/router/routes.js
@@ -15,6 +15,7 @@ const Upload = () => import('~/pages/booking/uploadUserBankSlip').then(m => m.de
const Confirmation = () => import('~/pages/booking/confirmation').then(m => m.default || m)
const Transfer = () => import('~/pages/booking/transfer').then(m => m.default || m)
const UploadPo = () => import('~/pages/booking/uploadPo').then(m => m.default || m)
+const PoComplete = () => import('~/pages/booking/poComplete').then(m => m.default || m)
const Completed = () => import('~/pages/booking/completed').then(m => m.default || m)
@@ -40,7 +41,8 @@ export default [
{ path: '/booking/upload-user-bankslip', name: 'booking.user.upload', component: Upload },
{ path: '/booking/confirmation', name: 'booking.confirmation', component: Confirmation },
{ path: '/booking/transfer', name: 'booking.transfer', component: Transfer },
- { path: '/booking/uploadPo', name: 'booking.user.uploadpo', component: UploadPo },
+ { path: '/booking/upload-po', name: 'booking.user.uploadpo', component: UploadPo },
+ { path: '/booking/po-complete', name: 'booking.user.pocomplete', component: PoComplete },
{ path: '/booking/complete', name: 'booking.complete', component: Completed },