@@ -3,12 +3,15 @@ import React from 'react';
3
3
import descriptionListStyles from '../../../styles/descriptionList.module.scss' ;
4
4
import { MTOServiceItemShape } from '../../../types' ;
5
5
6
- import { SERVICE_ITEMS_ALLOWED_WEIGHT_BILLED_PARAM } from 'constants/serviceItems' ;
6
+ import { SERVICE_ITEMS_ALLOWED_WEIGHT_BILLED_PARAM , SERVICE_ITEM_CODES } from 'constants/serviceItems' ;
7
+ import { convertFromThousandthInchToInch } from 'utils/formatters' ;
7
8
8
9
const ServiceItem = ( { serviceItem, mtoShipment } ) => {
9
10
return (
10
11
< dl className = { descriptionListStyles . descriptionList } >
11
- < h3 > { serviceItem . reServiceName } </ h3 >
12
+ < h3 >
13
+ { serviceItem . reServiceName } { serviceItem . standaloneCrate && '- Standalone' }
14
+ </ h3 >
12
15
< div className = { descriptionListStyles . row } >
13
16
< dt > Status:</ dt >
14
17
< dd > { serviceItem . status } </ dd >
@@ -35,6 +38,42 @@ const ServiceItem = ({ serviceItem, mtoShipment }) => {
35
38
< dd > { mtoShipment . primeActualWeight || 'Not provided' } </ dd >
36
39
</ div >
37
40
) }
41
+ { ( serviceItem . reServiceCode === SERVICE_ITEM_CODES . ICRT ||
42
+ serviceItem . reServiceCode === SERVICE_ITEM_CODES . IUCRT ||
43
+ serviceItem . reServiceCode === SERVICE_ITEM_CODES . DCRT ||
44
+ serviceItem . reServiceCode === SERVICE_ITEM_CODES . DUCRT ) && (
45
+ < >
46
+ < div className = { descriptionListStyles . row } >
47
+ < dt > Item Size:</ dt >
48
+ < dd >
49
+ { convertFromThousandthInchToInch ( serviceItem . item ?. length ) } " x
50
+ { convertFromThousandthInchToInch ( serviceItem . item ?. width ) } " x
51
+ { convertFromThousandthInchToInch ( serviceItem . item ?. height ) } "
52
+ </ dd >
53
+ </ div >
54
+ < div className = { descriptionListStyles . row } >
55
+ < dt > Crate Size:</ dt >
56
+ < dd >
57
+ { convertFromThousandthInchToInch ( serviceItem . crate ?. length ) } " x
58
+ { convertFromThousandthInchToInch ( serviceItem . crate ?. width ) } " x
59
+ { convertFromThousandthInchToInch ( serviceItem . crate ?. height ) } "
60
+ </ dd >
61
+ </ div >
62
+ </ >
63
+ ) }
64
+ { ( serviceItem . reServiceCode === SERVICE_ITEM_CODES . ICRT ||
65
+ serviceItem . reServiceCode === SERVICE_ITEM_CODES . IUCRT ) && (
66
+ < >
67
+ < div className = { descriptionListStyles . row } >
68
+ < dt > External Crate:</ dt >
69
+ < dd > { serviceItem . externalCrate ? 'Yes' : 'No' } </ dd >
70
+ </ div >
71
+ < div className = { descriptionListStyles . row } >
72
+ < dt > Market:</ dt >
73
+ < dd > { serviceItem . market || 'Not provided' } </ dd >
74
+ </ div >
75
+ </ >
76
+ ) }
38
77
</ dl >
39
78
) ;
40
79
} ;
0 commit comments