ordering-ui-react-native 0.22.8 → 0.22.9-release
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +6 -7
- package/src/DeliveryApp.tsx +43 -1
- package/src/components/BusinessesListing/index.tsx +1 -1
- package/src/components/Checkout/index.tsx +40 -39
- package/src/components/StripeMethodForm/index.tsx +4 -2
- package/src/components/VerifyPhone/styles.tsx +1 -2
- package/src/context/OfflineActions/index.tsx +236 -0
- package/src/types/index.tsx +2 -1
- package/themes/business/index.tsx +2 -0
- package/themes/business/src/components/AcceptOrRejectOrder/index.tsx +9 -6
- package/themes/business/src/components/AcceptOrRejectOrder/styles.tsx +1 -0
- package/themes/business/src/components/BusinessController/index.tsx +8 -3
- package/themes/business/src/components/BusinessProductList/index.tsx +2 -1
- package/themes/business/src/components/Chat/index.tsx +15 -3
- package/themes/business/src/components/DriverMap/index.tsx +49 -27
- package/themes/business/src/components/FloatingButton/index.tsx +3 -2
- package/themes/business/src/components/GoogleMap/index.tsx +15 -8
- package/themes/business/src/components/LanguageSelector/index.tsx +2 -3
- package/themes/business/src/components/LanguageSelector/lang_country.json +515 -70
- package/themes/business/src/components/LogoutButton/index.tsx +1 -1
- package/themes/business/src/components/MapView/index.tsx +36 -17
- package/themes/business/src/components/NewOrderNotification/index.tsx +40 -27
- package/themes/business/src/components/OrderDetails/Business.tsx +38 -21
- package/themes/business/src/components/OrderDetails/Delivery.tsx +138 -55
- package/themes/business/src/components/OrderDetails/OrderContentComponent.tsx +125 -43
- package/themes/business/src/components/OrderDetails/OrderHeaderComponent.tsx +62 -24
- package/themes/business/src/components/OrderDetails/styles.tsx +39 -3
- package/themes/business/src/components/OrderDetails/usePrinterCommands.tsx +138 -64
- package/themes/business/src/components/OrderDetailsLogistic/index.tsx +3 -2
- package/themes/business/src/components/OrderSummary/index.tsx +209 -73
- package/themes/business/src/components/OrdersListManager/index.tsx +13 -1
- package/themes/business/src/components/OrdersOption/index.tsx +217 -156
- package/themes/business/src/components/PhoneInputNumber/index.tsx +8 -5
- package/themes/business/src/components/PreviousMessages/index.tsx +26 -3
- package/themes/business/src/components/PreviousOrders/OrderItem.tsx +39 -16
- package/themes/business/src/components/PreviousOrders/index.tsx +76 -66
- package/themes/business/src/components/PrinterEdition/MessageAlert.tsx +33 -0
- package/themes/business/src/components/PrinterEdition/index.tsx +431 -0
- package/themes/business/src/components/PrinterEdition/printerList.tsx +23 -0
- package/themes/business/src/components/PrinterEdition/styles.tsx +61 -0
- package/themes/business/src/components/PrinterSettings/index.tsx +162 -173
- package/themes/business/src/components/PrinterSettings/styles.tsx +14 -1
- package/themes/business/src/components/ReviewCustomer/index.tsx +2 -0
- package/themes/business/src/components/StoresList/index.tsx +2 -2
- package/themes/business/src/components/UserProfileForm/index.tsx +16 -17
- package/themes/business/src/components/WebsocketStatus/index.tsx +2 -2
- package/themes/business/src/components/shared/OTextarea.tsx +8 -9
- package/themes/business/src/layouts/SafeAreaContainer.tsx +35 -19
- package/themes/business/src/types/index.tsx +13 -4
- package/themes/business/src/utils/index.tsx +25 -1
- package/themes/doordash/src/components/BusinessesListing/index.tsx +1 -1
- package/themes/doordash/src/components/LoginForm/index.tsx +1 -2
- package/themes/instacart/src/components/BusinessesListing/index.tsx +1 -1
- package/themes/kiosk/src/components/Checkout/index.tsx +6 -0
- package/themes/kiosk/src/components/NavBar/index.tsx +14 -14
- package/themes/kiosk/src/components/OptionCard/index.tsx +1 -1
- package/themes/kiosk/src/components/OrderTypeCardSelector/index.tsx +8 -10
- package/themes/kiosk/src/components/shared/OButton.tsx +5 -18
- package/themes/original/index.tsx +11 -0
- package/themes/original/src/components/AddressForm/index.tsx +32 -17
- package/themes/original/src/components/AddressList/index.tsx +8 -7
- package/themes/original/src/components/AnalyticsSegment/index.tsx +6 -6
- package/themes/original/src/components/AppleLogin/index.tsx +4 -4
- package/themes/original/src/components/BusinessBasicInformation/index.tsx +5 -8
- package/themes/original/src/components/BusinessController/index.tsx +5 -5
- package/themes/original/src/components/BusinessItemAccordion/index.tsx +13 -5
- package/themes/original/src/components/BusinessListingSearch/BusinessSearchFooter.tsx +103 -92
- package/themes/original/src/components/BusinessListingSearch/BusinessSearchHeader.tsx +8 -6
- package/themes/original/src/components/BusinessListingSearch/index.tsx +1 -2
- package/themes/original/src/components/BusinessPreorder/index.tsx +46 -28
- package/themes/original/src/components/BusinessProductsList/SubcategoriesComponent/index.tsx +73 -70
- package/themes/original/src/components/BusinessProductsList/index.tsx +6 -7
- package/themes/original/src/components/BusinessProductsList/styles.tsx +0 -3
- package/themes/original/src/components/BusinessProductsListing/index.tsx +18 -6
- package/themes/original/src/components/BusinessTypeFilter/index.tsx +9 -8
- package/themes/original/src/components/BusinessesListing/Layout/Appointment/index.tsx +2 -1
- package/themes/original/src/components/BusinessesListing/Layout/Original/index.tsx +1 -1
- package/themes/original/src/components/BusinessesListing/Layout/Original/styles.tsx +1 -1
- package/themes/original/src/components/BusinessesListing/index.tsx +0 -1
- package/themes/original/src/components/Cart/index.tsx +38 -14
- package/themes/original/src/components/CartContent/index.tsx +2 -4
- package/themes/original/src/components/Checkout/index.tsx +112 -58
- package/themes/original/src/components/CitiesControl/index.tsx +0 -3
- package/themes/original/src/components/CouponControl/index.tsx +1 -3
- package/themes/original/src/components/DriverTips/index.tsx +1 -3
- package/themes/original/src/components/Favorite/index.tsx +1 -5
- package/themes/original/src/components/FavoriteList/index.tsx +0 -1
- package/themes/original/src/components/ForgotPasswordForm/index.tsx +5 -7
- package/themes/original/src/components/GiftCard/GiftCardUI/index.tsx +15 -17
- package/themes/original/src/components/GiftCard/PurchaseGiftCard/index.tsx +3 -7
- package/themes/original/src/components/GiftCard/RedeemGiftCard/index.tsx +24 -32
- package/themes/original/src/components/GiftCard/SendGiftCard/index.tsx +7 -9
- package/themes/original/src/components/GiftCard/VerticalGiftCardOrdersLayout/index.tsx +11 -12
- package/themes/original/src/components/GoogleMap/index.tsx +39 -18
- package/themes/original/src/components/Help/index.tsx +2 -0
- package/themes/original/src/components/HighestRatedBusinesses/index.tsx +1 -1
- package/themes/original/src/components/Home/index.tsx +3 -11
- package/themes/original/src/components/LoginForm/Otp/index.tsx +0 -3
- package/themes/original/src/components/LoginForm/index.tsx +4 -7
- package/themes/original/src/components/MessageListing/index.tsx +2 -1
- package/themes/original/src/components/Messages/index.tsx +27 -19
- package/themes/original/src/components/MomentOption/TimeListItem.tsx +56 -0
- package/themes/original/src/components/MomentOption/index.tsx +80 -51
- package/themes/original/src/components/MomentSelector/index.tsx +5 -2
- package/themes/original/src/components/MultiCartsPaymethodsAndWallets/index.tsx +7 -3
- package/themes/original/src/components/MultiCheckout/index.tsx +55 -27
- package/themes/original/src/components/MultiOrdersDetails/index.tsx +1 -0
- package/themes/original/src/components/MyOrders/index.tsx +2 -2
- package/themes/original/src/components/NavBar/index.tsx +7 -4
- package/themes/original/src/components/NetworkError/index.tsx +0 -5
- package/themes/original/src/components/NotFoundSource/index.tsx +0 -3
- package/themes/original/src/components/OrderDetails/OrderEta.tsx +4 -3
- package/themes/original/src/components/OrderDetails/OrderHistory.tsx +13 -10
- package/themes/original/src/components/OrderDetails/index.tsx +44 -21
- package/themes/original/src/components/OrderDetails/styles.tsx +0 -1
- package/themes/original/src/components/OrderProgress/index.tsx +5 -4
- package/themes/original/src/components/OrderSummary/index.tsx +29 -10
- package/themes/original/src/components/OrderTypeSelector/index.tsx +7 -6
- package/themes/original/src/components/OrdersOption/index.tsx +3 -6
- package/themes/original/src/components/PaymentOptionStripe/index.tsx +0 -5
- package/themes/original/src/components/PaymentOptionWallet/index.tsx +56 -56
- package/themes/original/src/components/PaymentOptions/index.tsx +0 -2
- package/themes/original/src/components/PlaceSpot/index.tsx +1 -3
- package/themes/original/src/components/PreviousOrders/index.tsx +1 -2
- package/themes/original/src/components/ProductForm/ActionButton.tsx +17 -20
- package/themes/original/src/components/ProductForm/index.tsx +107 -102
- package/themes/original/src/components/ProductItemAccordion/index.tsx +50 -43
- package/themes/original/src/components/ProductItemAccordion/styles.tsx +0 -3
- package/themes/original/src/components/ProductOptionSubOption/index.tsx +16 -8
- package/themes/original/src/components/ProfessionalProfile/index.tsx +4 -5
- package/themes/original/src/components/Promotions/index.tsx +6 -9
- package/themes/original/src/components/ReviewDriver/index.tsx +1 -1
- package/themes/original/src/components/ReviewOrder/index.tsx +2 -2
- package/themes/original/src/components/ReviewProducts/index.tsx +1 -1
- package/themes/original/src/components/ReviewTrigger/index.tsx +2 -2
- package/themes/original/src/components/ServiceForm/index.tsx +52 -54
- package/themes/original/src/components/Sessions/index.tsx +3 -3
- package/themes/original/src/components/SignupForm/index.tsx +86 -78
- package/themes/original/src/components/SingleOrderCard/index.tsx +6 -4
- package/themes/original/src/components/SingleProductCard/index.tsx +5 -5
- package/themes/original/src/components/SingleProductCard/styles.tsx +0 -3
- package/themes/original/src/components/StripeCardForm/index.tsx +0 -3
- package/themes/original/src/components/StripeCardsList/index.tsx +10 -3
- package/themes/original/src/components/StripeElementsForm/index.tsx +76 -62
- package/themes/original/src/components/StripeElementsForm/naked.tsx +48 -1
- package/themes/original/src/components/StripeRedirectForm/index.tsx +0 -3
- package/themes/original/src/components/TaxInformation/index.tsx +3 -2
- package/themes/original/src/components/UpsellingProducts/UpsellingContent.tsx +10 -7
- package/themes/original/src/components/UpsellingProducts/UpsellingLayout.tsx +8 -3
- package/themes/original/src/components/UserDetails/index.tsx +17 -16
- package/themes/original/src/components/UserFormDetails/index.tsx +159 -133
- package/themes/original/src/components/UserProfile/index.tsx +9 -1
- package/themes/original/src/components/UserVerification/index.tsx +14 -4
- package/themes/original/src/components/Wallets/index.tsx +6 -3
- package/themes/original/src/components/WebsocketStatus/index.tsx +1 -4
- package/themes/original/src/components/shared/OAlert.tsx +2 -1
- package/themes/original/src/components/shared/OButton.tsx +5 -4
- package/themes/original/src/components/shared/OInput.tsx +4 -8
- package/themes/original/src/components/shared/OModal.tsx +7 -2
- package/themes/original/src/types/index.tsx +5 -1
- package/themes/original/src/utils/index.tsx +30 -1
- package/themes/uber-eats/src/components/BusinessesListing/index.tsx +1 -1
|
@@ -75,6 +75,40 @@ export const OrderSummary = ({ order, navigation, orderStatus, askBluetoothPermi
|
|
|
75
75
|
return array.join('')
|
|
76
76
|
}
|
|
77
77
|
|
|
78
|
+
const getIngredients = (ingredients: any) => {
|
|
79
|
+
const _ingredients: any = (ingredients.length > 0 && ingredients.filter((i: any) => !i.selected)) || []
|
|
80
|
+
const texts: any = []
|
|
81
|
+
|
|
82
|
+
_ingredients.map((ingredient: any) => {
|
|
83
|
+
texts.push(` ${t('NO', 'No')} ${ingredient.name} <br/>`)
|
|
84
|
+
})
|
|
85
|
+
|
|
86
|
+
if (_ingredients.length) {
|
|
87
|
+
return `
|
|
88
|
+
<div style="font-size: 26px;width:100%">
|
|
89
|
+
<div style=width:90%;display:flex;justifyContent:center;margin:auto;">
|
|
90
|
+
<div>
|
|
91
|
+
${t('INGREDIENTS', 'Ingredients')}:
|
|
92
|
+
</div>
|
|
93
|
+
</div>
|
|
94
|
+
${texts.join('')}
|
|
95
|
+
</div>
|
|
96
|
+
`
|
|
97
|
+
}
|
|
98
|
+
return ''
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
const deliveryDate = (order: any) => {
|
|
102
|
+
const dateString = order?.delivery_datetime_utc ?? order?.delivery_datetime
|
|
103
|
+
const currentDate = new Date();
|
|
104
|
+
const receivedDate: any = new Date(order?.delivery_datetime);
|
|
105
|
+
|
|
106
|
+
const formattedDate = receivedDate <= currentDate
|
|
107
|
+
? `${t('ASAP_ABBREVIATION', 'ASAP')}(${parseDate(dateString, { utc: !!order?.delivery_datetime_utc })})`
|
|
108
|
+
: parseDate(dateString, { utc: !!order?.delivery_datetime_utc })
|
|
109
|
+
return formattedDate
|
|
110
|
+
}
|
|
111
|
+
|
|
78
112
|
const theme = useTheme();
|
|
79
113
|
const percentTip =
|
|
80
114
|
parseInt(configs?.driver_tip_type?.value, 10) === 2 &&
|
|
@@ -97,7 +131,11 @@ export const OrderSummary = ({ order, navigation, orderStatus, askBluetoothPermi
|
|
|
97
131
|
const paymethodsList = order?.payment_events?.filter((item: any) => item.event === 'payment').map((paymethod: any) => {
|
|
98
132
|
return paymethod?.wallet_event
|
|
99
133
|
? walletName[paymethod?.wallet_event?.wallet?.type]?.name
|
|
100
|
-
:
|
|
134
|
+
: paymethod?.paymethod?.gateway && paymethod?.paymethod?.gateway === 'cash' && order?.cash > 0
|
|
135
|
+
? `${t(paymethod?.paymethod?.gateway?.toUpperCase(), paymethod?.paymethod?.name)} (${t('CASH_CHANGE_OF', 'Change of :amount:').replace(':amount:', parsePrice(order?.cash))})`
|
|
136
|
+
: paymethod?.paymethod?.gateway
|
|
137
|
+
? t(paymethod?.paymethod?.gateway?.toUpperCase(), paymethod?.paymethod?.name)
|
|
138
|
+
: t(order?.paymethod?.gateway?.toUpperCase(), order?.paymethod?.name)
|
|
101
139
|
})
|
|
102
140
|
return paymethodsList.join(', ')
|
|
103
141
|
}
|
|
@@ -110,17 +148,18 @@ export const OrderSummary = ({ order, navigation, orderStatus, askBluetoothPermi
|
|
|
110
148
|
|
|
111
149
|
${orderStatus} </br>
|
|
112
150
|
|
|
113
|
-
${t('
|
|
114
|
-
}
|
|
115
|
-
</br>
|
|
116
|
-
${t('DELIVERY_DATE', 'Delivery Date')}: ${order?.delivery_datetime_utc
|
|
117
|
-
? parseDate(order?.delivery_datetime_utc)
|
|
118
|
-
: parseDate(order?.delivery_datetime, { utc: false })
|
|
119
|
-
}
|
|
151
|
+
${t('ORDER_TYPE', 'Order Type')}: ${deliveryStatus[order?.delivery_type]}
|
|
120
152
|
</br>
|
|
121
|
-
${t(paymethodsLength > 1 ? 'PAYMENT_METHODS' : 'PAYMENT_METHOD', paymethodsLength > 1 ? 'Payment methods' : 'Payment method')}: ${handlePaymethodsListString()}
|
|
122
153
|
|
|
123
|
-
${order?.
|
|
154
|
+
${!!order?.delivery_option
|
|
155
|
+
? `${t('DELIVERY_PREFERENCE', 'Delivery Preference')}: ${t(order?.delivery_option?.name?.toUpperCase()?.replace(/ /g, '_'), order?.delivery_option?.name)
|
|
156
|
+
} </br>`
|
|
157
|
+
: ''
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
${t('DELIVERY_DATE', 'Delivery Date')}: ${deliveryDate(order)}
|
|
161
|
+
</br>
|
|
162
|
+
${t(paymethodsLength > 1 ? 'PAYMENT_METHODS' : 'PAYMENT_METHOD', paymethodsLength > 1 ? 'Payment methods' : 'Payment method')}: ${order?.payment_events?.length > 0 ? handlePaymethodsListString() : t(order?.paymethod?.gateway?.toUpperCase(), order?.paymethod?.name)}
|
|
124
163
|
</p>
|
|
125
164
|
|
|
126
165
|
<h1>${t('CUSTOMER_DETAILS', 'Customer details')}</h1>
|
|
@@ -128,8 +167,11 @@ export const OrderSummary = ({ order, navigation, orderStatus, askBluetoothPermi
|
|
|
128
167
|
</br>
|
|
129
168
|
${t('EMAIL', 'Email')}: ${order?.customer?.email}
|
|
130
169
|
</br>
|
|
131
|
-
|
|
132
|
-
|
|
170
|
+
${!!order?.customer?.cellphone
|
|
171
|
+
? `${t('MOBILE_PHONE', 'Mobile Phone')}: ${order?.customer?.cellphone
|
|
172
|
+
} </br>`
|
|
173
|
+
: ''}
|
|
174
|
+
|
|
133
175
|
${!!order?.customer?.phone
|
|
134
176
|
? `${t('MOBILE_PHONE', 'Mobile Phone')}: ${order?.customer?.phone
|
|
135
177
|
} </br>`
|
|
@@ -148,20 +190,23 @@ export const OrderSummary = ({ order, navigation, orderStatus, askBluetoothPermi
|
|
|
148
190
|
</p>
|
|
149
191
|
|
|
150
192
|
<h1>${t('BUSINESS_DETAILS', 'Business details')}</h1>
|
|
151
|
-
<p style="font-size: 27px">
|
|
152
|
-
${order?.business?.name}
|
|
153
|
-
</br>
|
|
193
|
+
<p style="font-size: 27px">
|
|
194
|
+
${order?.business?.name}
|
|
195
|
+
</br>
|
|
154
196
|
${order?.business?.email}
|
|
155
|
-
</br>
|
|
156
|
-
${
|
|
157
|
-
|
|
197
|
+
</br>
|
|
198
|
+
${!!order?.business?.cellphone
|
|
199
|
+
? `${t('BUSINESS_PHONE', 'Business Phone')}: ${order?.business?.cellphone
|
|
200
|
+
} </br>`
|
|
201
|
+
: ''
|
|
202
|
+
}
|
|
158
203
|
${!!order?.business?.phone
|
|
159
204
|
? `${t('BUSINESS_PHONE', 'Business Phone')}: ${order?.business?.phone
|
|
160
205
|
} </br>`
|
|
161
206
|
: ''
|
|
162
|
-
}
|
|
207
|
+
}
|
|
163
208
|
|
|
164
|
-
${t('ADDRESS', 'Address')}: ${order?.business?.address}
|
|
209
|
+
${t('ADDRESS', 'Address')}: ${order?.business?.address}
|
|
165
210
|
</br>
|
|
166
211
|
${!!order?.business?.address_notes
|
|
167
212
|
? `${t('SPECIAL_ADDRESS', 'Special Address')}: ${order?.business?.address_notes
|
|
@@ -171,6 +216,8 @@ export const OrderSummary = ({ order, navigation, orderStatus, askBluetoothPermi
|
|
|
171
216
|
</p>
|
|
172
217
|
<h1> ${t('ORDER_DETAILS', 'Order Details')}</h1>
|
|
173
218
|
|
|
219
|
+
${order?.comment ? ('</br>'+ t('ORDER_COMMENT', 'Order Comment') + ':' + order?.comment) : ''}
|
|
220
|
+
|
|
174
221
|
${order?.products.length &&
|
|
175
222
|
order?.products.map(
|
|
176
223
|
(product: any, i: number) =>
|
|
@@ -185,6 +232,8 @@ export const OrderSummary = ({ order, navigation, orderStatus, askBluetoothPermi
|
|
|
185
232
|
</div>
|
|
186
233
|
</div>
|
|
187
234
|
|
|
235
|
+
${getIngredients(product?.ingredients)}
|
|
236
|
+
|
|
188
237
|
<div style="font-size: 26px;width:100%">
|
|
189
238
|
<div style="width:90%;display:flex;justifyContent:center;margin:auto;">
|
|
190
239
|
${getOptions(product.options, product.comment)}
|
|
@@ -245,9 +294,9 @@ export const OrderSummary = ({ order, navigation, orderStatus, askBluetoothPermi
|
|
|
245
294
|
: ''
|
|
246
295
|
}
|
|
247
296
|
|
|
248
|
-
${order?.summary?.delivery_price > 0 ?
|
|
297
|
+
${order?.summary?.delivery_price > 0 && order.delivery_type !== 2 ?
|
|
249
298
|
` <div style="display: flex">
|
|
250
|
-
<div style="font-size: 26px; width: 70%; display: flex; justify-content: flex-start">
|
|
299
|
+
<div style="font-size: 26px; width: 70%; display: flex; justify-content: flex-start">
|
|
251
300
|
${t('DELIVERY_FEE', 'Delivery Fee')}
|
|
252
301
|
</div>
|
|
253
302
|
|
|
@@ -259,7 +308,7 @@ export const OrderSummary = ({ order, navigation, orderStatus, askBluetoothPermi
|
|
|
259
308
|
</div>
|
|
260
309
|
<div style="display: flex">
|
|
261
310
|
|
|
262
|
-
<div style="font-size: 26px; width: 70%; display: flex; justify-content: flex-start">
|
|
311
|
+
<div style="font-size: 26px; width: 70%; display: flex; justify-content: flex-start">
|
|
263
312
|
${t('DRIVER_TIP', 'Driver tip')}
|
|
264
313
|
${percentTip ? `(${percentTip}%)` : ''}
|
|
265
314
|
</div>
|
|
@@ -270,22 +319,23 @@ export const OrderSummary = ({ order, navigation, orderStatus, askBluetoothPermi
|
|
|
270
319
|
|
|
271
320
|
</div>
|
|
272
321
|
|
|
273
|
-
|
|
322
|
+
${order?.summary?.service_fee > 0 && `
|
|
323
|
+
<div style="display: flex">
|
|
324
|
+
<div style="font-size: 26px; width: 70%; display: flex; justify-content: flex-start">
|
|
325
|
+
${t('SERVICE_FEE', 'Service Fee')}
|
|
326
|
+
(${verifyDecimals(order?.summary?.service_fee, parseNumber)}%)
|
|
327
|
+
</div>
|
|
274
328
|
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
</div>
|
|
329
|
+
<div style="font-size: 26px; width: 30%; display: flex; justify-content: flex-end">
|
|
330
|
+
${parsePrice(order?.summary?.service_fee ?? 0)}
|
|
331
|
+
</div>
|
|
279
332
|
|
|
280
|
-
<div style="font-size: 26px; width: 30%; display: flex; justify-content: flex-end">
|
|
281
|
-
${parsePrice(order?.summary?.service_fee ?? 0)}
|
|
282
333
|
</div>
|
|
283
|
-
|
|
284
|
-
</div>
|
|
334
|
+
`}
|
|
285
335
|
|
|
286
336
|
<div style="display: flex">
|
|
287
337
|
|
|
288
|
-
<div style="font-size: 26px; width: 70%; display: flex; justify-content: flex-start; font-weight: bold">
|
|
338
|
+
<div style="font-size: 26px; width: 70%; display: flex; justify-content: flex-start; font-weight: bold">
|
|
289
339
|
${t('TOTAL', 'Total')}
|
|
290
340
|
</div>
|
|
291
341
|
|
|
@@ -294,7 +344,36 @@ export const OrderSummary = ({ order, navigation, orderStatus, askBluetoothPermi
|
|
|
294
344
|
</div>
|
|
295
345
|
|
|
296
346
|
</div>
|
|
297
|
-
|
|
347
|
+
|
|
348
|
+
${order?.payment_events.length && `
|
|
349
|
+
<div style="font-size: 26px; width: 70%; display: flex; justify-content: flex-start; font-weight: bold">
|
|
350
|
+
${t('PAYMENTS', 'Payments')}
|
|
351
|
+
</div>
|
|
352
|
+
`}
|
|
353
|
+
|
|
354
|
+
${order?.payment_events.length &&
|
|
355
|
+
order?.payment_events.map(
|
|
356
|
+
(event: any, i: number) =>
|
|
357
|
+
`<div style="display: flex;flexDirection:row;flex-wrap:wrap">
|
|
358
|
+
<div style="display:flex;width:100%">
|
|
359
|
+
<div style="display:flex; justify-content: flex-start; font-size: 26px; width: 70%">
|
|
360
|
+
${event?.wallet_event
|
|
361
|
+
? walletName[event?.wallet_event?.wallet?.type]?.name
|
|
362
|
+
: event?.paymethod?.gateway && event?.paymethod?.gateway === 'cash' && order?.cash > 0
|
|
363
|
+
? `${t(event?.paymethod?.gateway?.toUpperCase(), event?.paymethod?.name)} (${t('CASH_CHANGE_OF', 'Change of :amount:').replace(':amount:', parsePrice(order?.cash))})`
|
|
364
|
+
: event?.paymethod?.gateway
|
|
365
|
+
? t(event?.paymethod?.gateway?.toUpperCase(), event?.paymethod?.name)
|
|
366
|
+
: t(order?.paymethod?.gateway?.toUpperCase(), order?.paymethod?.name)}
|
|
367
|
+
</div>
|
|
368
|
+
|
|
369
|
+
<div style="display:flex; justify-content: flex-end; font-size: 26px; width: 30%">
|
|
370
|
+
${(event?.paymethod?.gateway === 'cash' && order?.cash)
|
|
371
|
+
? parsePrice(order?.cash, { currency: order?.currency })
|
|
372
|
+
: `-${parsePrice(event?.amount, { currency: order?.currency })}`}
|
|
373
|
+
</div>
|
|
374
|
+
</div>
|
|
375
|
+
</div>`
|
|
376
|
+
)}
|
|
298
377
|
</div>`;
|
|
299
378
|
};
|
|
300
379
|
|
|
@@ -394,24 +473,24 @@ export const OrderSummary = ({ order, navigation, orderStatus, askBluetoothPermi
|
|
|
394
473
|
</OText>
|
|
395
474
|
|
|
396
475
|
<OText style={{ marginBottom: 5 }}>
|
|
397
|
-
{`${t('
|
|
476
|
+
{`${t('ORDER_TYPE', 'Order Type')}: ${deliveryStatus[order?.delivery_type]
|
|
398
477
|
}`}
|
|
399
478
|
</OText>
|
|
400
479
|
|
|
480
|
+
{order?.delivery_option && (
|
|
481
|
+
<OText size={13}>
|
|
482
|
+
<OText size={13} weight='bold'>{`${t('DELIVERY_PREFERENCE', 'Delivery Preference')}: `}</OText>
|
|
483
|
+
{t(order?.delivery_option?.name?.toUpperCase()?.replace(/ /g, '_'), order?.delivery_option?.name)}
|
|
484
|
+
</OText>
|
|
485
|
+
)}
|
|
486
|
+
|
|
401
487
|
<OText style={{ marginBottom: 5 }}>
|
|
402
|
-
{`${t('DELIVERY_DATE', 'Delivery Date')}: ${order
|
|
403
|
-
? parseDate(order?.delivery_datetime_utc)
|
|
404
|
-
: parseDate(order?.delivery_datetime, { utc: false })
|
|
405
|
-
}`}
|
|
488
|
+
{`${t('DELIVERY_DATE', 'Delivery Date')}: ${deliveryDate(order)}`}
|
|
406
489
|
</OText>
|
|
407
490
|
|
|
408
|
-
<OText style={{ marginBottom: 5 }}>
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
<OText style={{ marginBottom: 5 }}>
|
|
412
|
-
{`${t('ORDER_COMMENT', 'Order Comment')}: ${order?.comment}`}
|
|
413
|
-
</OText>
|
|
414
|
-
)}
|
|
491
|
+
<OText style={{ marginBottom: 5 }}>
|
|
492
|
+
{`${t(`${paymethodsLength > 1? 'PAYMENT_METHODS' : 'PAYMENT_METHOD'}`, `${paymethodsLength > 1 ? 'Payment methods' : 'Payment method'}`)}: ${order?.payment_events?.length > 0 ? handlePaymethodsListString() : t(order?.paymethod?.gateway?.toUpperCase(), order?.paymethod?.name)}`}
|
|
493
|
+
</OText>
|
|
415
494
|
|
|
416
495
|
</OrderHeader>
|
|
417
496
|
|
|
@@ -444,16 +523,18 @@ export const OrderSummary = ({ order, navigation, orderStatus, askBluetoothPermi
|
|
|
444
523
|
{`${t('EMAIL', 'Email')}: ${order?.customer?.email}`}
|
|
445
524
|
</OText>
|
|
446
525
|
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
}
|
|
456
|
-
|
|
526
|
+
{!!order?.customer?.cellphone && (
|
|
527
|
+
<OText
|
|
528
|
+
style={{ marginBottom: 5 }}
|
|
529
|
+
size={14}
|
|
530
|
+
numberOfLines={2}
|
|
531
|
+
adjustsFontSizeToFit
|
|
532
|
+
ellipsizeMode="tail"
|
|
533
|
+
color={theme.colors.textGray}>
|
|
534
|
+
{`${t('MOBILE_PHONE', 'Mobile Phone')}: ${order?.customer?.cellphone
|
|
535
|
+
}`}
|
|
536
|
+
</OText>
|
|
537
|
+
)}
|
|
457
538
|
|
|
458
539
|
{!!order?.customer?.phone && (
|
|
459
540
|
<OText
|
|
@@ -485,7 +566,7 @@ export const OrderSummary = ({ order, navigation, orderStatus, askBluetoothPermi
|
|
|
485
566
|
</OText>
|
|
486
567
|
)}
|
|
487
568
|
|
|
488
|
-
{order?.customer?.address_notes && (
|
|
569
|
+
{!!order?.customer?.address_notes && (
|
|
489
570
|
<OText style={{ marginBottom: 5 }}>
|
|
490
571
|
{`${t('NOTES', 'Notes')}: ${order?.customer?.address_notes}`}
|
|
491
572
|
</OText>
|
|
@@ -584,6 +665,12 @@ export const OrderSummary = ({ order, navigation, orderStatus, askBluetoothPermi
|
|
|
584
665
|
{t('ORDER_DETAILS', 'Order Details')}
|
|
585
666
|
</OText>
|
|
586
667
|
|
|
668
|
+
{!!order?.comment && (
|
|
669
|
+
<OText style={{ marginBottom: 5 }}>
|
|
670
|
+
{`${t('ORDER_COMMENT', 'Order Comment')}: ${order?.comment}`}
|
|
671
|
+
</OText>
|
|
672
|
+
)}
|
|
673
|
+
|
|
587
674
|
{order?.products.length &&
|
|
588
675
|
order?.products.map((product: any, i: number) => (
|
|
589
676
|
<View key={i}>
|
|
@@ -651,7 +738,7 @@ export const OrderSummary = ({ order, navigation, orderStatus, askBluetoothPermi
|
|
|
651
738
|
</Table>
|
|
652
739
|
)}
|
|
653
740
|
|
|
654
|
-
{order?.summary?.delivery_price > 0 && (
|
|
741
|
+
{order?.summary?.delivery_price > 0 && order.delivery_type !== 2 && (
|
|
655
742
|
<Table>
|
|
656
743
|
<OText style={{ marginBottom: 5 }}>
|
|
657
744
|
{t('DELIVERY_FEE', 'Delivery Fee')}
|
|
@@ -661,22 +748,24 @@ export const OrderSummary = ({ order, navigation, orderStatus, askBluetoothPermi
|
|
|
661
748
|
</Table>
|
|
662
749
|
)}
|
|
663
750
|
|
|
664
|
-
|
|
665
|
-
<
|
|
666
|
-
{
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
751
|
+
{(order?.summary?.driver_tip > 0 || order?.driver_tip > 0) && order.delivery_type !== 2 && (
|
|
752
|
+
<Table>
|
|
753
|
+
<OText style={{ marginBottom: 5 }}>
|
|
754
|
+
{t('DRIVER_TIP', 'Driver tip')}
|
|
755
|
+
{order?.summary?.driver_tip > 0 &&
|
|
756
|
+
parseInt(configs?.driver_tip_type?.value, 10) === 2 &&
|
|
757
|
+
!parseInt(configs?.driver_tip_use_custom?.value, 10) &&
|
|
758
|
+
`(${verifyDecimals(
|
|
759
|
+
order?.summary?.driver_tip,
|
|
760
|
+
parseNumber,
|
|
761
|
+
)}%)`}
|
|
762
|
+
</OText>
|
|
675
763
|
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
764
|
+
<OText style={{ marginBottom: 5 }}>
|
|
765
|
+
{parsePrice(order?.summary?.driver_tip ?? 0)}
|
|
766
|
+
</OText>
|
|
767
|
+
</Table>
|
|
768
|
+
)}
|
|
680
769
|
|
|
681
770
|
{order?.summary?.service_fee > 0 && (
|
|
682
771
|
<Table>
|
|
@@ -702,6 +791,53 @@ export const OrderSummary = ({ order, navigation, orderStatus, askBluetoothPermi
|
|
|
702
791
|
</OText>
|
|
703
792
|
</Table>
|
|
704
793
|
</Total>
|
|
794
|
+
|
|
795
|
+
{order?.payment_events?.length > 0 && (
|
|
796
|
+
<View>
|
|
797
|
+
<OText size={14} color={theme.colors.textNormal}>{t('PAYMENTS', 'Payments')}</OText>
|
|
798
|
+
<View
|
|
799
|
+
style={{
|
|
800
|
+
width: '100%',
|
|
801
|
+
marginTop: 5
|
|
802
|
+
}}
|
|
803
|
+
>
|
|
804
|
+
{order?.payment_events?.map((event: any) => (
|
|
805
|
+
<View
|
|
806
|
+
key={event.id}
|
|
807
|
+
style={{
|
|
808
|
+
display: 'flex',
|
|
809
|
+
flexDirection: 'row',
|
|
810
|
+
justifyContent: 'space-between',
|
|
811
|
+
alignItems: 'center',
|
|
812
|
+
marginBottom: 10
|
|
813
|
+
}}
|
|
814
|
+
>
|
|
815
|
+
<View
|
|
816
|
+
style={{
|
|
817
|
+
display: 'flex',
|
|
818
|
+
flexDirection: 'column',
|
|
819
|
+
}}
|
|
820
|
+
>
|
|
821
|
+
<OText>
|
|
822
|
+
{event?.wallet_event
|
|
823
|
+
? walletName[event?.wallet_event?.wallet?.type]?.name
|
|
824
|
+
: event?.paymethod?.gateway
|
|
825
|
+
? t(event?.paymethod?.gateway?.toUpperCase(), event?.paymethod?.name)
|
|
826
|
+
: order?.paymethod?.id === event?.paymethod_id
|
|
827
|
+
? t(order?.paymethod?.gateway?.toUpperCase(), order?.paymethod?.name)
|
|
828
|
+
: ''}
|
|
829
|
+
</OText>
|
|
830
|
+
</View>
|
|
831
|
+
<OText>
|
|
832
|
+
{(event?.paymethod?.gateway === 'cash' && order?.cash)
|
|
833
|
+
? parsePrice(order?.cash, { currency: order?.currency })
|
|
834
|
+
: `-${parsePrice(event?.amount, { currency: order?.currency })}`}
|
|
835
|
+
</OText>
|
|
836
|
+
</View>
|
|
837
|
+
))}
|
|
838
|
+
</View>
|
|
839
|
+
</View>
|
|
840
|
+
)}
|
|
705
841
|
</OrderBill>
|
|
706
842
|
</OrderContent>
|
|
707
843
|
<View style={{ height: 40 }} />
|
|
@@ -846,6 +846,18 @@ export const OrdersListManager = (props: OrdersOptionParams) => {
|
|
|
846
846
|
{
|
|
847
847
|
key: 23,
|
|
848
848
|
text: t('ORDER_DRIVER_ON_WAY', 'Driver on way')
|
|
849
|
+
},
|
|
850
|
+
{
|
|
851
|
+
key: 24,
|
|
852
|
+
text: t('ORDER_DRIVER_WAITING_FOR_ORDER', 'Driver waiting for order')
|
|
853
|
+
},
|
|
854
|
+
{
|
|
855
|
+
key: 25,
|
|
856
|
+
text: t('ORDER_ACCEPTED_BY_DRIVER_COMPANY', 'Accepted by driver company')
|
|
857
|
+
},
|
|
858
|
+
{
|
|
859
|
+
key: 26,
|
|
860
|
+
text: t('ORDER_DRIVER_ARRIVED_CUSTOMER', 'Driver arrived to customer')
|
|
849
861
|
}
|
|
850
862
|
],
|
|
851
863
|
tabs: [
|
|
@@ -858,7 +870,7 @@ export const OrdersListManager = (props: OrdersOptionParams) => {
|
|
|
858
870
|
{
|
|
859
871
|
key: 1,
|
|
860
872
|
text: t('IN_PROGRESS', 'In Progress'),
|
|
861
|
-
tags: props?.orderGroupStatusCustom?.inProgress ?? [3, 4, 7, 8, 9, 14, 18, 19, 20, 21, 22, 23],
|
|
873
|
+
tags: props?.orderGroupStatusCustom?.inProgress ?? [3, 4, 7, 8, 9, 14, 18, 19, 20, 21, 22, 23, 24, 25, 26],
|
|
862
874
|
title: 'inProgress',
|
|
863
875
|
},
|
|
864
876
|
{
|