-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implemented logic to handle the case when product SKU is not present on the server (#245fb8k). #31
Conversation
…on server(#245fb8k)
src/locales/en.json
Outdated
@@ -36,7 +36,7 @@ | |||
"Purchase order": "Purchase order", | |||
"Purchase orders": "Purchase orders", | |||
"Ready to create an app?": "Ready to create an app?", | |||
"REVIEW": "REVIEW", | |||
"Review": "REVIEW", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"Review": "REVIEW", | |
"Review": "Review", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Made changes as per your comments Sir.
src/views/OrderDetail.vue
Outdated
async listMissingSkus() { | ||
const missingSkuModal = await modalController.create({ | ||
component: MissingSkuModal, | ||
componentProps: { 'missingSkus': this.ordersList.unidentifiedProducts } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
componentProps: { 'missingSkus': this.ordersList.unidentifiedProducts } | |
componentProps: { 'unidentifiedProductItems': this.ordersList.unidentifiedProductItems } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changed Sir.
@@ -1,6 +1,7 @@ | |||
export default interface OrderState { | |||
list: { | |||
items: any, | |||
original: any | |||
original: any, | |||
unidentifiedProducts: any, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
unidentifiedProducts: any, | |
unidentifiedProductItems: any, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changed Sir.
No description provided.