ordering-ui-react-native 0.16.47 → 0.16.48
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
CHANGED
|
@@ -104,8 +104,8 @@ export const PreviousOrders = (props: any) => {
|
|
|
104
104
|
const offset = 300
|
|
105
105
|
const cdtToutc = moment(order?.delivery_datetime).add(offset, 'minutes').format('YYYY-MM-DD HH:mm:ss')
|
|
106
106
|
const _delivery = order?.delivery_datetime_utc
|
|
107
|
-
? parseDate(order?.delivery_datetime_utc)
|
|
108
|
-
: parseDate(cdtToutc)
|
|
107
|
+
? parseDate(order?.delivery_datetime_utc, { outputFormat: 'YYYY-MM-DD hh:mm A' })
|
|
108
|
+
: parseDate(cdtToutc, { outputFormat: 'YYYY-MM-DD hh:mm A' })
|
|
109
109
|
const _eta = order?.eta_time
|
|
110
110
|
const diffTimeAsSeconds = moment(_delivery, 'YYYY-MM-DD hh:mm A').add(_eta, 'minutes').diff(moment().utc(), 'seconds')
|
|
111
111
|
return Math.ceil(diffTimeAsSeconds / 60)
|
|
@@ -178,9 +178,9 @@ export const PreviousOrders = (props: any) => {
|
|
|
178
178
|
activeOpacity={1}
|
|
179
179
|
>
|
|
180
180
|
<Card key={order.id}>
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
181
|
+
{allowColumns?.slaBar && (
|
|
182
|
+
<Timestatus style={{ backgroundColor: getStatusClassName(getDelayMinutes(order)) === 'in_time' ? '#00D27A' : getStatusClassName(getDelayMinutes(order)) === 'at_risk' ? '#FFC700' : getStatusClassName(getDelayMinutes(order)) === 'delayed' ? '#E63757' : '' }} />
|
|
183
|
+
)}
|
|
184
184
|
{
|
|
185
185
|
!!order.business?.logo && (
|
|
186
186
|
<Logo style={styles.logo}>
|