adp-web-components 0.0.11

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.
Files changed (196) hide show
  1. package/LICENSE +21 -0
  2. package/dist/cjs/Loading-ee1a2ceb.js +16 -0
  3. package/dist/cjs/app-globals-3813fb46.js +9 -0
  4. package/dist/cjs/cn-f559f9e5.js +2588 -0
  5. package/dist/cjs/dead-stock-lookup.cjs.entry.js +103 -0
  6. package/dist/cjs/distributor-lookup.cjs.entry.js +109 -0
  7. package/dist/cjs/dynamic-claim.cjs.entry.js +306 -0
  8. package/dist/cjs/dynamic-redeem.cjs.entry.js +145 -0
  9. package/dist/cjs/form-input.cjs.entry.js +36 -0
  10. package/dist/cjs/general-inquiry-form.cjs.entry.js +2280 -0
  11. package/dist/cjs/image-expansion-a9c9c6f7.js +77 -0
  12. package/dist/cjs/index-d4b5214c.js +1331 -0
  13. package/dist/cjs/index.cjs.js +6 -0
  14. package/dist/cjs/loader-baf2418b.js +9 -0
  15. package/dist/cjs/loader.cjs.js +19 -0
  16. package/dist/cjs/manufacturer-lookup.cjs.entry.js +109 -0
  17. package/dist/cjs/paint-thickness.cjs.entry.js +131 -0
  18. package/dist/cjs/partInformation-2a6a018b.js +34 -0
  19. package/dist/cjs/service-history.cjs.entry.js +116 -0
  20. package/dist/cjs/shift-components.cjs.js +29 -0
  21. package/dist/cjs/vehicle-accessories.cjs.entry.js +135 -0
  22. package/dist/cjs/vehicle-specification.cjs.entry.js +111 -0
  23. package/dist/cjs/vehicleInformation-4c1dcaf2.js +52 -0
  24. package/dist/cjs/warranty-details.cjs.entry.js +281 -0
  25. package/dist/collection/collection-manifest.json +23 -0
  26. package/dist/collection/components/dynamic-claim/dynamic-claim.css +1 -0
  27. package/dist/collection/components/dynamic-claim/dynamic-claim.js +521 -0
  28. package/dist/collection/components/dynamic-claim/icons/cancelled.svg +8 -0
  29. package/dist/collection/components/dynamic-claim/icons/expired.svg +9 -0
  30. package/dist/collection/components/dynamic-claim/icons/pending.svg +9 -0
  31. package/dist/collection/components/dynamic-claim/icons/processed.svg +9 -0
  32. package/dist/collection/components/dynamic-redeem/dynamic-redeem.css +1 -0
  33. package/dist/collection/components/dynamic-redeem/dynamic-redeem.js +334 -0
  34. package/dist/collection/components/form-input/form-input.css +1 -0
  35. package/dist/collection/components/form-input/form-input.js +209 -0
  36. package/dist/collection/components/general-inquiry-form/general-inquiry-form.css +1 -0
  37. package/dist/collection/components/general-inquiry-form/general-inquiry-form.js +46 -0
  38. package/dist/collection/components/paint-thickness/paint-thickness.css +1 -0
  39. package/dist/collection/components/paint-thickness/paint-thickness.js +323 -0
  40. package/dist/collection/components/part-lookup/dead-stock-lookup.css +1 -0
  41. package/dist/collection/components/part-lookup/dead-stock-lookup.js +294 -0
  42. package/dist/collection/components/part-lookup/distributor-lookup.css +1 -0
  43. package/dist/collection/components/part-lookup/distributor-lookup.js +299 -0
  44. package/dist/collection/components/part-lookup/manufacturer-lookup.css +1 -0
  45. package/dist/collection/components/part-lookup/manufacturer-lookup.js +317 -0
  46. package/dist/collection/components/parts/Loading.js +10 -0
  47. package/dist/collection/components/service-history/service-history.css +1 -0
  48. package/dist/collection/components/service-history/service-history.js +306 -0
  49. package/dist/collection/components/vehicle-accessories/vehicle-accessories.css +1 -0
  50. package/dist/collection/components/vehicle-accessories/vehicle-accessories.js +327 -0
  51. package/dist/collection/components/vehicle-specification/vehicle-specification.css +1 -0
  52. package/dist/collection/components/vehicle-specification/vehicle-specification.js +301 -0
  53. package/dist/collection/components/warranty-details/assets/check.svg +4 -0
  54. package/dist/collection/components/warranty-details/assets/loader.svg +11 -0
  55. package/dist/collection/components/warranty-details/assets/x-mark.svg +4 -0
  56. package/dist/collection/components/warranty-details/components/CardsContainer.js +9 -0
  57. package/dist/collection/components/warranty-details/components/Loading.js +10 -0
  58. package/dist/collection/components/warranty-details/components/SSCTable.js +13 -0
  59. package/dist/collection/components/warranty-details/components/StatusCard.js +11 -0
  60. package/dist/collection/components/warranty-details/warranty-details.css +1 -0
  61. package/dist/collection/components/warranty-details/warranty-details.js +709 -0
  62. package/dist/collection/global/api/partInformation.js +30 -0
  63. package/dist/collection/global/api/vehicleInformation.js +48 -0
  64. package/dist/collection/global/assets/eye.svg +5 -0
  65. package/dist/collection/global/assets/loader.svg +11 -0
  66. package/dist/collection/global/lib/cn.js +9 -0
  67. package/dist/collection/global/lib/form-hook.js +118 -0
  68. package/dist/collection/global/lib/image-expansion.js +69 -0
  69. package/dist/collection/global/lib/utils.js +7 -0
  70. package/dist/collection/global/types/components.js +1 -0
  71. package/dist/collection/global/types/part-information.js +1 -0
  72. package/dist/collection/global/types/vehicle-information.js +5 -0
  73. package/dist/collection/index.js +1 -0
  74. package/dist/collection/templates/mock-data.js +4132 -0
  75. package/dist/collection/templates/parts/mock-data.js +221 -0
  76. package/dist/collection/templates/vehicle-lookup.js +218 -0
  77. package/dist/collection/templates/warranty-mock-data.js +2982 -0
  78. package/dist/components/dead-stock-lookup.d.ts +11 -0
  79. package/dist/components/dead-stock-lookup.js +5 -0
  80. package/dist/components/distributor-lookup.d.ts +11 -0
  81. package/dist/components/distributor-lookup.js +5 -0
  82. package/dist/components/dynamic-claim.d.ts +11 -0
  83. package/dist/components/dynamic-claim.js +5 -0
  84. package/dist/components/dynamic-redeem.d.ts +11 -0
  85. package/dist/components/dynamic-redeem.js +5 -0
  86. package/dist/components/form-input.d.ts +11 -0
  87. package/dist/components/form-input.js +5 -0
  88. package/dist/components/general-inquiry-form.d.ts +11 -0
  89. package/dist/components/general-inquiry-form.js +5 -0
  90. package/dist/components/index.d.ts +33 -0
  91. package/dist/components/index.js +5 -0
  92. package/dist/components/manufacturer-lookup.d.ts +11 -0
  93. package/dist/components/manufacturer-lookup.js +5 -0
  94. package/dist/components/p-2b0cc0c6.js +5 -0
  95. package/dist/components/p-4dc47f5f.js +5 -0
  96. package/dist/components/p-50f73226.js +5 -0
  97. package/dist/components/p-5df9bc5f.js +5 -0
  98. package/dist/components/p-8375923d.js +5 -0
  99. package/dist/components/p-98d9e7ab.js +5 -0
  100. package/dist/components/p-a454210b.js +5 -0
  101. package/dist/components/p-d265c109.js +5 -0
  102. package/dist/components/p-d5ff7544.js +5 -0
  103. package/dist/components/paint-thickness.d.ts +11 -0
  104. package/dist/components/paint-thickness.js +5 -0
  105. package/dist/components/service-history.d.ts +11 -0
  106. package/dist/components/service-history.js +5 -0
  107. package/dist/components/vehicle-accessories.d.ts +11 -0
  108. package/dist/components/vehicle-accessories.js +5 -0
  109. package/dist/components/vehicle-specification.d.ts +11 -0
  110. package/dist/components/vehicle-specification.js +5 -0
  111. package/dist/components/warranty-details.d.ts +11 -0
  112. package/dist/components/warranty-details.js +5 -0
  113. package/dist/esm/Loading-61648252.js +14 -0
  114. package/dist/esm/app-globals-8befa224.js +7 -0
  115. package/dist/esm/cn-cc419b94.js +2586 -0
  116. package/dist/esm/dead-stock-lookup.entry.js +99 -0
  117. package/dist/esm/distributor-lookup.entry.js +105 -0
  118. package/dist/esm/dynamic-claim.entry.js +302 -0
  119. package/dist/esm/dynamic-redeem.entry.js +141 -0
  120. package/dist/esm/form-input.entry.js +32 -0
  121. package/dist/esm/general-inquiry-form.entry.js +2276 -0
  122. package/dist/esm/image-expansion-08c4bf0d.js +73 -0
  123. package/dist/esm/index-ef54644b.js +1302 -0
  124. package/dist/esm/index.js +4 -0
  125. package/dist/esm/loader-027b88af.js +7 -0
  126. package/dist/esm/loader.js +15 -0
  127. package/dist/esm/manufacturer-lookup.entry.js +105 -0
  128. package/dist/esm/paint-thickness.entry.js +127 -0
  129. package/dist/esm/partInformation-73ece994.js +32 -0
  130. package/dist/esm/service-history.entry.js +112 -0
  131. package/dist/esm/shift-components.js +24 -0
  132. package/dist/esm/vehicle-accessories.entry.js +131 -0
  133. package/dist/esm/vehicle-specification.entry.js +107 -0
  134. package/dist/esm/vehicleInformation-f1081f83.js +50 -0
  135. package/dist/esm/warranty-details.entry.js +277 -0
  136. package/dist/index.cjs.js +1 -0
  137. package/dist/index.js +1 -0
  138. package/dist/shift-components/index.esm.js +4 -0
  139. package/dist/shift-components/p-15f86441.entry.js +5 -0
  140. package/dist/shift-components/p-1ae3a61f.entry.js +5 -0
  141. package/dist/shift-components/p-517b3e04.js +5 -0
  142. package/dist/shift-components/p-5df9bc5f.js +5 -0
  143. package/dist/shift-components/p-65e6ab8e.js +5 -0
  144. package/dist/shift-components/p-894e7518.entry.js +5 -0
  145. package/dist/shift-components/p-8c261972.entry.js +5 -0
  146. package/dist/shift-components/p-8e818568.entry.js +5 -0
  147. package/dist/shift-components/p-98d9e7ab.js +5 -0
  148. package/dist/shift-components/p-9bd4471c.entry.js +5 -0
  149. package/dist/shift-components/p-9f790b14.entry.js +5 -0
  150. package/dist/shift-components/p-a21e2e2e.js +5 -0
  151. package/dist/shift-components/p-c113792c.entry.js +5 -0
  152. package/dist/shift-components/p-d265c109.js +5 -0
  153. package/dist/shift-components/p-d5ff7544.js +5 -0
  154. package/dist/shift-components/p-dc9845ed.entry.js +5 -0
  155. package/dist/shift-components/p-e32b0798.entry.js +5 -0
  156. package/dist/shift-components/p-e97316d2.js +6 -0
  157. package/dist/shift-components/p-f759c597.entry.js +5 -0
  158. package/dist/shift-components/p-feb3df85.entry.js +5 -0
  159. package/dist/shift-components/shift-components.esm.js +5 -0
  160. package/dist/types/components/dynamic-claim/dynamic-claim.d.ts +48 -0
  161. package/dist/types/components/dynamic-redeem/dynamic-redeem.d.ts +34 -0
  162. package/dist/types/components/form-input/form-input.d.ts +14 -0
  163. package/dist/types/components/general-inquiry-form/general-inquiry-form.d.ts +21 -0
  164. package/dist/types/components/paint-thickness/paint-thickness.d.ts +28 -0
  165. package/dist/types/components/part-lookup/dead-stock-lookup.d.ts +25 -0
  166. package/dist/types/components/part-lookup/distributor-lookup.d.ts +23 -0
  167. package/dist/types/components/part-lookup/manufacturer-lookup.d.ts +24 -0
  168. package/dist/types/components/parts/Loading.d.ts +5 -0
  169. package/dist/types/components/service-history/service-history.d.ts +23 -0
  170. package/dist/types/components/vehicle-accessories/vehicle-accessories.d.ts +28 -0
  171. package/dist/types/components/vehicle-specification/vehicle-specification.d.ts +22 -0
  172. package/dist/types/components/warranty-details/components/CardsContainer.d.ts +8 -0
  173. package/dist/types/components/warranty-details/components/Loading.d.ts +5 -0
  174. package/dist/types/components/warranty-details/components/SSCTable.d.ts +6 -0
  175. package/dist/types/components/warranty-details/components/StatusCard.d.ts +10 -0
  176. package/dist/types/components/warranty-details/warranty-details.d.ts +51 -0
  177. package/dist/types/components.d.ts +388 -0
  178. package/dist/types/global/api/partInformation.d.ts +19 -0
  179. package/dist/types/global/api/vehicleInformation.d.ts +33 -0
  180. package/dist/types/global/lib/cn.d.ts +2 -0
  181. package/dist/types/global/lib/form-hook.d.ts +54 -0
  182. package/dist/types/global/lib/image-expansion.d.ts +9 -0
  183. package/dist/types/global/lib/utils.d.ts +1 -0
  184. package/dist/types/global/types/components.d.ts +4 -0
  185. package/dist/types/global/types/part-information.d.ts +30 -0
  186. package/dist/types/global/types/vehicle-information.d.ts +162 -0
  187. package/dist/types/index.d.ts +10 -0
  188. package/dist/types/stencil-public-runtime.d.ts +1680 -0
  189. package/loader/cdn.js +5 -0
  190. package/loader/index.cjs.js +5 -0
  191. package/loader/index.d.ts +24 -0
  192. package/loader/index.es2017.js +5 -0
  193. package/loader/index.js +6 -0
  194. package/loader/package.json +11 -0
  195. package/package.json +61 -0
  196. package/readme.md +104 -0
@@ -0,0 +1,4132 @@
1
+ const mockData = {
2
+ JTMHX01J8L4198293: {
3
+ accessories: [
4
+ {
5
+ image: '',
6
+ partNumber: '',
7
+ description: '',
8
+ },
9
+ ],
10
+ vin: 'JTMHX01J8L4198293',
11
+ identifiers: {
12
+ vin: 'JTMHX01J8L4198293',
13
+ variant: null,
14
+ katashiki: null,
15
+ color: null,
16
+ trim: null,
17
+ brand: 0,
18
+ brandIntegrationID: null,
19
+ },
20
+ saleInformation: null,
21
+ isAuthorized: false,
22
+ warranty: null,
23
+ nextServiceDate: '2023-12-12',
24
+ serviceHistory: [
25
+ {
26
+ serviceType: 'PM SL (5K, 15K,25K...95K)',
27
+ serviceDate: '2023-09-12',
28
+ mileage: 30296,
29
+ companyName: 'CIHAN',
30
+ branchName: 'Cihan - Showroom | Erbil - Makhmur Road',
31
+ companyId: 2,
32
+ branchId: 14,
33
+ account: 'CS00022',
34
+ invoiceNumber: 51456604,
35
+ wipNumber: 13681,
36
+ laborLines: [
37
+ {
38
+ rtsCode: 'NOTES',
39
+ menuCode: ' ',
40
+ serviceCode: 'PMS',
41
+ description: 'FR WIPER RUBBER NEEDS TO R/P,',
42
+ },
43
+ {
44
+ rtsCode: 'EXPMAIN',
45
+ menuCode: ' ',
46
+ serviceCode: 'PMS',
47
+ description: 'EXPMAIN',
48
+ },
49
+ {
50
+ rtsCode: '0BLC25UR',
51
+ menuCode: 'SERLCUR 25KS',
52
+ serviceCode: 'PMS',
53
+ description: 'CARRY OUT 25,000 KM SERVICE',
54
+ },
55
+ ],
56
+ partLines: [
57
+ {
58
+ partNumber: 'T04152YZZD4',
59
+ qty: 1,
60
+ menuCode: 'SERLCUR 25KS',
61
+ partDescription: 'ELEMENT KIT, OIL',
62
+ },
63
+ {
64
+ partNumber: 'T0888083719',
65
+ qty: 8,
66
+ menuCode: 'SERLCUR 25KS',
67
+ partDescription: 'LGMO SN 5W40 208L',
68
+ },
69
+ {
70
+ partNumber: 'T9043012031',
71
+ qty: 1,
72
+ menuCode: 'SERLCUR 25KS',
73
+ partDescription: 'GASKET',
74
+ },
75
+ {
76
+ partNumber: 'T7736035040',
77
+ qty: 1,
78
+ menuCode: ' ',
79
+ partDescription: 'SPRING ASSY, FUEL',
80
+ },
81
+ ],
82
+ },
83
+ {
84
+ serviceType: 'PM SL (5K, 15K,25K...95K)',
85
+ serviceDate: '2023-02-09',
86
+ mileage: 25660,
87
+ companyName: 'CIHAN',
88
+ branchName: 'Cihan - Showroom | Erbil - Makhmur Road',
89
+ companyId: 2,
90
+ branchId: 14,
91
+ account: 'CS00022',
92
+ invoiceNumber: 51447340,
93
+ wipNumber: 52446,
94
+ laborLines: [
95
+ {
96
+ rtsCode: '02FUELLCUR',
97
+ menuCode: 'FUEL FILTER LCUR',
98
+ serviceCode: 'PMS',
99
+ description: 'FUEL FILTER REPLACEMENT',
100
+ },
101
+ {
102
+ rtsCode: '0BLC25UR',
103
+ menuCode: 'SERLCUR 25KS',
104
+ serviceCode: 'PMS',
105
+ description: 'CARRY OUT 25,000 KM SERVICE',
106
+ },
107
+ ],
108
+ partLines: [
109
+ {
110
+ partNumber: 'T0888083719',
111
+ qty: 8,
112
+ menuCode: 'SERLCUR 25KS',
113
+ partDescription: 'LGMO SN 5W40 208L',
114
+ },
115
+ {
116
+ partNumber: 'T9043012031',
117
+ qty: 1,
118
+ menuCode: 'SERLCUR 25KS',
119
+ partDescription: 'GASKET',
120
+ },
121
+ {
122
+ partNumber: 'T2330050150',
123
+ qty: 1,
124
+ menuCode: 'FUEL FILTER LCUR',
125
+ partDescription: 'FILTER ASSY, FUEL',
126
+ },
127
+ {
128
+ partNumber: 'T04152YZZD4',
129
+ qty: 1,
130
+ menuCode: 'SERLCUR 25KS',
131
+ partDescription: 'ELEMENT KIT, OIL',
132
+ },
133
+ ],
134
+ },
135
+ {
136
+ serviceType: 'PM SL (5K, 15K,25K...95K)',
137
+ serviceDate: '2022-09-10',
138
+ mileage: 20574,
139
+ companyName: 'CIHAN',
140
+ branchName: 'Cihan - Showroom | Erbil - Makhmur Road',
141
+ companyId: 2,
142
+ branchId: 14,
143
+ account: 'CS00022',
144
+ invoiceNumber: 51441539,
145
+ wipNumber: 41940,
146
+ laborLines: [
147
+ {
148
+ rtsCode: '0BLC15UR',
149
+ menuCode: 'SERLCUR 15KS',
150
+ serviceCode: 'PMS',
151
+ description: 'CARRY OUT 15,000 KM SERVICE',
152
+ },
153
+ {
154
+ rtsCode: '37099',
155
+ menuCode: ' ',
156
+ serviceCode: 'PMS',
157
+ description: 'GREASING',
158
+ },
159
+ ],
160
+ partLines: [
161
+ {
162
+ partNumber: 'T1780138030',
163
+ qty: 1,
164
+ menuCode: ' ',
165
+ partDescription: 'ELEMENT SUB-ASSY,',
166
+ },
167
+ {
168
+ partNumber: 'T0888083719',
169
+ qty: 8,
170
+ menuCode: 'SERLCUR 15KS',
171
+ partDescription: 'LGMO SN 5W40 208L',
172
+ },
173
+ {
174
+ partNumber: 'T9043012031',
175
+ qty: 1,
176
+ menuCode: 'SERLCUR 15KS',
177
+ partDescription: 'GASKET',
178
+ },
179
+ {
180
+ partNumber: 'T04152YZZD4',
181
+ qty: 1,
182
+ menuCode: ' ',
183
+ partDescription: 'ELEMENT KIT, OIL',
184
+ },
185
+ ],
186
+ },
187
+ {
188
+ serviceType: 'PM SL (5K, 15K,25K...95K)',
189
+ serviceDate: '2021-11-27',
190
+ mileage: 13964,
191
+ companyName: 'CIHAN',
192
+ branchName: 'Cihan - Showroom | Erbil - Makhmur Road',
193
+ companyId: 2,
194
+ branchId: 14,
195
+ account: 'CS00022',
196
+ invoiceNumber: 51431492,
197
+ wipNumber: 22296,
198
+ laborLines: [
199
+ {
200
+ rtsCode: '0BLC15UR',
201
+ menuCode: 'SERLCUR 15KS',
202
+ serviceCode: 'PMS',
203
+ description: 'CARRY OUT 15,000 KM SERVICE',
204
+ },
205
+ ],
206
+ partLines: [
207
+ {
208
+ partNumber: 'T0888083719',
209
+ qty: 8,
210
+ menuCode: 'SERLCUR 15KS',
211
+ partDescription: 'LGMO SN 5W40 208L',
212
+ },
213
+ {
214
+ partNumber: 'T04152YZZD4',
215
+ qty: 1,
216
+ menuCode: 'SERLCUR 15KS',
217
+ partDescription: 'ELEMENT KIT, OIL',
218
+ },
219
+ {
220
+ partNumber: 'T9043012031',
221
+ qty: 1,
222
+ menuCode: 'SERLCUR 15KS',
223
+ partDescription: 'GASKET',
224
+ },
225
+ ],
226
+ },
227
+ ],
228
+ ssc: null,
229
+ vehicleVariantInfo: null,
230
+ vehicleSpecification: null,
231
+ serviceItems: null,
232
+ basicModelCode: null,
233
+ },
234
+ JTMHX01J8L4198294: {
235
+ accessories: [],
236
+ paintThickness: {},
237
+ vin: 'JTMHX01J8L4198294',
238
+ identifiers: {
239
+ vin: 'JTMHX01J8L4198294',
240
+ variant: null,
241
+ katashiki: null,
242
+ color: null,
243
+ trim: null,
244
+ brand: 0,
245
+ brandIntegrationID: null,
246
+ },
247
+ saleInformation: null,
248
+ isAuthorized: false,
249
+ warranty: null,
250
+ nextServiceDate: '2023-12-12',
251
+ serviceHistory: [
252
+ {
253
+ serviceType: 'PM SL (5K, 15K,25K...95K)',
254
+ serviceDate: '2023-09-12',
255
+ mileage: 30296,
256
+ companyName: 'CIHAN',
257
+ branchName: 'Cihan - Showroom | Erbil - Makhmur Road',
258
+ companyId: 2,
259
+ branchId: 14,
260
+ account: 'CS00022',
261
+ invoiceNumber: 51456604,
262
+ wipNumber: 13681,
263
+ laborLines: [
264
+ {
265
+ rtsCode: 'NOTES',
266
+ menuCode: ' ',
267
+ serviceCode: 'PMS',
268
+ description: 'FR WIPER RUBBER NEEDS TO R/P,',
269
+ },
270
+ {
271
+ rtsCode: 'EXPMAIN',
272
+ menuCode: ' ',
273
+ serviceCode: 'PMS',
274
+ description: 'EXPMAIN',
275
+ },
276
+ {
277
+ rtsCode: '0BLC25UR',
278
+ menuCode: 'SERLCUR 25KS',
279
+ serviceCode: 'PMS',
280
+ description: 'CARRY OUT 25,000 KM SERVICE',
281
+ },
282
+ ],
283
+ partLines: [
284
+ {
285
+ partNumber: 'T04152YZZD4',
286
+ qty: 1,
287
+ menuCode: 'SERLCUR 25KS',
288
+ partDescription: 'ELEMENT KIT, OIL',
289
+ },
290
+ {
291
+ partNumber: 'T0888083719',
292
+ qty: 8,
293
+ menuCode: 'SERLCUR 25KS',
294
+ partDescription: 'LGMO SN 5W40 208L',
295
+ },
296
+ {
297
+ partNumber: 'T9043012031',
298
+ qty: 1,
299
+ menuCode: 'SERLCUR 25KS',
300
+ partDescription: 'GASKET',
301
+ },
302
+ {
303
+ partNumber: 'T7736035040',
304
+ qty: 1,
305
+ menuCode: ' ',
306
+ partDescription: 'SPRING ASSY, FUEL',
307
+ },
308
+ ],
309
+ },
310
+ {
311
+ serviceType: 'PM SL (5K, 15K,25K...95K)',
312
+ serviceDate: '2023-02-09',
313
+ mileage: 25660,
314
+ companyName: 'CIHAN',
315
+ branchName: 'Cihan - Showroom | Erbil - Makhmur Road',
316
+ companyId: 2,
317
+ branchId: 14,
318
+ account: 'CS00022',
319
+ invoiceNumber: 51447340,
320
+ wipNumber: 52446,
321
+ laborLines: [
322
+ {
323
+ rtsCode: '02FUELLCUR',
324
+ menuCode: 'FUEL FILTER LCUR',
325
+ serviceCode: 'PMS',
326
+ description: 'FUEL FILTER REPLACEMENT',
327
+ },
328
+ {
329
+ rtsCode: '0BLC25UR',
330
+ menuCode: 'SERLCUR 25KS',
331
+ serviceCode: 'PMS',
332
+ description: 'CARRY OUT 25,000 KM SERVICE',
333
+ },
334
+ ],
335
+ partLines: [
336
+ {
337
+ partNumber: 'T0888083719',
338
+ qty: 8,
339
+ menuCode: 'SERLCUR 25KS',
340
+ partDescription: 'LGMO SN 5W40 208L',
341
+ },
342
+ {
343
+ partNumber: 'T9043012031',
344
+ qty: 1,
345
+ menuCode: 'SERLCUR 25KS',
346
+ partDescription: 'GASKET',
347
+ },
348
+ {
349
+ partNumber: 'T2330050150',
350
+ qty: 1,
351
+ menuCode: 'FUEL FILTER LCUR',
352
+ partDescription: 'FILTER ASSY, FUEL',
353
+ },
354
+ {
355
+ partNumber: 'T04152YZZD4',
356
+ qty: 1,
357
+ menuCode: 'SERLCUR 25KS',
358
+ partDescription: 'ELEMENT KIT, OIL',
359
+ },
360
+ ],
361
+ },
362
+ {
363
+ serviceType: 'PM SL (5K, 15K,25K...95K)',
364
+ serviceDate: '2022-09-10',
365
+ mileage: 20574,
366
+ companyName: 'CIHAN',
367
+ branchName: 'Cihan - Showroom | Erbil - Makhmur Road',
368
+ companyId: 2,
369
+ branchId: 14,
370
+ account: 'CS00022',
371
+ invoiceNumber: 51441539,
372
+ wipNumber: 41940,
373
+ laborLines: [
374
+ {
375
+ rtsCode: '0BLC15UR',
376
+ menuCode: 'SERLCUR 15KS',
377
+ serviceCode: 'PMS',
378
+ description: 'CARRY OUT 15,000 KM SERVICE',
379
+ },
380
+ {
381
+ rtsCode: '37099',
382
+ menuCode: ' ',
383
+ serviceCode: 'PMS',
384
+ description: 'GREASING',
385
+ },
386
+ ],
387
+ partLines: [
388
+ {
389
+ partNumber: 'T1780138030',
390
+ qty: 1,
391
+ menuCode: ' ',
392
+ partDescription: 'ELEMENT SUB-ASSY,',
393
+ },
394
+ {
395
+ partNumber: 'T0888083719',
396
+ qty: 8,
397
+ menuCode: 'SERLCUR 15KS',
398
+ partDescription: 'LGMO SN 5W40 208L',
399
+ },
400
+ {
401
+ partNumber: 'T9043012031',
402
+ qty: 1,
403
+ menuCode: 'SERLCUR 15KS',
404
+ partDescription: 'GASKET',
405
+ },
406
+ {
407
+ partNumber: 'T04152YZZD4',
408
+ qty: 1,
409
+ menuCode: ' ',
410
+ partDescription: 'ELEMENT KIT, OIL',
411
+ },
412
+ ],
413
+ },
414
+ {
415
+ serviceType: 'PM SL (5K, 15K,25K...95K)',
416
+ serviceDate: '2021-11-27',
417
+ mileage: 13964,
418
+ companyName: 'CIHAN',
419
+ branchName: 'Cihan - Showroom | Erbil - Makhmur Road',
420
+ companyId: 2,
421
+ branchId: 14,
422
+ account: 'CS00022',
423
+ invoiceNumber: 51431492,
424
+ wipNumber: 22296,
425
+ laborLines: [
426
+ {
427
+ rtsCode: '0BLC15UR',
428
+ menuCode: 'SERLCUR 15KS',
429
+ serviceCode: 'PMS',
430
+ description: 'CARRY OUT 15,000 KM SERVICE',
431
+ },
432
+ ],
433
+ partLines: [
434
+ {
435
+ partNumber: 'T0888083719',
436
+ qty: 8,
437
+ menuCode: 'SERLCUR 15KS',
438
+ partDescription: 'LGMO SN 5W40 208L',
439
+ },
440
+ {
441
+ partNumber: 'T04152YZZD4',
442
+ qty: 1,
443
+ menuCode: 'SERLCUR 15KS',
444
+ partDescription: 'ELEMENT KIT, OIL',
445
+ },
446
+ {
447
+ partNumber: 'T9043012031',
448
+ qty: 1,
449
+ menuCode: 'SERLCUR 15KS',
450
+ partDescription: 'GASKET',
451
+ },
452
+ ],
453
+ },
454
+ ],
455
+ ssc: null,
456
+ vehicleVariantInfo: null,
457
+ vehicleSpecification: null,
458
+ serviceItems: [],
459
+ basicModelCode: null,
460
+ },
461
+ JTMHX01J8L4198295: {
462
+ accessories: null,
463
+ paintThickness: {
464
+ parts: [],
465
+ },
466
+ vin: 'JTMHX01J8L4198295',
467
+ identifiers: {
468
+ vin: 'JTMHX01J8L4198295',
469
+ variant: null,
470
+ katashiki: null,
471
+ color: null,
472
+ trim: null,
473
+ brand: 0,
474
+ brandIntegrationID: null,
475
+ },
476
+ saleInformation: null,
477
+ isAuthorized: false,
478
+ warranty: null,
479
+ nextServiceDate: '2023-12-12',
480
+ serviceHistory: [
481
+ {
482
+ serviceType: 'PM SL (5K, 15K,25K...95K)',
483
+ serviceDate: '2023-09-12',
484
+ mileage: 30296,
485
+ companyName: 'CIHAN',
486
+ branchName: 'Cihan - Showroom | Erbil - Makhmur Road',
487
+ companyId: 2,
488
+ branchId: 14,
489
+ account: 'CS00022',
490
+ invoiceNumber: 51456604,
491
+ wipNumber: 13681,
492
+ laborLines: [
493
+ {
494
+ rtsCode: 'NOTES',
495
+ menuCode: ' ',
496
+ serviceCode: 'PMS',
497
+ description: 'FR WIPER RUBBER NEEDS TO R/P,',
498
+ },
499
+ {
500
+ rtsCode: 'EXPMAIN',
501
+ menuCode: ' ',
502
+ serviceCode: 'PMS',
503
+ description: 'EXPMAIN',
504
+ },
505
+ {
506
+ rtsCode: '0BLC25UR',
507
+ menuCode: 'SERLCUR 25KS',
508
+ serviceCode: 'PMS',
509
+ description: 'CARRY OUT 25,000 KM SERVICE',
510
+ },
511
+ ],
512
+ partLines: [
513
+ {
514
+ partNumber: 'T04152YZZD4',
515
+ qty: 1,
516
+ menuCode: 'SERLCUR 25KS',
517
+ partDescription: 'ELEMENT KIT, OIL',
518
+ },
519
+ {
520
+ partNumber: 'T0888083719',
521
+ qty: 8,
522
+ menuCode: 'SERLCUR 25KS',
523
+ partDescription: 'LGMO SN 5W40 208L',
524
+ },
525
+ {
526
+ partNumber: 'T9043012031',
527
+ qty: 1,
528
+ menuCode: 'SERLCUR 25KS',
529
+ partDescription: 'GASKET',
530
+ },
531
+ {
532
+ partNumber: 'T7736035040',
533
+ qty: 1,
534
+ menuCode: ' ',
535
+ partDescription: 'SPRING ASSY, FUEL',
536
+ },
537
+ ],
538
+ },
539
+ {
540
+ serviceType: 'PM SL (5K, 15K,25K...95K)',
541
+ serviceDate: '2023-02-09',
542
+ mileage: 25660,
543
+ companyName: 'CIHAN',
544
+ branchName: 'Cihan - Showroom | Erbil - Makhmur Road',
545
+ companyId: 2,
546
+ branchId: 14,
547
+ account: 'CS00022',
548
+ invoiceNumber: 51447340,
549
+ wipNumber: 52446,
550
+ laborLines: [
551
+ {
552
+ rtsCode: '02FUELLCUR',
553
+ menuCode: 'FUEL FILTER LCUR',
554
+ serviceCode: 'PMS',
555
+ description: 'FUEL FILTER REPLACEMENT',
556
+ },
557
+ {
558
+ rtsCode: '0BLC25UR',
559
+ menuCode: 'SERLCUR 25KS',
560
+ serviceCode: 'PMS',
561
+ description: 'CARRY OUT 25,000 KM SERVICE',
562
+ },
563
+ ],
564
+ partLines: [
565
+ {
566
+ partNumber: 'T0888083719',
567
+ qty: 8,
568
+ menuCode: 'SERLCUR 25KS',
569
+ partDescription: 'LGMO SN 5W40 208L',
570
+ },
571
+ {
572
+ partNumber: 'T9043012031',
573
+ qty: 1,
574
+ menuCode: 'SERLCUR 25KS',
575
+ partDescription: 'GASKET',
576
+ },
577
+ {
578
+ partNumber: 'T2330050150',
579
+ qty: 1,
580
+ menuCode: 'FUEL FILTER LCUR',
581
+ partDescription: 'FILTER ASSY, FUEL',
582
+ },
583
+ {
584
+ partNumber: 'T04152YZZD4',
585
+ qty: 1,
586
+ menuCode: 'SERLCUR 25KS',
587
+ partDescription: 'ELEMENT KIT, OIL',
588
+ },
589
+ ],
590
+ },
591
+ {
592
+ serviceType: 'PM SL (5K, 15K,25K...95K)',
593
+ serviceDate: '2022-09-10',
594
+ mileage: 20574,
595
+ companyName: 'CIHAN',
596
+ branchName: 'Cihan - Showroom | Erbil - Makhmur Road',
597
+ companyId: 2,
598
+ branchId: 14,
599
+ account: 'CS00022',
600
+ invoiceNumber: 51441539,
601
+ wipNumber: 41940,
602
+ laborLines: [
603
+ {
604
+ rtsCode: '0BLC15UR',
605
+ menuCode: 'SERLCUR 15KS',
606
+ serviceCode: 'PMS',
607
+ description: 'CARRY OUT 15,000 KM SERVICE',
608
+ },
609
+ {
610
+ rtsCode: '37099',
611
+ menuCode: ' ',
612
+ serviceCode: 'PMS',
613
+ description: 'GREASING',
614
+ },
615
+ ],
616
+ partLines: [
617
+ {
618
+ partNumber: 'T1780138030',
619
+ qty: 1,
620
+ menuCode: ' ',
621
+ partDescription: 'ELEMENT SUB-ASSY,',
622
+ },
623
+ {
624
+ partNumber: 'T0888083719',
625
+ qty: 8,
626
+ menuCode: 'SERLCUR 15KS',
627
+ partDescription: 'LGMO SN 5W40 208L',
628
+ },
629
+ {
630
+ partNumber: 'T9043012031',
631
+ qty: 1,
632
+ menuCode: 'SERLCUR 15KS',
633
+ partDescription: 'GASKET',
634
+ },
635
+ {
636
+ partNumber: 'T04152YZZD4',
637
+ qty: 1,
638
+ menuCode: ' ',
639
+ partDescription: 'ELEMENT KIT, OIL',
640
+ },
641
+ ],
642
+ },
643
+ {
644
+ serviceType: 'PM SL (5K, 15K,25K...95K)',
645
+ serviceDate: '2021-11-27',
646
+ mileage: 13964,
647
+ companyName: 'CIHAN',
648
+ branchName: 'Cihan - Showroom | Erbil - Makhmur Road',
649
+ companyId: 2,
650
+ branchId: 14,
651
+ account: 'CS00022',
652
+ invoiceNumber: 51431492,
653
+ wipNumber: 22296,
654
+ laborLines: [
655
+ {
656
+ rtsCode: '0BLC15UR',
657
+ menuCode: 'SERLCUR 15KS',
658
+ serviceCode: 'PMS',
659
+ description: 'CARRY OUT 15,000 KM SERVICE',
660
+ },
661
+ ],
662
+ partLines: [
663
+ {
664
+ partNumber: 'T0888083719',
665
+ qty: 8,
666
+ menuCode: 'SERLCUR 15KS',
667
+ partDescription: 'LGMO SN 5W40 208L',
668
+ },
669
+ {
670
+ partNumber: 'T04152YZZD4',
671
+ qty: 1,
672
+ menuCode: 'SERLCUR 15KS',
673
+ partDescription: 'ELEMENT KIT, OIL',
674
+ },
675
+ {
676
+ partNumber: 'T9043012031',
677
+ qty: 1,
678
+ menuCode: 'SERLCUR 15KS',
679
+ partDescription: 'GASKET',
680
+ },
681
+ ],
682
+ },
683
+ ],
684
+ ssc: null,
685
+ vehicleVariantInfo: null,
686
+ vehicleSpecification: null,
687
+ serviceItems: [
688
+ {
689
+ name: '1,000 KM Free Service',
690
+ type: 'free',
691
+ activatedAt: 'Activation Date',
692
+ expiresAt: 'Expiry Date',
693
+ status: 'processed',
694
+ redeemDate: 'Redeem Date',
695
+ redeemingDealer: 'Claim Dealer',
696
+ invoiceNumber: 'Invoice Number',
697
+ wipNumber: 'WIP Number',
698
+ menuCode: 'SER1239KH',
699
+ },
700
+ {
701
+ name: '5,000 KM Free Service',
702
+ type: 'free',
703
+ activatedAt: '2023-04-08',
704
+ expiresAt: '2023-07-08',
705
+ status: 'expired',
706
+ },
707
+ {
708
+ name: '10,000 KM Free Service',
709
+ type: 'free',
710
+ activatedAt: '2023-07-08',
711
+ expiresAt: '2023-10-08',
712
+ status: 'cancelled',
713
+ },
714
+ {
715
+ name: '15,000 KM Free Service',
716
+ type: 'free',
717
+ activatedAt: '2023-10-08',
718
+ expiresAt: '2024-01-08',
719
+ status: 'pending',
720
+ menuCode: 'SER1384KJ',
721
+ },
722
+ {
723
+ name: '20,000 KM Free Service',
724
+ type: 'free',
725
+ activatedAt: '2024-01-08',
726
+ expiresAt: '2024-03-08',
727
+ status: 'pending',
728
+ },
729
+ ],
730
+ basicModelCode: null,
731
+ },
732
+ JTMHX01J8L4198296: {
733
+ accessories: [
734
+ {
735
+ partNumber: 'yakam',
736
+ description: 'dwam',
737
+ image: 'https://static.printler.com/cache/a/1/6/6/6/e/a1666e9c70da357a080e59aa1058f9c1aa84f847.jpg',
738
+ },
739
+ ],
740
+ paintThickness: {
741
+ parts: [],
742
+ imageGroups: [],
743
+ },
744
+ vin: 'JTMHX01J8L4198296',
745
+ identifiers: {
746
+ vin: 'JTMHX01J8L4198295',
747
+ variant: null,
748
+ katashiki: null,
749
+ color: null,
750
+ trim: null,
751
+ brand: 0,
752
+ brandIntegrationID: null,
753
+ },
754
+ saleInformation: null,
755
+ isAuthorized: false,
756
+ warranty: {
757
+ hasActiveWarranty: true,
758
+ warrantyStartDate: '2023-06-05',
759
+ warrantyEndDate: '2026-06-05',
760
+ hasExtendedWarranty: false,
761
+ extendedWarrantyStartDate: null,
762
+ extendedWarrantyEndDate: null,
763
+ },
764
+ nextServiceDate: '2023-12-12',
765
+ serviceHistory: [
766
+ {
767
+ serviceType: 'PM SL (5K, 15K,25K...95K)',
768
+ serviceDate: '2023-09-12',
769
+ mileage: 30296,
770
+ companyName: 'CIHAN',
771
+ branchName: 'Cihan - Showroom | Erbil - Makhmur Road',
772
+ companyId: 2,
773
+ branchId: 14,
774
+ account: 'CS00022',
775
+ invoiceNumber: 51456604,
776
+ wipNumber: 13681,
777
+ laborLines: [
778
+ {
779
+ rtsCode: 'NOTES',
780
+ menuCode: ' ',
781
+ serviceCode: 'PMS',
782
+ description: 'FR WIPER RUBBER NEEDS TO R/P,',
783
+ },
784
+ {
785
+ rtsCode: 'EXPMAIN',
786
+ menuCode: ' ',
787
+ serviceCode: 'PMS',
788
+ description: 'EXPMAIN',
789
+ },
790
+ {
791
+ rtsCode: '0BLC25UR',
792
+ menuCode: 'SERLCUR 25KS',
793
+ serviceCode: 'PMS',
794
+ description: 'CARRY OUT 25,000 KM SERVICE',
795
+ },
796
+ ],
797
+ partLines: [
798
+ {
799
+ partNumber: 'T04152YZZD4',
800
+ qty: 1,
801
+ menuCode: 'SERLCUR 25KS',
802
+ partDescription: 'ELEMENT KIT, OIL',
803
+ },
804
+ {
805
+ partNumber: 'T0888083719',
806
+ qty: 8,
807
+ menuCode: 'SERLCUR 25KS',
808
+ partDescription: 'LGMO SN 5W40 208L',
809
+ },
810
+ {
811
+ partNumber: 'T9043012031',
812
+ qty: 1,
813
+ menuCode: 'SERLCUR 25KS',
814
+ partDescription: 'GASKET',
815
+ },
816
+ {
817
+ partNumber: 'T7736035040',
818
+ qty: 1,
819
+ menuCode: ' ',
820
+ partDescription: 'SPRING ASSY, FUEL',
821
+ },
822
+ ],
823
+ },
824
+ {
825
+ serviceType: 'PM SL (5K, 15K,25K...95K)',
826
+ serviceDate: '2023-02-09',
827
+ mileage: 25660,
828
+ companyName: 'CIHAN',
829
+ branchName: 'Cihan - Showroom | Erbil - Makhmur Road',
830
+ companyId: 2,
831
+ branchId: 14,
832
+ account: 'CS00022',
833
+ invoiceNumber: 51447340,
834
+ wipNumber: 52446,
835
+ laborLines: [
836
+ {
837
+ rtsCode: '02FUELLCUR',
838
+ menuCode: 'FUEL FILTER LCUR',
839
+ serviceCode: 'PMS',
840
+ description: 'FUEL FILTER REPLACEMENT',
841
+ },
842
+ {
843
+ rtsCode: '0BLC25UR',
844
+ menuCode: 'SERLCUR 25KS',
845
+ serviceCode: 'PMS',
846
+ description: 'CARRY OUT 25,000 KM SERVICE',
847
+ },
848
+ ],
849
+ partLines: [
850
+ {
851
+ partNumber: 'T0888083719',
852
+ qty: 8,
853
+ menuCode: 'SERLCUR 25KS',
854
+ partDescription: 'LGMO SN 5W40 208L',
855
+ },
856
+ {
857
+ partNumber: 'T9043012031',
858
+ qty: 1,
859
+ menuCode: 'SERLCUR 25KS',
860
+ partDescription: 'GASKET',
861
+ },
862
+ {
863
+ partNumber: 'T2330050150',
864
+ qty: 1,
865
+ menuCode: 'FUEL FILTER LCUR',
866
+ partDescription: 'FILTER ASSY, FUEL',
867
+ },
868
+ {
869
+ partNumber: 'T04152YZZD4',
870
+ qty: 1,
871
+ menuCode: 'SERLCUR 25KS',
872
+ partDescription: 'ELEMENT KIT, OIL',
873
+ },
874
+ ],
875
+ },
876
+ {
877
+ serviceType: 'PM SL (5K, 15K,25K...95K)',
878
+ serviceDate: '2022-09-10',
879
+ mileage: 20574,
880
+ companyName: 'CIHAN',
881
+ branchName: 'Cihan - Showroom | Erbil - Makhmur Road',
882
+ companyId: 2,
883
+ branchId: 14,
884
+ account: 'CS00022',
885
+ invoiceNumber: 51441539,
886
+ wipNumber: 41940,
887
+ laborLines: [
888
+ {
889
+ rtsCode: '0BLC15UR',
890
+ menuCode: 'SERLCUR 15KS',
891
+ serviceCode: 'PMS',
892
+ description: 'CARRY OUT 15,000 KM SERVICE',
893
+ },
894
+ {
895
+ rtsCode: '37099',
896
+ menuCode: ' ',
897
+ serviceCode: 'PMS',
898
+ description: 'GREASING',
899
+ },
900
+ ],
901
+ partLines: [
902
+ {
903
+ partNumber: 'T1780138030',
904
+ qty: 1,
905
+ menuCode: ' ',
906
+ partDescription: 'ELEMENT SUB-ASSY,',
907
+ },
908
+ {
909
+ partNumber: 'T0888083719',
910
+ qty: 8,
911
+ menuCode: 'SERLCUR 15KS',
912
+ partDescription: 'LGMO SN 5W40 208L',
913
+ },
914
+ {
915
+ partNumber: 'T9043012031',
916
+ qty: 1,
917
+ menuCode: 'SERLCUR 15KS',
918
+ partDescription: 'GASKET',
919
+ },
920
+ {
921
+ partNumber: 'T04152YZZD4',
922
+ qty: 1,
923
+ menuCode: ' ',
924
+ partDescription: 'ELEMENT KIT, OIL',
925
+ },
926
+ ],
927
+ },
928
+ {
929
+ serviceType: 'PM SL (5K, 15K,25K...95K)',
930
+ serviceDate: '2021-11-27',
931
+ mileage: 13964,
932
+ companyName: 'CIHAN',
933
+ branchName: 'Cihan - Showroom | Erbil - Makhmur Road',
934
+ companyId: 2,
935
+ branchId: 14,
936
+ account: 'CS00022',
937
+ invoiceNumber: 51431492,
938
+ wipNumber: 22296,
939
+ laborLines: [
940
+ {
941
+ rtsCode: '0BLC15UR',
942
+ menuCode: 'SERLCUR 15KS',
943
+ serviceCode: 'PMS',
944
+ description: 'CARRY OUT 15,000 KM SERVICE',
945
+ },
946
+ ],
947
+ partLines: [
948
+ {
949
+ partNumber: 'T0888083719',
950
+ qty: 8,
951
+ menuCode: 'SERLCUR 15KS',
952
+ partDescription: 'LGMO SN 5W40 208L',
953
+ },
954
+ {
955
+ partNumber: 'T04152YZZD4',
956
+ qty: 1,
957
+ menuCode: 'SERLCUR 15KS',
958
+ partDescription: 'ELEMENT KIT, OIL',
959
+ },
960
+ {
961
+ partNumber: 'T9043012031',
962
+ qty: 1,
963
+ menuCode: 'SERLCUR 15KS',
964
+ partDescription: 'GASKET',
965
+ },
966
+ ],
967
+ },
968
+ ],
969
+ ssc: null,
970
+ vehicleVariantInfo: null,
971
+ vehicleSpecification: null,
972
+ serviceItems: [
973
+ {
974
+ name: '1,000 KM Free Service',
975
+ type: 'free',
976
+ activatedAt: '2023-01-08',
977
+ expiresAt: '2023-04-08',
978
+ status: 'processed',
979
+ redeemDate: '2023-01-19',
980
+ },
981
+ {
982
+ name: '5,000 KM Free Service',
983
+ type: 'free',
984
+ activatedAt: '2023-04-08',
985
+ expiresAt: '2023-07-08',
986
+ status: 'expired',
987
+ },
988
+ {
989
+ name: '10,000 KM Free Service',
990
+ type: 'free',
991
+ activatedAt: '2023-07-08',
992
+ expiresAt: '2023-10-08',
993
+ status: 'cancelled',
994
+ },
995
+ {
996
+ name: '15,000 KM Free Service',
997
+ type: 'free',
998
+ activatedAt: '2023-10-08',
999
+ expiresAt: '2024-01-08',
1000
+ status: 'processed',
1001
+ },
1002
+ {
1003
+ name: '20,000 KM Free Service',
1004
+ type: 'free',
1005
+ activatedAt: '2024-01-08',
1006
+ expiresAt: '2024-03-08',
1007
+ status: 'pending',
1008
+ },
1009
+ ],
1010
+ basicModelCode: null,
1011
+ },
1012
+ MR0BX8CD3P2791075: {
1013
+ accessories: [
1014
+ {
1015
+ partNumber: 'yakam',
1016
+ description: 'dwam',
1017
+ image: 'https://static.printler.com/cache/a/1/6/6/6/e/a1666e9c70da357a080e59aa1058f9c1aa84f847.jpg',
1018
+ },
1019
+ {
1020
+ partNumber: 'test',
1021
+ description: 'lorem',
1022
+ image: 'https://uploads.dailydot.com/2018/10/olli-the-polite-cat.jpg?q=65&auto=format&w=1200&ar=2:1&fit=crop',
1023
+ },
1024
+ {
1025
+ partNumber: 'yakam2',
1026
+ description: 'dwam',
1027
+ image: 'https://static.printler.com/cache/a/1/6/6/6/e/a1666e9c70da357a080e59aa1058f9c1aa84f847.jpg',
1028
+ },
1029
+ {
1030
+ partNumber: 'test1',
1031
+ description: 'lorem',
1032
+ image: 'https://uploads.dailydot.com/2018/10/olli-the-polite-cat.jpg?q=65&auto=format&w=1200&ar=2:1&fit=crop',
1033
+ },
1034
+ {
1035
+ partNumber: 'yakam231',
1036
+ description: 'dwam',
1037
+ image: 'https://static.printler.com/cache/a/1/6/6/6/e/a1666e9c70da357a080e59aa1058f9c1aa84f847.jpg',
1038
+ },
1039
+ {
1040
+ partNumber: 'test1321',
1041
+ description: 'lorem',
1042
+ image: 'https://uploads.dailydot.com/2018/10/olli-the-polite-cat.jpg?q=65&auto=format&w=1200&ar=2:1&fit=crop',
1043
+ },
1044
+ ],
1045
+ paintThickness: {
1046
+ parts: [
1047
+ {
1048
+ part: ' Front Fender',
1049
+ left: 90,
1050
+ right: 100,
1051
+ },
1052
+ {
1053
+ part: ' Front Door',
1054
+ left: 90,
1055
+ right: 90,
1056
+ },
1057
+ {
1058
+ part: ' Front Fender1',
1059
+ left: 90,
1060
+ right: 100,
1061
+ },
1062
+ {
1063
+ part: ' Front Door2',
1064
+ left: 90,
1065
+ right: 90,
1066
+ },
1067
+ ],
1068
+ imageGroups: [
1069
+ {
1070
+ name: 'zero',
1071
+ images: ['https://tiqappstorage.blob.core.windows.net/paint-app/Uploads/paintThickness/5TDLB3CH1NS095585%232022-10-06%2303-33-17/Hood_1.jpg'],
1072
+ },
1073
+ {
1074
+ name: 'second',
1075
+ images: [
1076
+ 'https://tiqappstorage.blob.core.windows.net/paint-app/Uploads/paintThickness/5TDLB3CH1NS095585%232022-10-06%2303-33-17/Left_Front_Door_1.jpg',
1077
+ 'https://tiqappstorage.blob.core.windows.net/paint-app/Uploads/paintThickness/5TDLB3CH1NS095585%232022-10-06%2303-33-17/Left_Front_Door_2.jpg',
1078
+ ],
1079
+ },
1080
+ {
1081
+ name: 'second',
1082
+ images: [
1083
+ 'https://tiqappstorage.blob.core.windows.net/paint-app/Uploads/paintThickness/5TDLB3CH1NS095585%232022-10-06%2303-33-17/Left_Front_Door_1.jpg',
1084
+ 'https://tiqappstorage.blob.core.windows.net/paint-app/Uploads/paintThickness/5TDLB3CH1NS095585%232022-10-06%2303-33-17/Left_Front_Door_2.jpg',
1085
+ ],
1086
+ },
1087
+ {
1088
+ name: 'third',
1089
+ images: [
1090
+ 'https://tiqappstorage.blob.core.windows.net/paint-app/Uploads/paintThickness/5TDLB3CH1NS095585%232022-10-06%2303-33-17/Right_Front_Fender_3.jpg',
1091
+ 'https://tiqappstorage.blob.core.windows.net/paint-app/Uploads/paintThickness/5TDLB3CH1NS095585%232022-10-06%2303-33-17/Right_Rear_Door_1.jpg',
1092
+ 'https://tiqappstorage.blob.core.windows.net/paint-app/Uploads/paintThickness/5TDLB3CH1NS095585%232022-10-06%2303-33-17/Right_Rear_Door_2.jpg',
1093
+ ],
1094
+ },
1095
+ ],
1096
+ },
1097
+ vin: 'MR0BX8CD3P2791075',
1098
+ identifiers: {
1099
+ vin: 'MR0BX8CD3P2791075',
1100
+ variant: '13461HN202301',
1101
+ katashiki: 'TGN126L-DTTHKV',
1102
+ color: '040',
1103
+ trim: '30',
1104
+ brand: 0,
1105
+ brandIntegrationID: 'TYT',
1106
+ },
1107
+ saleInformation: {
1108
+ dealerIntegrationID: '1',
1109
+ dealerName: 'SAS',
1110
+ branchIntegrationID: '43',
1111
+ branchName: 'SAS - Showroom | Duhok',
1112
+ customerAccount: 'R01447',
1113
+ customerID: '89437',
1114
+ invoiceDate: '2023-05-11',
1115
+ invoiceNumber: 11155049,
1116
+ broker: {
1117
+ brokerId: 628,
1118
+ brokerName: 'Modren Cars',
1119
+ customerID: 11048,
1120
+ invoiceNumber: 86,
1121
+ invoiceDate: '2023-06-05',
1122
+ },
1123
+ },
1124
+ isAuthorized: true,
1125
+ warranty: {
1126
+ hasActiveWarranty: true,
1127
+ warrantyStartDate: '2023-06-05',
1128
+ warrantyEndDate: '2026-06-05',
1129
+ hasExtendedWarranty: false,
1130
+ extendedWarrantyStartDate: null,
1131
+ extendedWarrantyEndDate: null,
1132
+ },
1133
+ nextServiceDate: '2025-01-13',
1134
+ serviceHistory: [
1135
+ {
1136
+ serviceType: 'PM SL (5K, 15K,25K...95K)',
1137
+ serviceDate: '2024-10-13',
1138
+ mileage: 73941,
1139
+ companyName: 'SAS',
1140
+ branchName: 'SAS - Showroom | Duhok',
1141
+ companyId: 1,
1142
+ branchId: 43,
1143
+ account: 'C00015',
1144
+ invoiceNumber: 53166219,
1145
+ wipNumber: 16416,
1146
+ laborLines: [
1147
+ {
1148
+ rtsCode: 'CWASH',
1149
+ menuCode: ' ',
1150
+ serviceCode: 'PMS',
1151
+ description: 'Free Car Wash',
1152
+ },
1153
+ {
1154
+ rtsCode: 'BGTEPR',
1155
+ menuCode: 'BGTEPR',
1156
+ serviceCode: 'PMS',
1157
+ description: 'BG Engine Performance Restorat',
1158
+ },
1159
+ {
1160
+ rtsCode: '0BHL75W4',
1161
+ menuCode: 'SERH4W 75KS3',
1162
+ serviceCode: 'PMS',
1163
+ description: 'CARRY OUT 75,000 KM SERVICE',
1164
+ },
1165
+ ],
1166
+ partLines: [
1167
+ {
1168
+ partNumber: 'T0888083715',
1169
+ qty: 5.5,
1170
+ menuCode: 'SERH4W 75KS3',
1171
+ partDescription: 'TGMO SN 5W30 208L',
1172
+ },
1173
+ {
1174
+ partNumber: 'ZBG6579M3',
1175
+ qty: 1,
1176
+ menuCode: 'BGTEPR',
1177
+ partDescription: 'PERFORMANCE OIL SERVICE',
1178
+ },
1179
+ {
1180
+ partNumber: 'T90915YZZD2',
1181
+ qty: 1,
1182
+ menuCode: 'SERH4W 75KS3',
1183
+ partDescription: 'FILTER, OIL',
1184
+ },
1185
+ {
1186
+ partNumber: 'T9043012031',
1187
+ qty: 1,
1188
+ menuCode: 'SERH4W 75KS3',
1189
+ partDescription: 'GASKET',
1190
+ },
1191
+ ],
1192
+ },
1193
+ {
1194
+ serviceType: 'PM SL (5K, 15K,25K...95K)',
1195
+ serviceDate: '2024-09-08',
1196
+ mileage: 62620,
1197
+ companyName: 'SAS',
1198
+ branchName: 'SAS - Showroom | Duhok',
1199
+ companyId: 1,
1200
+ branchId: 43,
1201
+ account: 'C00015',
1202
+ invoiceNumber: 53165038,
1203
+ wipNumber: 14587,
1204
+ laborLines: [
1205
+ {
1206
+ rtsCode: 'CWASH',
1207
+ menuCode: ' ',
1208
+ serviceCode: 'PMS',
1209
+ description: 'Free Car Wash',
1210
+ },
1211
+ {
1212
+ rtsCode: '0BHL05W4',
1213
+ menuCode: 'SERH4W 05KS3',
1214
+ serviceCode: 'PMS',
1215
+ description: 'CARRY OUT 5,000 KM SERVICE',
1216
+ },
1217
+ {
1218
+ rtsCode: 'CONSU',
1219
+ menuCode: 'CONS',
1220
+ serviceCode: 'PMS',
1221
+ description: 'Consumables',
1222
+ },
1223
+ ],
1224
+ partLines: [
1225
+ {
1226
+ partNumber: 'T90915YZZD2',
1227
+ qty: 1,
1228
+ menuCode: 'SERH4W 05KS3',
1229
+ partDescription: 'FILTER, OIL',
1230
+ },
1231
+ {
1232
+ partNumber: 'T0888083715',
1233
+ qty: 5.5,
1234
+ menuCode: 'SERH4W 05KS3',
1235
+ partDescription: 'TGMO SN 5W30 208L',
1236
+ },
1237
+ {
1238
+ partNumber: 'T9043012031',
1239
+ qty: 1,
1240
+ menuCode: 'SERH4W 05KS3',
1241
+ partDescription: 'GASKET',
1242
+ },
1243
+ ],
1244
+ },
1245
+ {
1246
+ serviceType: 'PM SL (5K, 15K,25K...95K)',
1247
+ serviceDate: '2024-07-28',
1248
+ mileage: 61940,
1249
+ companyName: 'SAS',
1250
+ branchName: 'SAS - Showroom | Duhok',
1251
+ companyId: 1,
1252
+ branchId: 43,
1253
+ account: 'C00015',
1254
+ invoiceNumber: 53163666,
1255
+ wipNumber: 12359,
1256
+ laborLines: [
1257
+ {
1258
+ rtsCode: '0BHL65W4',
1259
+ menuCode: 'SERH4W 65KS3',
1260
+ serviceCode: 'PMS',
1261
+ description: 'CARRY OUT 65,000 KM SERVICE',
1262
+ },
1263
+ {
1264
+ rtsCode: 'PDRINSP',
1265
+ menuCode: ' ',
1266
+ serviceCode: 'PMS',
1267
+ description: 'FRONT BUMPER SC1',
1268
+ },
1269
+ {
1270
+ rtsCode: 'CONS',
1271
+ menuCode: ' ',
1272
+ serviceCode: 'PMS',
1273
+ description: 'Consumables',
1274
+ },
1275
+ {
1276
+ rtsCode: 'CWASH',
1277
+ menuCode: ' ',
1278
+ serviceCode: 'PMS',
1279
+ description: 'Free Car Wash',
1280
+ },
1281
+ ],
1282
+ partLines: [
1283
+ {
1284
+ partNumber: 'T90915YZZD2',
1285
+ qty: 1,
1286
+ menuCode: 'SERH4W 65KS3',
1287
+ partDescription: 'FILTER, OIL',
1288
+ },
1289
+ {
1290
+ partNumber: 'T9043012031',
1291
+ qty: 1,
1292
+ menuCode: 'SERH4W 65KS3',
1293
+ partDescription: 'GASKET',
1294
+ },
1295
+ {
1296
+ partNumber: 'T0888083715',
1297
+ qty: 5.5,
1298
+ menuCode: 'SERH4W 65KS3',
1299
+ partDescription: 'TGMO SN 5W30 208L',
1300
+ },
1301
+ ],
1302
+ },
1303
+ {
1304
+ serviceType: 'PM SL (5K, 15K,25K...95K)',
1305
+ serviceDate: '2024-06-26',
1306
+ mileage: 56592,
1307
+ companyName: 'SAS',
1308
+ branchName: 'SAS - Showroom | Duhok',
1309
+ companyId: 1,
1310
+ branchId: 43,
1311
+ account: 'C00015',
1312
+ invoiceNumber: 53162583,
1313
+ wipNumber: 10672,
1314
+ laborLines: [
1315
+ {
1316
+ rtsCode: 'CONS',
1317
+ menuCode: ' ',
1318
+ serviceCode: 'PMS',
1319
+ description: 'Consumables',
1320
+ },
1321
+ {
1322
+ rtsCode: 'CWASH',
1323
+ menuCode: ' ',
1324
+ serviceCode: 'PMS',
1325
+ description: 'Free Car Wash',
1326
+ },
1327
+ {
1328
+ rtsCode: '0BHL55W4',
1329
+ menuCode: 'SERH4W 55KS3',
1330
+ serviceCode: 'PMS',
1331
+ description: 'CARRY OUT 55,000 KM SERVICE',
1332
+ },
1333
+ ],
1334
+ partLines: [
1335
+ {
1336
+ partNumber: 'T90915YZZD2',
1337
+ qty: 1,
1338
+ menuCode: 'SERH4W 55KS3',
1339
+ partDescription: 'FILTER, OIL',
1340
+ },
1341
+ {
1342
+ partNumber: 'T0888083715',
1343
+ qty: 5.5,
1344
+ menuCode: 'SERH4W 55KS3',
1345
+ partDescription: 'TGMO SN 5W30 208L',
1346
+ },
1347
+ {
1348
+ partNumber: 'T9043012031',
1349
+ qty: 1,
1350
+ menuCode: 'SERH4W 55KS3',
1351
+ partDescription: 'GASKET',
1352
+ },
1353
+ ],
1354
+ },
1355
+ {
1356
+ serviceType: 'PM SL (5K, 15K,25K...95K)',
1357
+ serviceDate: '2024-05-26',
1358
+ mileage: 51308,
1359
+ companyName: 'SAS',
1360
+ branchName: 'SAS - Showroom | Duhok',
1361
+ companyId: 1,
1362
+ branchId: 43,
1363
+ account: 'S00058',
1364
+ invoiceNumber: 53161736,
1365
+ wipNumber: 64345,
1366
+ laborLines: [
1367
+ {
1368
+ rtsCode: 'PDRINSP',
1369
+ menuCode: ' ',
1370
+ serviceCode: 'PMS',
1371
+ description: 'REAR LEFT FENDER PDR1+SC1',
1372
+ },
1373
+ {
1374
+ rtsCode: 'CONS',
1375
+ menuCode: ' ',
1376
+ serviceCode: 'PMS',
1377
+ description: 'Consumables',
1378
+ },
1379
+ {
1380
+ rtsCode: '0BHL55W4',
1381
+ menuCode: 'SERH4W 55KS3',
1382
+ serviceCode: 'PMS',
1383
+ description: 'CARRY OUT 55,000 KM SERVICE',
1384
+ },
1385
+ {
1386
+ rtsCode: 'BGT44K',
1387
+ menuCode: 'BGT44K',
1388
+ serviceCode: 'PMS',
1389
+ description: 'BG 44K Platinum Fuel System Cl',
1390
+ },
1391
+ ],
1392
+ partLines: [
1393
+ {
1394
+ partNumber: 'ZBG208M',
1395
+ qty: 1,
1396
+ menuCode: 'BGT44K',
1397
+ partDescription: '44K PLATINUM FUEL & COMBUSTION CLEANER',
1398
+ },
1399
+ {
1400
+ partNumber: 'T9043012031',
1401
+ qty: 1,
1402
+ menuCode: 'SERH4W 55KS3',
1403
+ partDescription: 'GASKET',
1404
+ },
1405
+ {
1406
+ partNumber: 'T90915YZZD2',
1407
+ qty: 1,
1408
+ menuCode: 'SERH4W 55KS3',
1409
+ partDescription: 'FILTER, OIL',
1410
+ },
1411
+ {
1412
+ partNumber: 'T0888083719',
1413
+ qty: 5.5,
1414
+ menuCode: 'SERH4W 55KS3',
1415
+ partDescription: 'LGMO SN 5W40 208L',
1416
+ },
1417
+ ],
1418
+ },
1419
+ {
1420
+ serviceType: 'PM SL (5K, 15K,25K...95K)',
1421
+ serviceDate: '2024-04-22',
1422
+ mileage: 46248,
1423
+ companyName: 'SAS',
1424
+ branchName: 'SAS - Showroom | Duhok',
1425
+ companyId: 1,
1426
+ branchId: 43,
1427
+ account: 'C00015',
1428
+ invoiceNumber: 53160685,
1429
+ wipNumber: 62792,
1430
+ laborLines: [
1431
+ {
1432
+ rtsCode: 'BGTEPR',
1433
+ menuCode: 'BGTEPR',
1434
+ serviceCode: 'PMS',
1435
+ description: 'BG Engine Performance Restorat',
1436
+ },
1437
+ {
1438
+ rtsCode: 'CWASH',
1439
+ menuCode: ' ',
1440
+ serviceCode: 'PMS',
1441
+ description: 'Free Car Wash',
1442
+ },
1443
+ {
1444
+ rtsCode: 'PDRINSP',
1445
+ menuCode: ' ',
1446
+ serviceCode: 'PMS',
1447
+ description: 'REAR LEFT FENDER SC2',
1448
+ },
1449
+ {
1450
+ rtsCode: '0BHL45W4',
1451
+ menuCode: 'SERH4W 45KS3',
1452
+ serviceCode: 'PMS',
1453
+ description: 'CARRY OUT 45,000 KM SERVICE',
1454
+ },
1455
+ {
1456
+ rtsCode: 'CONS',
1457
+ menuCode: ' ',
1458
+ serviceCode: 'PMS',
1459
+ description: 'Consumables',
1460
+ },
1461
+ {
1462
+ rtsCode: 'CWASH',
1463
+ menuCode: ' ',
1464
+ serviceCode: 'PMS',
1465
+ description: 'Free Car Wash',
1466
+ },
1467
+ ],
1468
+ partLines: [
1469
+ {
1470
+ partNumber: 'T90915YZZD2',
1471
+ qty: 1,
1472
+ menuCode: 'SERH4W 45KS3',
1473
+ partDescription: 'FILTER, OIL',
1474
+ },
1475
+ {
1476
+ partNumber: 'T9043012031',
1477
+ qty: 1,
1478
+ menuCode: 'SERH4W 45KS3',
1479
+ partDescription: 'GASKET',
1480
+ },
1481
+ {
1482
+ partNumber: 'T0888083719',
1483
+ qty: 5.5,
1484
+ menuCode: 'SERH4W 45KS3',
1485
+ partDescription: 'LGMO SN 5W40 208L',
1486
+ },
1487
+ {
1488
+ partNumber: 'ZBG6579M3',
1489
+ qty: 1,
1490
+ menuCode: 'BGTEPR',
1491
+ partDescription: 'PERFORMANCE OIL SERVICE',
1492
+ },
1493
+ ],
1494
+ },
1495
+ {
1496
+ serviceType: 'PM SL (5K, 15K,25K...95K)',
1497
+ serviceDate: '2024-03-16',
1498
+ mileage: 40586,
1499
+ companyName: 'SAS',
1500
+ branchName: 'SAS - Showroom | Duhok',
1501
+ companyId: 1,
1502
+ branchId: 43,
1503
+ account: 'C00015',
1504
+ invoiceNumber: 53159833,
1505
+ wipNumber: 61274,
1506
+ laborLines: [
1507
+ {
1508
+ rtsCode: 'CONS',
1509
+ menuCode: ' ',
1510
+ serviceCode: 'PMS',
1511
+ description: 'Consumables',
1512
+ },
1513
+ {
1514
+ rtsCode: 'PDRINSP',
1515
+ menuCode: ' ',
1516
+ serviceCode: 'PMS',
1517
+ description: 'front left door sc1',
1518
+ },
1519
+ {
1520
+ rtsCode: '0BHL35W4',
1521
+ menuCode: 'SERH4W 35KS3',
1522
+ serviceCode: 'PMS',
1523
+ description: 'CARRY OUT 35,000 KM SERVICE',
1524
+ },
1525
+ {
1526
+ rtsCode: 'CWASH',
1527
+ menuCode: ' ',
1528
+ serviceCode: 'PMS',
1529
+ description: 'Free Car Wash',
1530
+ },
1531
+ ],
1532
+ partLines: [
1533
+ {
1534
+ partNumber: 'T9043012031',
1535
+ qty: 1,
1536
+ menuCode: 'SERH4W 35KS3',
1537
+ partDescription: 'GASKET',
1538
+ },
1539
+ {
1540
+ partNumber: 'T90915YZZD2',
1541
+ qty: 1,
1542
+ menuCode: 'SERH4W 35KS3',
1543
+ partDescription: 'FILTER, OIL',
1544
+ },
1545
+ {
1546
+ partNumber: 'T0888083715',
1547
+ qty: 5.5,
1548
+ menuCode: 'SERH4W 35KS3',
1549
+ partDescription: 'TGMO SN 5W30 208L',
1550
+ },
1551
+ ],
1552
+ },
1553
+ {
1554
+ serviceType: 'PM SL (5K, 15K,25K...95K)',
1555
+ serviceDate: '2024-02-05',
1556
+ mileage: 35261,
1557
+ companyName: 'SAS',
1558
+ branchName: 'SAS - Showroom | Duhok',
1559
+ companyId: 1,
1560
+ branchId: 43,
1561
+ account: 'C00015',
1562
+ invoiceNumber: 53158737,
1563
+ wipNumber: 59536,
1564
+ laborLines: [
1565
+ {
1566
+ rtsCode: 'BGTPFI',
1567
+ menuCode: 'BGTPFI',
1568
+ serviceCode: 'PMS',
1569
+ description: 'BG PFI Fuel & Air Induction Cl',
1570
+ },
1571
+ {
1572
+ rtsCode: '0BHL05W4',
1573
+ menuCode: 'SERH4W 05KS3',
1574
+ serviceCode: 'PMS',
1575
+ description: 'CARRY OUT 5,000 KM SERVICE',
1576
+ },
1577
+ {
1578
+ rtsCode: 'CONS',
1579
+ menuCode: ' ',
1580
+ serviceCode: 'PMS',
1581
+ description: 'Consumables',
1582
+ },
1583
+ {
1584
+ rtsCode: '473301',
1585
+ menuCode: ' ',
1586
+ serviceCode: 'PMS',
1587
+ description: 'FRONT DISC BRAKE PAD AND/OR DI',
1588
+ },
1589
+ ],
1590
+ partLines: [
1591
+ {
1592
+ partNumber: 'T044650K360',
1593
+ qty: 1,
1594
+ menuCode: ' ',
1595
+ partDescription: 'PAD KIT, DISC BRAKE',
1596
+ },
1597
+ {
1598
+ partNumber: 'ZBG2901M3',
1599
+ qty: 1,
1600
+ menuCode: 'BGTPFI',
1601
+ partDescription: 'PFI FUEL & AIR INDUCTION CLEANING',
1602
+ },
1603
+ {
1604
+ partNumber: 'T0888083715',
1605
+ qty: 5.5,
1606
+ menuCode: 'SERH4W 05KS3',
1607
+ partDescription: 'TGMO SN 5W30 208L',
1608
+ },
1609
+ {
1610
+ partNumber: 'T9043012031',
1611
+ qty: 1,
1612
+ menuCode: 'SERH4W 05KS3',
1613
+ partDescription: 'GASKET',
1614
+ },
1615
+ {
1616
+ partNumber: 'T90915YZZD2',
1617
+ qty: 1,
1618
+ menuCode: 'SERH4W 05KS3',
1619
+ partDescription: 'FILTER, OIL',
1620
+ },
1621
+ ],
1622
+ },
1623
+ {
1624
+ serviceType: 'PM SL (5K, 15K,25K...95K)',
1625
+ serviceDate: '2023-12-25',
1626
+ mileage: 30253,
1627
+ companyName: 'SAS',
1628
+ branchName: 'SAS - Showroom | Duhok',
1629
+ companyId: 1,
1630
+ branchId: 43,
1631
+ account: 'C00015',
1632
+ invoiceNumber: 53157673,
1633
+ wipNumber: 57573,
1634
+ laborLines: [
1635
+ {
1636
+ rtsCode: 'CONS',
1637
+ menuCode: ' ',
1638
+ serviceCode: 'PMS',
1639
+ description: 'Consumables',
1640
+ },
1641
+ {
1642
+ rtsCode: 'CWASH',
1643
+ menuCode: ' ',
1644
+ serviceCode: 'PMS',
1645
+ description: 'Free Car Wash',
1646
+ },
1647
+ {
1648
+ rtsCode: 'PDRINSP',
1649
+ menuCode: ' ',
1650
+ serviceCode: 'PMS',
1651
+ description: 'FRONT BUMPER SC3',
1652
+ },
1653
+ {
1654
+ rtsCode: '0BHL25W4',
1655
+ menuCode: 'SERH4W 25KS3',
1656
+ serviceCode: 'PMS',
1657
+ description: 'CARRY OUT 25,000 KM SERVICE',
1658
+ },
1659
+ ],
1660
+ partLines: [
1661
+ {
1662
+ partNumber: 'T0888083715',
1663
+ qty: 5.5,
1664
+ menuCode: 'SERH4W 25KS3',
1665
+ partDescription: 'TGMO SN 5W30 208L',
1666
+ },
1667
+ {
1668
+ partNumber: 'T9043012031',
1669
+ qty: 1,
1670
+ menuCode: 'SERH4W 25KS3',
1671
+ partDescription: 'GASKET',
1672
+ },
1673
+ {
1674
+ partNumber: 'T90915YZZD2',
1675
+ qty: 1,
1676
+ menuCode: 'SERH4W 25KS3',
1677
+ partDescription: 'FILTER, OIL',
1678
+ },
1679
+ ],
1680
+ },
1681
+ ],
1682
+ ssc: null,
1683
+ vehicleVariantInfo: {
1684
+ modelCode: '13461',
1685
+ sfx: 'HN',
1686
+ modelYear: 2023,
1687
+ },
1688
+ vehicleSpecification: {
1689
+ modelDesc: 'HILUX 2.7 D/C 4*4/AT/High/ADD',
1690
+ variantDesc: '2.7L/DC/4x4/AT/High/ADD',
1691
+ class: 'C',
1692
+ bodyType: ' ',
1693
+ engine: ' 2700 ',
1694
+ cylinders: ' 0 ',
1695
+ lightHeavy: ' ',
1696
+ doors: ' 4 ',
1697
+ fuel: 'P',
1698
+ transmission: 'Automatic',
1699
+ side: '1',
1700
+ engineType: ' ',
1701
+ tankCap: ' 0 ',
1702
+ style: 'Pick up',
1703
+ fuelLiter: null,
1704
+ color: 'SUPER WHITE 2',
1705
+ trim: 'TERRA COTTA',
1706
+ },
1707
+ serviceItems: [
1708
+ {
1709
+ name: '1,000 KM Free Service',
1710
+ type: 'free',
1711
+ activatedAt: '2023-01-08',
1712
+ expiresAt: '2023-04-08',
1713
+ status: 'processed',
1714
+ redeemDate: '2023-01-19',
1715
+ },
1716
+ {
1717
+ name: '5,000 KM Free Service',
1718
+ type: 'free',
1719
+ activatedAt: '2023-04-08',
1720
+ expiresAt: '2023-07-08',
1721
+ status: 'expired',
1722
+ },
1723
+ {
1724
+ name: '10,000 KM Free Service',
1725
+ type: 'free',
1726
+ activatedAt: '2023-07-08',
1727
+ expiresAt: '2023-10-08',
1728
+ status: 'cancelled',
1729
+ },
1730
+ {
1731
+ name: '15,000 KM Free Service',
1732
+ type: 'free',
1733
+ activatedAt: '2023-10-08',
1734
+ expiresAt: '2024-01-08',
1735
+ status: 'processed',
1736
+ },
1737
+ {
1738
+ name: '20,000 KM Free Service',
1739
+ type: 'free',
1740
+ activatedAt: '2024-01-08',
1741
+ expiresAt: '2024-03-08',
1742
+ status: 'processed',
1743
+ },
1744
+ ],
1745
+ basicModelCode: 'TGN126',
1746
+ },
1747
+ JTMHX01J8L4198299: {
1748
+ accessories: [
1749
+ {
1750
+ partNumber: 'yakam2',
1751
+ description: 'dwam',
1752
+ image: 'https://static.printler.com/cache/a/1/6/6/6/e/a1666e9c70da357a080e59aa1058f9c1aa84f847.jpg',
1753
+ },
1754
+ {
1755
+ partNumber: 'test1',
1756
+ description: 'lorem',
1757
+ image: 'https://uploads.dailydot.com/2018/10/olli-the-polite-cat.jpg?q=65&auto=format&w=1200&ar=2:1&fit=crop',
1758
+ },
1759
+ {
1760
+ partNumber: 'yakam231',
1761
+ description: 'dwam',
1762
+ image: 'https://static.printler.com/cache/a/1/6/6/6/e/a1666e9c70da357a080e59aa1058f9c1aa84f847.jpg',
1763
+ },
1764
+ {
1765
+ partNumber: 'test1321',
1766
+ description: 'lorem',
1767
+ image: 'https://uploads.dailydot.com/2018/10/olli-the-polite-cat.jpg?q=65&auto=format&w=1200&ar=2:1&fit=crop',
1768
+ },
1769
+ ],
1770
+ paintThickness: {
1771
+ parts: [
1772
+ {
1773
+ part: ' Front Fender',
1774
+ left: 90,
1775
+ right: 100,
1776
+ },
1777
+ {
1778
+ part: ' Front Door',
1779
+ left: 90,
1780
+ right: 90,
1781
+ },
1782
+ {
1783
+ part: ' Front Fender1',
1784
+ left: 90,
1785
+ right: 100,
1786
+ },
1787
+ {
1788
+ part: ' Front Door2',
1789
+ left: 90,
1790
+ right: 90,
1791
+ },
1792
+ ],
1793
+ imageGroups: [
1794
+ {
1795
+ name: 'zero',
1796
+ images: ['https://tiqappstorage.blob.core.windows.net/paint-app/Uploads/paintThickness/5TDLB3CH1NS095585%232022-10-06%2303-33-17/Hood_1.jpg'],
1797
+ },
1798
+ {
1799
+ name: 'second',
1800
+ images: [
1801
+ 'https://tiqappstorage.blob.core.windows.net/paint-app/Uploads/paintThickness/5TDLB3CH1NS095585%232022-10-06%2303-33-17/Left_Front_Door_1.jpg',
1802
+ 'https://tiqappstorage.blob.core.windows.net/paint-app/Uploads/paintThickness/5TDLB3CH1NS095585%232022-10-06%2303-33-17/Left_Front_Door_2.jpg',
1803
+ ],
1804
+ },
1805
+ {
1806
+ name: 'second',
1807
+ images: [
1808
+ 'https://tiqappstorage.blob.core.windows.net/paint-app/Uploads/paintThickness/5TDLB3CH1NS095585%232022-10-06%2303-33-17/Left_Front_Door_1.jpg',
1809
+ 'https://tiqappstorage.blob.core.windows.net/paint-app/Uploads/paintThickness/5TDLB3CH1NS095585%232022-10-06%2303-33-17/Left_Front_Door_2.jpg',
1810
+ ],
1811
+ },
1812
+ {
1813
+ name: 'third',
1814
+ images: [
1815
+ 'https://tiqappstorage.blob.core.windows.net/paint-app/Uploads/paintThickness/5TDLB3CH1NS095585%232022-10-06%2303-33-17/Right_Front_Fender_3.jpg',
1816
+ 'https://tiqappstorage.blob.core.windows.net/paint-app/Uploads/paintThickness/5TDLB3CH1NS095585%232022-10-06%2303-33-17/Right_Rear_Door_1.jpg',
1817
+ 'https://tiqappstorage.blob.core.windows.net/paint-app/Uploads/paintThickness/5TDLB3CH1NS095585%232022-10-06%2303-33-17/Right_Rear_Door_2.jpg',
1818
+ ],
1819
+ },
1820
+ ],
1821
+ },
1822
+ vin: 'JTMHX01J8L4198299',
1823
+ identifiers: {
1824
+ vin: 'JTMHX01J8L4198295',
1825
+ variant: null,
1826
+ katashiki: null,
1827
+ color: null,
1828
+ trim: null,
1829
+ brand: 0,
1830
+ brandIntegrationID: null,
1831
+ },
1832
+ saleInformation: null,
1833
+ isAuthorized: false,
1834
+ warranty: {
1835
+ hasActiveWarranty: false,
1836
+ warrantyStartDate: '2020-06-05',
1837
+ warrantyEndDate: '2021-06-05',
1838
+ hasExtendedWarranty: false,
1839
+ extendedWarrantyStartDate: null,
1840
+ extendedWarrantyEndDate: null,
1841
+ },
1842
+ nextServiceDate: '2023-12-12',
1843
+ serviceHistory: [
1844
+ {
1845
+ serviceType: 'PM SL (5K, 15K,25K...95K)',
1846
+ serviceDate: '2023-09-12',
1847
+ mileage: 30296,
1848
+ companyName: 'CIHAN',
1849
+ branchName: 'Cihan - Showroom | Erbil - Makhmur Road',
1850
+ companyId: 2,
1851
+ branchId: 14,
1852
+ account: 'CS00022',
1853
+ invoiceNumber: 51456604,
1854
+ wipNumber: 13681,
1855
+ laborLines: [
1856
+ {
1857
+ rtsCode: 'NOTES',
1858
+ menuCode: ' ',
1859
+ serviceCode: 'PMS',
1860
+ description: 'FR WIPER RUBBER NEEDS TO R/P,',
1861
+ },
1862
+ {
1863
+ rtsCode: 'EXPMAIN',
1864
+ menuCode: ' ',
1865
+ serviceCode: 'PMS',
1866
+ description: 'EXPMAIN',
1867
+ },
1868
+ {
1869
+ rtsCode: '0BLC25UR',
1870
+ menuCode: 'SERLCUR 25KS',
1871
+ serviceCode: 'PMS',
1872
+ description: 'CARRY OUT 25,000 KM SERVICE',
1873
+ },
1874
+ ],
1875
+ partLines: [
1876
+ {
1877
+ partNumber: 'T04152YZZD4',
1878
+ qty: 1,
1879
+ menuCode: 'SERLCUR 25KS',
1880
+ partDescription: 'ELEMENT KIT, OIL',
1881
+ },
1882
+ {
1883
+ partNumber: 'T0888083719',
1884
+ qty: 8,
1885
+ menuCode: 'SERLCUR 25KS',
1886
+ partDescription: 'LGMO SN 5W40 208L',
1887
+ },
1888
+ {
1889
+ partNumber: 'T9043012031',
1890
+ qty: 1,
1891
+ menuCode: 'SERLCUR 25KS',
1892
+ partDescription: 'GASKET',
1893
+ },
1894
+ {
1895
+ partNumber: 'T7736035040',
1896
+ qty: 1,
1897
+ menuCode: ' ',
1898
+ partDescription: 'SPRING ASSY, FUEL',
1899
+ },
1900
+ ],
1901
+ },
1902
+ {
1903
+ serviceType: 'PM SL (5K, 15K,25K...95K)',
1904
+ serviceDate: '2023-02-09',
1905
+ mileage: 25660,
1906
+ companyName: 'CIHAN',
1907
+ branchName: 'Cihan - Showroom | Erbil - Makhmur Road',
1908
+ companyId: 2,
1909
+ branchId: 14,
1910
+ account: 'CS00022',
1911
+ invoiceNumber: 51447340,
1912
+ wipNumber: 52446,
1913
+ laborLines: [
1914
+ {
1915
+ rtsCode: '02FUELLCUR',
1916
+ menuCode: 'FUEL FILTER LCUR',
1917
+ serviceCode: 'PMS',
1918
+ description: 'FUEL FILTER REPLACEMENT',
1919
+ },
1920
+ {
1921
+ rtsCode: '0BLC25UR',
1922
+ menuCode: 'SERLCUR 25KS',
1923
+ serviceCode: 'PMS',
1924
+ description: 'CARRY OUT 25,000 KM SERVICE',
1925
+ },
1926
+ ],
1927
+ partLines: [
1928
+ {
1929
+ partNumber: 'T0888083719',
1930
+ qty: 8,
1931
+ menuCode: 'SERLCUR 25KS',
1932
+ partDescription: 'LGMO SN 5W40 208L',
1933
+ },
1934
+ {
1935
+ partNumber: 'T9043012031',
1936
+ qty: 1,
1937
+ menuCode: 'SERLCUR 25KS',
1938
+ partDescription: 'GASKET',
1939
+ },
1940
+ {
1941
+ partNumber: 'T2330050150',
1942
+ qty: 1,
1943
+ menuCode: 'FUEL FILTER LCUR',
1944
+ partDescription: 'FILTER ASSY, FUEL',
1945
+ },
1946
+ {
1947
+ partNumber: 'T04152YZZD4',
1948
+ qty: 1,
1949
+ menuCode: 'SERLCUR 25KS',
1950
+ partDescription: 'ELEMENT KIT, OIL',
1951
+ },
1952
+ ],
1953
+ },
1954
+ {
1955
+ serviceType: 'PM SL (5K, 15K,25K...95K)',
1956
+ serviceDate: '2022-09-10',
1957
+ mileage: 20574,
1958
+ companyName: 'CIHAN',
1959
+ branchName: 'Cihan - Showroom | Erbil - Makhmur Road',
1960
+ companyId: 2,
1961
+ branchId: 14,
1962
+ account: 'CS00022',
1963
+ invoiceNumber: 51441539,
1964
+ wipNumber: 41940,
1965
+ laborLines: [
1966
+ {
1967
+ rtsCode: '0BLC15UR',
1968
+ menuCode: 'SERLCUR 15KS',
1969
+ serviceCode: 'PMS',
1970
+ description: 'CARRY OUT 15,000 KM SERVICE',
1971
+ },
1972
+ {
1973
+ rtsCode: '37099',
1974
+ menuCode: ' ',
1975
+ serviceCode: 'PMS',
1976
+ description: 'GREASING',
1977
+ },
1978
+ ],
1979
+ partLines: [
1980
+ {
1981
+ partNumber: 'T1780138030',
1982
+ qty: 1,
1983
+ menuCode: ' ',
1984
+ partDescription: 'ELEMENT SUB-ASSY,',
1985
+ },
1986
+ {
1987
+ partNumber: 'T0888083719',
1988
+ qty: 8,
1989
+ menuCode: 'SERLCUR 15KS',
1990
+ partDescription: 'LGMO SN 5W40 208L',
1991
+ },
1992
+ {
1993
+ partNumber: 'T9043012031',
1994
+ qty: 1,
1995
+ menuCode: 'SERLCUR 15KS',
1996
+ partDescription: 'GASKET',
1997
+ },
1998
+ {
1999
+ partNumber: 'T04152YZZD4',
2000
+ qty: 1,
2001
+ menuCode: ' ',
2002
+ partDescription: 'ELEMENT KIT, OIL',
2003
+ },
2004
+ ],
2005
+ },
2006
+ {
2007
+ serviceType: 'PM SL (5K, 15K,25K...95K)',
2008
+ serviceDate: '2021-11-27',
2009
+ mileage: 13964,
2010
+ companyName: 'CIHAN',
2011
+ branchName: 'Cihan - Showroom | Erbil - Makhmur Road',
2012
+ companyId: 2,
2013
+ branchId: 14,
2014
+ account: 'CS00022',
2015
+ invoiceNumber: 51431492,
2016
+ wipNumber: 22296,
2017
+ laborLines: [
2018
+ {
2019
+ rtsCode: '0BLC15UR',
2020
+ menuCode: 'SERLCUR 15KS',
2021
+ serviceCode: 'PMS',
2022
+ description: 'CARRY OUT 15,000 KM SERVICE',
2023
+ },
2024
+ ],
2025
+ partLines: [
2026
+ {
2027
+ partNumber: 'T0888083719',
2028
+ qty: 8,
2029
+ menuCode: 'SERLCUR 15KS',
2030
+ partDescription: 'LGMO SN 5W40 208L',
2031
+ },
2032
+ {
2033
+ partNumber: 'T04152YZZD4',
2034
+ qty: 1,
2035
+ menuCode: 'SERLCUR 15KS',
2036
+ partDescription: 'ELEMENT KIT, OIL',
2037
+ },
2038
+ {
2039
+ partNumber: 'T9043012031',
2040
+ qty: 1,
2041
+ menuCode: 'SERLCUR 15KS',
2042
+ partDescription: 'GASKET',
2043
+ },
2044
+ ],
2045
+ },
2046
+ ],
2047
+ ssc: null,
2048
+ vehicleVariantInfo: null,
2049
+ vehicleSpecification: null,
2050
+ serviceItems: [
2051
+ {
2052
+ name: '1,000 KM Free Service',
2053
+ type: 'free',
2054
+ activatedAt: '2023-01-08',
2055
+ expiresAt: '2023-04-08',
2056
+ status: 'processed',
2057
+ redeemDate: '2023-01-19',
2058
+ },
2059
+ {
2060
+ name: '5,000 KM Free Service',
2061
+ type: 'free',
2062
+ activatedAt: '2023-04-08',
2063
+ expiresAt: '2023-07-08',
2064
+ status: 'pending',
2065
+ },
2066
+ ],
2067
+ basicModelCode: null,
2068
+ },
2069
+ JTMABBBJ9P4099243: {
2070
+ accessories: [
2071
+ {
2072
+ partNumber: 'yakam',
2073
+ description: 'dwam',
2074
+ image: 'https://static.printler.com/cache/a/1/6/6/6/e/a1666e9c70da357a080e59aa1058f9c1aa84f847.jpg',
2075
+ },
2076
+ ],
2077
+ paintThickness: {
2078
+ parts: [
2079
+ {
2080
+ part: ' Front Fender',
2081
+ left: 90,
2082
+ right: 100,
2083
+ },
2084
+ {
2085
+ part: ' Front Door',
2086
+ left: 90,
2087
+ right: 90,
2088
+ },
2089
+ {
2090
+ part: ' Front Fender1',
2091
+ left: 90,
2092
+ right: 100,
2093
+ },
2094
+ {
2095
+ part: ' Front Door2',
2096
+ left: 90,
2097
+ right: 90,
2098
+ },
2099
+ ],
2100
+ imageGroups: [
2101
+ {
2102
+ name: 'zero',
2103
+ images: ['https://tiqappstorage.blob.core.windows.net/paint-app/Uploads/paintThickness/5TDLB3CH1NS095585%232022-10-06%2303-33-17/Hood_1.jpg'],
2104
+ },
2105
+ {
2106
+ name: 'second',
2107
+ images: [
2108
+ 'https://tiqappstorage.blob.core.windows.net/paint-app/Uploads/paintThickness/5TDLB3CH1NS095585%232022-10-06%2303-33-17/Left_Front_Door_1.jpg',
2109
+ 'https://tiqappstorage.blob.core.windows.net/paint-app/Uploads/paintThickness/5TDLB3CH1NS095585%232022-10-06%2303-33-17/Left_Front_Door_2.jpg',
2110
+ ],
2111
+ },
2112
+ {
2113
+ name: 'second',
2114
+ images: [
2115
+ 'https://tiqappstorage.blob.core.windows.net/paint-app/Uploads/paintThickness/5TDLB3CH1NS095585%232022-10-06%2303-33-17/Left_Front_Door_1.jpg',
2116
+ 'https://tiqappstorage.blob.core.windows.net/paint-app/Uploads/paintThickness/5TDLB3CH1NS095585%232022-10-06%2303-33-17/Left_Front_Door_2.jpg',
2117
+ ],
2118
+ },
2119
+ {
2120
+ name: 'third',
2121
+ images: [
2122
+ 'https://tiqappstorage.blob.core.windows.net/paint-app/Uploads/paintThickness/5TDLB3CH1NS095585%232022-10-06%2303-33-17/Right_Front_Fender_3.jpg',
2123
+ 'https://tiqappstorage.blob.core.windows.net/paint-app/Uploads/paintThickness/5TDLB3CH1NS095585%232022-10-06%2303-33-17/Right_Rear_Door_1.jpg',
2124
+ 'https://tiqappstorage.blob.core.windows.net/paint-app/Uploads/paintThickness/5TDLB3CH1NS095585%232022-10-06%2303-33-17/Right_Rear_Door_2.jpg',
2125
+ ],
2126
+ },
2127
+ ],
2128
+ },
2129
+ vin: 'JTMABBBJ9P4099243',
2130
+ identifiers: {
2131
+ vin: 'JTMABBBJ9P4099243',
2132
+ variant: '53311S3202301',
2133
+ katashiki: 'VJA300L-GNUAZV',
2134
+ color: '070',
2135
+ trim: '40',
2136
+ brand: 0,
2137
+ brandIntegrationID: 'TYT',
2138
+ },
2139
+ saleInformation: {
2140
+ dealerIntegrationID: '1',
2141
+ dealerName: 'SAS',
2142
+ branchIntegrationID: '44',
2143
+ branchName: 'SAS - Showroom | Basra',
2144
+ customerAccount: 'R01954',
2145
+ customerID: '97120',
2146
+ invoiceDate: '2023-09-18',
2147
+ invoiceNumber: 11160168,
2148
+ broker: {
2149
+ brokerId: 539,
2150
+ brokerName: 'Al-Burchman',
2151
+ customerID: 17782,
2152
+ invoiceNumber: 71,
2153
+ invoiceDate: '2023-11-23',
2154
+ },
2155
+ },
2156
+ isAuthorized: true,
2157
+ warranty: {
2158
+ hasActiveWarranty: true,
2159
+ warrantyStartDate: '2023-11-23',
2160
+ warrantyEndDate: '2026-11-23',
2161
+ hasExtendedWarranty: false,
2162
+ extendedWarrantyStartDate: null,
2163
+ extendedWarrantyEndDate: null,
2164
+ },
2165
+ nextServiceDate: '2025-02-19',
2166
+ serviceHistory: [
2167
+ {
2168
+ serviceType: 'SSC Campaign',
2169
+ serviceDate: '2024-11-19',
2170
+ mileage: 12112,
2171
+ companyName: 'SAS',
2172
+ branchName: 'SAS - Showroom | Basra',
2173
+ companyId: 1,
2174
+ branchId: 44,
2175
+ account: 'W00001',
2176
+ invoiceNumber: 54302844,
2177
+ wipNumber: 32325,
2178
+ laborLines: [
2179
+ {
2180
+ rtsCode: 'ZGG79A',
2181
+ menuCode: ' ',
2182
+ serviceCode: 'SSC',
2183
+ description: 'Reprograming',
2184
+ },
2185
+ ],
2186
+ partLines: [],
2187
+ },
2188
+ {
2189
+ serviceType: 'PM SL (5K, 15K,25K...95K)',
2190
+ serviceDate: '2024-11-19',
2191
+ mileage: 12112,
2192
+ companyName: 'SAS',
2193
+ branchName: 'SAS - Showroom | Basra',
2194
+ companyId: 1,
2195
+ branchId: 44,
2196
+ account: 'C00017',
2197
+ invoiceNumber: 54175880,
2198
+ wipNumber: 31762,
2199
+ laborLines: [
2200
+ {
2201
+ rtsCode: '0BLCVJ05',
2202
+ menuCode: 'SERLCVJ 05KS3',
2203
+ serviceCode: 'PMS',
2204
+ description: 'CARRY OUT 5,000 KM SERVICE',
2205
+ },
2206
+ {
2207
+ rtsCode: 'CONSU',
2208
+ menuCode: 'CONS',
2209
+ serviceCode: 'PMS',
2210
+ description: 'Consumables',
2211
+ },
2212
+ ],
2213
+ partLines: [
2214
+ {
2215
+ partNumber: 'T0888083715',
2216
+ qty: 7.3,
2217
+ menuCode: 'SERLCVJ 05KS3',
2218
+ partDescription: 'TGMO SN 5W30 208L',
2219
+ },
2220
+ {
2221
+ partNumber: 'T9043012031',
2222
+ qty: 1,
2223
+ menuCode: 'SERLCVJ 05KS3',
2224
+ partDescription: 'GASKET',
2225
+ },
2226
+ {
2227
+ partNumber: 'T9091510010',
2228
+ qty: 1,
2229
+ menuCode: 'SERLCVJ 05KS3',
2230
+ partDescription: 'FILTER, OIL',
2231
+ },
2232
+ ],
2233
+ },
2234
+ {
2235
+ serviceType: 'SSC Campaign',
2236
+ serviceDate: '2024-09-08',
2237
+ mileage: 9947,
2238
+ companyName: 'SAS',
2239
+ branchName: 'SAS - Showroom | Basra',
2240
+ companyId: 1,
2241
+ branchId: 44,
2242
+ account: 'W00001',
2243
+ invoiceNumber: 54302319,
2244
+ wipNumber: 23978,
2245
+ laborLines: [
2246
+ {
2247
+ rtsCode: 'ZGG04A',
2248
+ menuCode: ' ',
2249
+ serviceCode: 'SSC',
2250
+ description: 'Reprograming for transmission',
2251
+ },
2252
+ ],
2253
+ partLines: [],
2254
+ },
2255
+ {
2256
+ serviceType: 'PM L (10K,30K,50K & 90K)',
2257
+ serviceDate: '2024-09-08',
2258
+ mileage: 9947,
2259
+ companyName: 'SAS',
2260
+ branchName: 'SAS - Showroom | Basra',
2261
+ companyId: 1,
2262
+ branchId: 44,
2263
+ account: 'C00017',
2264
+ invoiceNumber: 54170870,
2265
+ wipNumber: 23814,
2266
+ laborLines: [
2267
+ {
2268
+ rtsCode: 'CONSU',
2269
+ menuCode: 'CONS',
2270
+ serviceCode: 'PML',
2271
+ description: 'Consumables',
2272
+ },
2273
+ {
2274
+ rtsCode: 'BGT44K',
2275
+ menuCode: 'BGT44K',
2276
+ serviceCode: 'PML',
2277
+ description: 'BG 44K Platinum Fuel System Cl',
2278
+ },
2279
+ {
2280
+ rtsCode: '0BLCVJ05',
2281
+ menuCode: 'SERLCVJ 05KS3',
2282
+ serviceCode: 'PML',
2283
+ description: 'CARRY OUT 5,000 KM SERVICE',
2284
+ },
2285
+ ],
2286
+ partLines: [
2287
+ {
2288
+ partNumber: 'ZBG208M3',
2289
+ qty: 1,
2290
+ menuCode: 'BGT44K',
2291
+ partDescription: '44K PLATINUM FUEL & COMBUSTION CLEANER',
2292
+ },
2293
+ {
2294
+ partNumber: 'T9043012031',
2295
+ qty: 1,
2296
+ menuCode: 'SERLCVJ 05KS3',
2297
+ partDescription: 'GASKET',
2298
+ },
2299
+ {
2300
+ partNumber: 'T0888083715',
2301
+ qty: 7.3,
2302
+ menuCode: 'SERLCVJ 05KS3',
2303
+ partDescription: 'TGMO SN 5W30 208L',
2304
+ },
2305
+ {
2306
+ partNumber: 'T9091510010',
2307
+ qty: 1,
2308
+ menuCode: 'SERLCVJ 05KS3',
2309
+ partDescription: 'FILTER, OIL',
2310
+ },
2311
+ ],
2312
+ },
2313
+ {
2314
+ serviceType: 'PM SL (5K, 15K,25K...95K)',
2315
+ serviceDate: '2024-04-16',
2316
+ mileage: 7520,
2317
+ companyName: 'SAS',
2318
+ branchName: 'SAS - Showroom | Basra',
2319
+ companyId: 1,
2320
+ branchId: 44,
2321
+ account: 'C00017',
2322
+ invoiceNumber: 54162502,
2323
+ wipNumber: 64883,
2324
+ laborLines: [
2325
+ {
2326
+ rtsCode: '0BLCVJ05',
2327
+ menuCode: 'SERLCVJ 05KS',
2328
+ serviceCode: 'PMS',
2329
+ description: 'CARRY OUT 5,000 KM SERVICE',
2330
+ },
2331
+ {
2332
+ rtsCode: 'PDRINSP',
2333
+ menuCode: ' ',
2334
+ serviceCode: 'PMS',
2335
+ description: 'SMW1',
2336
+ },
2337
+ {
2338
+ rtsCode: 'CONSU',
2339
+ menuCode: ' ',
2340
+ serviceCode: 'PMS',
2341
+ description: 'Consumables',
2342
+ },
2343
+ ],
2344
+ partLines: [
2345
+ {
2346
+ partNumber: 'T9043012031',
2347
+ qty: 1,
2348
+ menuCode: 'SERLCVJ 05KS',
2349
+ partDescription: 'GASKET',
2350
+ },
2351
+ {
2352
+ partNumber: 'T9091510010',
2353
+ qty: 1,
2354
+ menuCode: 'SERLCVJ 05KS',
2355
+ partDescription: 'FILTER, OIL',
2356
+ },
2357
+ {
2358
+ partNumber: 'T0888083719',
2359
+ qty: 7.3,
2360
+ menuCode: 'SERLCVJ 05KS',
2361
+ partDescription: 'LGMO SN 5W40 208L',
2362
+ },
2363
+ ],
2364
+ },
2365
+ {
2366
+ serviceType: 'SSC Campaign',
2367
+ serviceDate: '2024-01-31',
2368
+ mileage: 5210,
2369
+ companyName: 'SAS',
2370
+ branchName: 'SAS - Showroom | Basra',
2371
+ companyId: 1,
2372
+ branchId: 44,
2373
+ account: 'W00001',
2374
+ invoiceNumber: 54301537,
2375
+ wipNumber: 58888,
2376
+ laborLines: [
2377
+ {
2378
+ rtsCode: 'YHG14A',
2379
+ menuCode: ' ',
2380
+ serviceCode: 'SSC',
2381
+ description: 'Deliver second smart key',
2382
+ },
2383
+ ],
2384
+ partLines: [
2385
+ {
2386
+ partNumber: 'T0400299102',
2387
+ qty: 1,
2388
+ menuCode: ' ',
2389
+ partDescription: 'TRANSMITTER',
2390
+ },
2391
+ ],
2392
+ },
2393
+ {
2394
+ serviceType: 'PM SL (5K, 15K,25K...95K)',
2395
+ serviceDate: '2024-01-31',
2396
+ mileage: 5210,
2397
+ companyName: 'SAS',
2398
+ branchName: 'SAS - Showroom | Basra',
2399
+ companyId: 1,
2400
+ branchId: 44,
2401
+ account: 'S00031',
2402
+ invoiceNumber: 54158983,
2403
+ wipNumber: 58782,
2404
+ laborLines: [
2405
+ {
2406
+ rtsCode: '0BLCVJ05',
2407
+ menuCode: 'SERLCVJ 05KS3',
2408
+ serviceCode: 'PMS',
2409
+ description: 'CARRY OUT 5,000 KM SERVICE',
2410
+ },
2411
+ ],
2412
+ partLines: [
2413
+ {
2414
+ partNumber: 'T9091510010',
2415
+ qty: 1,
2416
+ menuCode: 'SERLCVJ 05KS3',
2417
+ partDescription: 'FILTER, OIL',
2418
+ },
2419
+ {
2420
+ partNumber: 'T9043012031',
2421
+ qty: 1,
2422
+ menuCode: 'SERLCVJ 05KS3',
2423
+ partDescription: 'GASKET',
2424
+ },
2425
+ {
2426
+ partNumber: 'T0888083715',
2427
+ qty: 7.3,
2428
+ menuCode: 'SERLCVJ 05KS3',
2429
+ partDescription: 'TGMO SN 5W30 208L',
2430
+ },
2431
+ ],
2432
+ },
2433
+ {
2434
+ serviceType: 'Fist Service (1000 KM)',
2435
+ serviceDate: '2023-11-28',
2436
+ mileage: 2165,
2437
+ companyName: 'SAS',
2438
+ branchName: 'SAS - Showroom | Basra',
2439
+ companyId: 1,
2440
+ branchId: 44,
2441
+ account: 'Z00244',
2442
+ invoiceNumber: 54156124,
2443
+ wipNumber: 54143,
2444
+ laborLines: [
2445
+ {
2446
+ rtsCode: '0F1110',
2447
+ menuCode: ' ',
2448
+ serviceCode: 'FSR',
2449
+ description: 'First Service(1000 KM)',
2450
+ },
2451
+ ],
2452
+ partLines: [],
2453
+ },
2454
+ ],
2455
+ ssc: [
2456
+ {
2457
+ sscCode: '23SD-024',
2458
+ description: '2nd Electircal Key',
2459
+ opCode: 'YHG14A',
2460
+ repaired: true,
2461
+ repairDate: '2024-01-31',
2462
+ parts: [
2463
+ {
2464
+ partNumber: '0400299102',
2465
+ partDescription: null,
2466
+ isAvailable: false,
2467
+ },
2468
+ {
2469
+ partNumber: '0400249102',
2470
+ partDescription: null,
2471
+ isAvailable: true,
2472
+ },
2473
+ ],
2474
+ },
2475
+ {
2476
+ sscCode: '24SD-004',
2477
+ description: 'Automatic Transmission ECU reprogramming',
2478
+ opCode: 'ZGG04A',
2479
+ repaired: true,
2480
+ repairDate: '2024-09-08',
2481
+ parts: [],
2482
+ },
2483
+ {
2484
+ sscCode: '24SD-095',
2485
+ description: 'Engine ECU Cooling Fan Reprogramming',
2486
+ opCode: 'ZGG79A',
2487
+ repaired: true,
2488
+ repairDate: '2024-11-19',
2489
+ parts: [],
2490
+ },
2491
+ ],
2492
+ vehicleVariantInfo: {
2493
+ modelCode: '53311',
2494
+ sfx: 'S3',
2495
+ modelYear: 2023,
2496
+ },
2497
+ vehicleSpecification: {
2498
+ modelDesc: 'LAND CRUISER 3.5 LC300',
2499
+ variantDesc: '3.5L Turbo AX HIGH/Plus',
2500
+ class: 'P',
2501
+ bodyType: ' ',
2502
+ engine: ' 3500 ',
2503
+ cylinders: ' 0 ',
2504
+ lightHeavy: ' ',
2505
+ doors: ' 5 ',
2506
+ fuel: 'P',
2507
+ transmission: 'Automatic',
2508
+ side: '1',
2509
+ engineType: ' ',
2510
+ tankCap: ' 0 ',
2511
+ style: 'SUV',
2512
+ fuelLiter: null,
2513
+ color: 'WHITE PEARL CS',
2514
+ trim: 'DK.GRAY/OAK/Beige',
2515
+ },
2516
+ serviceItems: [
2517
+ {
2518
+ name: '1,000 KM Free Service',
2519
+ type: 'free',
2520
+ activatedAt: '2023-01-08',
2521
+ expiresAt: '2023-04-08',
2522
+ status: 'processed',
2523
+ redeemDate: '2023-01-19',
2524
+ },
2525
+ {
2526
+ name: '5,000 KM Free Service',
2527
+ type: 'free',
2528
+ activatedAt: '2023-04-08',
2529
+ expiresAt: '2023-07-08',
2530
+ status: 'processed',
2531
+ },
2532
+ {
2533
+ name: '10,000 KM Free Service',
2534
+ type: 'free',
2535
+ activatedAt: '2023-07-08',
2536
+ expiresAt: '2023-10-08',
2537
+ status: 'processed',
2538
+ },
2539
+ {
2540
+ name: '15,000 KM Free Service',
2541
+ type: 'free',
2542
+ activatedAt: '2023-10-08',
2543
+ expiresAt: '2024-01-08',
2544
+ status: 'processed',
2545
+ },
2546
+ {
2547
+ name: '20,000 KM Free Service',
2548
+ type: 'free',
2549
+ activatedAt: '2024-01-08',
2550
+ expiresAt: '2024-03-08',
2551
+ status: 'processed',
2552
+ },
2553
+ {
2554
+ name: '25,000 KM Free Service',
2555
+ type: 'free',
2556
+ activatedAt: '2024-01-08',
2557
+ expiresAt: '2024-03-08',
2558
+ status: 'processed',
2559
+ },
2560
+ {
2561
+ name: '30,000 KM Free Service',
2562
+ type: 'free',
2563
+ activatedAt: '2024-01-08',
2564
+ expiresAt: '2024-03-08',
2565
+ status: 'processed',
2566
+ },
2567
+ {
2568
+ name: '35,000 KM Free Service',
2569
+ type: 'free',
2570
+ activatedAt: '2024-01-08',
2571
+ expiresAt: '2024-03-08',
2572
+ status: 'processed',
2573
+ },
2574
+ {
2575
+ name: '40,000 KM Free Service',
2576
+ type: 'free',
2577
+ activatedAt: '2024-01-08',
2578
+ expiresAt: '2024-03-08',
2579
+ status: 'processed',
2580
+ },
2581
+ {
2582
+ name: '45,000 KM Free Service',
2583
+ type: 'free',
2584
+ activatedAt: '2024-01-08',
2585
+ expiresAt: '2024-03-08',
2586
+ status: 'processed',
2587
+ },
2588
+ {
2589
+ name: '50,000 KM Free Service',
2590
+ type: 'free',
2591
+ activatedAt: '2024-01-08',
2592
+ expiresAt: '2024-03-08',
2593
+ status: 'processed',
2594
+ },
2595
+ {
2596
+ name: '55,000 KM Free Service',
2597
+ type: 'free',
2598
+ activatedAt: '2024-01-08',
2599
+ expiresAt: '2024-03-08',
2600
+ status: 'processed',
2601
+ },
2602
+ {
2603
+ name: '60,000 KM Free Service',
2604
+ type: 'free',
2605
+ activatedAt: '2024-01-08',
2606
+ expiresAt: '2024-03-08',
2607
+ status: 'processed',
2608
+ },
2609
+ {
2610
+ name: '65,000 KM Free Service',
2611
+ type: 'free',
2612
+ activatedAt: '2024-01-08',
2613
+ expiresAt: '2024-03-08',
2614
+ status: 'processed',
2615
+ },
2616
+ {
2617
+ name: '70,000 KM Free Service',
2618
+ type: 'free',
2619
+ activatedAt: '2024-01-08',
2620
+ expiresAt: '2024-03-08',
2621
+ status: 'processed',
2622
+ },
2623
+ {
2624
+ name: '75,000 KM Free Service',
2625
+ type: 'free',
2626
+ activatedAt: '2024-01-08',
2627
+ expiresAt: '2024-03-08',
2628
+ status: 'processed',
2629
+ },
2630
+ {
2631
+ name: '80,000 KM Free Service',
2632
+ type: 'free',
2633
+ activatedAt: '2024-01-08',
2634
+ expiresAt: '2024-03-08',
2635
+ status: 'pending',
2636
+ },
2637
+ {
2638
+ name: '85,000 KM Free Service',
2639
+ type: 'free',
2640
+ activatedAt: '2024-01-08',
2641
+ expiresAt: '2024-03-08',
2642
+ status: 'pending',
2643
+ },
2644
+ {
2645
+ name: '90,000 KM Free Service',
2646
+ type: 'free',
2647
+ activatedAt: '2024-01-08',
2648
+ expiresAt: '2024-03-08',
2649
+ status: 'pending',
2650
+ },
2651
+ {
2652
+ name: '95,000 KM Free Service',
2653
+ type: 'free',
2654
+ activatedAt: '2024-01-08',
2655
+ expiresAt: '2024-03-08',
2656
+ status: 'pending',
2657
+ },
2658
+ {
2659
+ name: '100,000 KM Free Service',
2660
+ type: 'free',
2661
+ activatedAt: '2024-01-08',
2662
+ expiresAt: '2024-03-08',
2663
+ status: 'pending',
2664
+ },
2665
+ ],
2666
+ basicModelCode: 'VJA300',
2667
+ },
2668
+ JTMHU09J6E4100543: {
2669
+ paintThickness: {
2670
+ parts: [
2671
+ {
2672
+ part: ' Front Fender',
2673
+ left: 90,
2674
+ right: 100,
2675
+ },
2676
+ {
2677
+ part: ' Front Door',
2678
+ left: 90,
2679
+ right: 90,
2680
+ },
2681
+ {
2682
+ part: ' Front Fender1',
2683
+ left: 90,
2684
+ right: 100,
2685
+ },
2686
+ {
2687
+ part: ' Front Door2',
2688
+ left: 90,
2689
+ right: 90,
2690
+ },
2691
+ ],
2692
+ imageGroups: [
2693
+ {
2694
+ name: 'zero',
2695
+ images: ['https://tiqappstorage.blob.core.windows.net/paint-app/Uploads/paintThickness/5TDLB3CH1NS095585%232022-10-06%2303-33-17/Hood_1.jpg'],
2696
+ },
2697
+ {
2698
+ name: 'second',
2699
+ images: [
2700
+ 'https://tiqappstorage.blob.core.windows.net/paint-app/Uploads/paintThickness/5TDLB3CH1NS095585%232022-10-06%2303-33-17/Left_Front_Door_1.jpg',
2701
+ 'https://tiqappstorage.blob.core.windows.net/paint-app/Uploads/paintThickness/5TDLB3CH1NS095585%232022-10-06%2303-33-17/Left_Front_Door_2.jpg',
2702
+ ],
2703
+ },
2704
+ {
2705
+ name: 'second',
2706
+ images: [
2707
+ 'https://tiqappstorage.blob.core.windows.net/paint-app/Uploads/paintThickness/5TDLB3CH1NS095585%232022-10-06%2303-33-17/Left_Front_Door_1.jpg',
2708
+ 'https://tiqappstorage.blob.core.windows.net/paint-app/Uploads/paintThickness/5TDLB3CH1NS095585%232022-10-06%2303-33-17/Left_Front_Door_2.jpg',
2709
+ ],
2710
+ },
2711
+ {
2712
+ name: 'third',
2713
+ images: [
2714
+ 'https://tiqappstorage.blob.core.windows.net/paint-app/Uploads/paintThickness/5TDLB3CH1NS095585%232022-10-06%2303-33-17/Right_Front_Fender_3.jpg',
2715
+ 'https://tiqappstorage.blob.core.windows.net/paint-app/Uploads/paintThickness/5TDLB3CH1NS095585%232022-10-06%2303-33-17/Right_Rear_Door_1.jpg',
2716
+ 'https://tiqappstorage.blob.core.windows.net/paint-app/Uploads/paintThickness/5TDLB3CH1NS095585%232022-10-06%2303-33-17/Right_Rear_Door_2.jpg',
2717
+ ],
2718
+ },
2719
+ ],
2720
+ },
2721
+ vin: 'JTMHU09J6E4100543',
2722
+ identifiers: {
2723
+ vin: 'JTMHU09J6E4100543',
2724
+ variant: null,
2725
+ katashiki: null,
2726
+ color: null,
2727
+ trim: null,
2728
+ brand: 0,
2729
+ brandIntegrationID: null,
2730
+ },
2731
+ saleInformation: null,
2732
+ isAuthorized: false,
2733
+ warranty: null,
2734
+ nextServiceDate: '2025-02-19',
2735
+ serviceHistory: [
2736
+ {
2737
+ serviceType: 'PM SL (5K, 15K,25K...95K)',
2738
+ serviceDate: '2024-11-19',
2739
+ mileage: 55005,
2740
+ companyName: 'SAS',
2741
+ branchName: 'SAS - Showroom | Basra',
2742
+ companyId: 1,
2743
+ branchId: 44,
2744
+ account: 'C00017',
2745
+ invoiceNumber: 54175877,
2746
+ wipNumber: 32299,
2747
+ laborLines: [
2748
+ {
2749
+ rtsCode: '0BLC55GR',
2750
+ menuCode: 'SERLCGR 55KS',
2751
+ serviceCode: 'PMS',
2752
+ description: 'CARRY OUT 55,000 KM SERVICE',
2753
+ },
2754
+ {
2755
+ rtsCode: 'CONSU',
2756
+ menuCode: ' ',
2757
+ serviceCode: 'PMS',
2758
+ description: 'Consumables',
2759
+ },
2760
+ ],
2761
+ partLines: [
2762
+ {
2763
+ partNumber: 'T9043012031',
2764
+ qty: 1,
2765
+ menuCode: 'SERLCGR 55KS',
2766
+ partDescription: 'GASKET',
2767
+ },
2768
+ {
2769
+ partNumber: 'T04152YZZD5',
2770
+ qty: 1,
2771
+ menuCode: 'SERLCGR 55KS',
2772
+ partDescription: 'ELEMENT KIT, OIL',
2773
+ },
2774
+ {
2775
+ partNumber: 'T0888083719',
2776
+ qty: 6.5,
2777
+ menuCode: 'SERLCGR 55KS',
2778
+ partDescription: 'LGMO SN 5W40 208L',
2779
+ },
2780
+ ],
2781
+ },
2782
+ {
2783
+ serviceType: 'Value Added Services',
2784
+ serviceDate: '2024-11-19',
2785
+ mileage: 55005,
2786
+ companyName: 'SAS',
2787
+ branchName: 'SAS - Showroom | Basra',
2788
+ companyId: 1,
2789
+ branchId: 44,
2790
+ account: 'W00016',
2791
+ invoiceNumber: 54175876,
2792
+ wipNumber: 32299,
2793
+ laborLines: [
2794
+ {
2795
+ rtsCode: 'BGT44K',
2796
+ menuCode: 'BGT44K',
2797
+ serviceCode: 'VAS',
2798
+ description: 'BG 44K Platinum Fuel System Cl',
2799
+ },
2800
+ ],
2801
+ partLines: [
2802
+ {
2803
+ partNumber: 'ZBG208M',
2804
+ qty: 1,
2805
+ menuCode: 'BGT44K',
2806
+ partDescription: '44K PLATINUM FUEL & COMBUSTION CLEANER',
2807
+ },
2808
+ ],
2809
+ },
2810
+ {
2811
+ serviceType: 'PM SL (5K, 15K,25K...95K)',
2812
+ serviceDate: '2024-06-02',
2813
+ mileage: 49380,
2814
+ companyName: 'SAS',
2815
+ branchName: 'SAS - Showroom | Basra',
2816
+ companyId: 1,
2817
+ branchId: 44,
2818
+ account: 'C00017',
2819
+ invoiceNumber: 54165039,
2820
+ wipNumber: 13946,
2821
+ laborLines: [
2822
+ {
2823
+ rtsCode: '002889Z',
2824
+ menuCode: ' ',
2825
+ serviceCode: 'PMS',
2826
+ description: 'CAR COOLER OR AIR CONDITIONER',
2827
+ },
2828
+ {
2829
+ rtsCode: '0BLC05GR',
2830
+ menuCode: 'SERLCGR 05KS',
2831
+ serviceCode: 'PMS',
2832
+ description: 'CARRY OUT 5,000 KM SERVICE',
2833
+ },
2834
+ {
2835
+ rtsCode: 'CONSU',
2836
+ menuCode: 'CONS',
2837
+ serviceCode: 'PMS',
2838
+ description: 'Consumables',
2839
+ },
2840
+ {
2841
+ rtsCode: '32299',
2842
+ menuCode: ' ',
2843
+ serviceCode: 'PMS',
2844
+ description: 'CHK FOR REAR A/C IS LESS COOLI',
2845
+ },
2846
+ ],
2847
+ partLines: [
2848
+ {
2849
+ partNumber: 'Z09300',
2850
+ qty: 900,
2851
+ menuCode: ' ',
2852
+ partDescription: null,
2853
+ },
2854
+ {
2855
+ partNumber: 'T8713952040',
2856
+ qty: 1,
2857
+ menuCode: ' ',
2858
+ partDescription: 'ELEMENT, AIR REFINER',
2859
+ },
2860
+ {
2861
+ partNumber: 'T1780138030',
2862
+ qty: 1,
2863
+ menuCode: ' ',
2864
+ partDescription: 'ELEMENT SUB-ASSY,',
2865
+ },
2866
+ {
2867
+ partNumber: 'T9043012031',
2868
+ qty: 1,
2869
+ menuCode: 'SERLCGR 05KS',
2870
+ partDescription: 'GASKET',
2871
+ },
2872
+ {
2873
+ partNumber: 'T04152YZZD5',
2874
+ qty: 1,
2875
+ menuCode: 'SERLCGR 05KS',
2876
+ partDescription: 'ELEMENT KIT, OIL',
2877
+ },
2878
+ {
2879
+ partNumber: 'T0888083719',
2880
+ qty: 6.5,
2881
+ menuCode: 'SERLCGR 05KS',
2882
+ partDescription: 'LGMO SN 5W40 208L',
2883
+ },
2884
+ ],
2885
+ },
2886
+ {
2887
+ serviceType: 'PM SL (5K, 15K,25K...95K)',
2888
+ serviceDate: '2024-02-07',
2889
+ mileage: 46366,
2890
+ companyName: 'SAS',
2891
+ branchName: 'SAS - Showroom | Basra',
2892
+ companyId: 1,
2893
+ branchId: 44,
2894
+ account: 'C00017',
2895
+ invoiceNumber: 54159267,
2896
+ wipNumber: 59455,
2897
+ laborLines: [
2898
+ {
2899
+ rtsCode: '0BLC05GR',
2900
+ menuCode: 'SERLCGR 05KS3',
2901
+ serviceCode: 'PMS',
2902
+ description: 'CARRY OUT 5,000 KM SERVICE',
2903
+ },
2904
+ {
2905
+ rtsCode: 'CONSU',
2906
+ menuCode: ' ',
2907
+ serviceCode: 'PMS',
2908
+ description: 'Consumables',
2909
+ },
2910
+ ],
2911
+ partLines: [
2912
+ {
2913
+ partNumber: 'T0888083715',
2914
+ qty: 6.5,
2915
+ menuCode: 'SERLCGR 05KS3',
2916
+ partDescription: 'TGMO SN 5W30 208L',
2917
+ },
2918
+ {
2919
+ partNumber: 'T04152YZZD5',
2920
+ qty: 1,
2921
+ menuCode: 'SERLCGR 05KS3',
2922
+ partDescription: 'ELEMENT KIT, OIL',
2923
+ },
2924
+ {
2925
+ partNumber: 'T9043012031',
2926
+ qty: 1,
2927
+ menuCode: 'SERLCGR 05KS3',
2928
+ partDescription: 'GASKET',
2929
+ },
2930
+ ],
2931
+ },
2932
+ ],
2933
+ ssc: null,
2934
+ vehicleVariantInfo: null,
2935
+ vehicleSpecification: null,
2936
+ serviceItems: [
2937
+ {
2938
+ name: '1,000 KM Free Service',
2939
+ type: 'free',
2940
+ activatedAt: '2023-01-08',
2941
+ expiresAt: '2023-04-08',
2942
+ status: 'processed',
2943
+ redeemDate: '2023-01-19',
2944
+ },
2945
+ {
2946
+ name: '5,000 KM Free Service',
2947
+ type: 'free',
2948
+ activatedAt: '2023-04-08',
2949
+ expiresAt: '2023-07-08',
2950
+ status: 'processed',
2951
+ },
2952
+ {
2953
+ name: '10,000 KM Free Service',
2954
+ type: 'free',
2955
+ activatedAt: '2023-07-08',
2956
+ expiresAt: '2023-10-08',
2957
+ status: 'processed',
2958
+ },
2959
+ {
2960
+ name: '15,000 KM Free Service',
2961
+ type: 'free',
2962
+ activatedAt: '2023-10-08',
2963
+ expiresAt: '2024-01-08',
2964
+ status: 'processed',
2965
+ },
2966
+ {
2967
+ name: '20,000 KM Free Service',
2968
+ type: 'free',
2969
+ activatedAt: '2024-01-08',
2970
+ expiresAt: '2024-03-08',
2971
+ status: 'processed',
2972
+ },
2973
+ {
2974
+ name: '25,000 KM Free Service',
2975
+ type: 'free',
2976
+ activatedAt: '2024-01-08',
2977
+ expiresAt: '2024-03-08',
2978
+ status: 'processed',
2979
+ },
2980
+ {
2981
+ name: '30,000 KM Free Service',
2982
+ type: 'free',
2983
+ activatedAt: '2024-01-08',
2984
+ expiresAt: '2024-03-08',
2985
+ status: 'processed',
2986
+ },
2987
+ {
2988
+ name: '35,000 KM Free Service',
2989
+ type: 'free',
2990
+ activatedAt: '2024-01-08',
2991
+ expiresAt: '2024-03-08',
2992
+ status: 'processed',
2993
+ },
2994
+ {
2995
+ name: '40,000 KM Free Service',
2996
+ type: 'free',
2997
+ activatedAt: '2024-01-08',
2998
+ expiresAt: '2024-03-08',
2999
+ status: 'processed',
3000
+ },
3001
+ {
3002
+ name: '45,000 KM Free Service',
3003
+ type: 'free',
3004
+ activatedAt: '2024-01-08',
3005
+ expiresAt: '2024-03-08',
3006
+ status: 'processed',
3007
+ },
3008
+ {
3009
+ name: '50,000 KM Free Service',
3010
+ type: 'free',
3011
+ activatedAt: '2024-01-08',
3012
+ expiresAt: '2024-03-08',
3013
+ status: 'processed',
3014
+ },
3015
+ {
3016
+ name: '55,000 KM Free Service',
3017
+ type: 'free',
3018
+ activatedAt: '2024-01-08',
3019
+ expiresAt: '2024-03-08',
3020
+ status: 'processed',
3021
+ },
3022
+ {
3023
+ name: '60,000 KM Free Service',
3024
+ type: 'free',
3025
+ activatedAt: '2024-01-08',
3026
+ expiresAt: '2024-03-08',
3027
+ status: 'processed',
3028
+ },
3029
+ {
3030
+ name: '65,000 KM Free Service',
3031
+ type: 'free',
3032
+ activatedAt: '2024-01-08',
3033
+ expiresAt: '2024-03-08',
3034
+ status: 'processed',
3035
+ },
3036
+ {
3037
+ name: '70,000 KM Free Service',
3038
+ type: 'free',
3039
+ activatedAt: '2024-01-08',
3040
+ expiresAt: '2024-03-08',
3041
+ status: 'processed',
3042
+ },
3043
+ {
3044
+ name: '75,000 KM Free Service',
3045
+ type: 'free',
3046
+ activatedAt: '2024-01-08',
3047
+ expiresAt: '2024-03-08',
3048
+ status: 'processed',
3049
+ },
3050
+ {
3051
+ name: '80,000 KM Free Service',
3052
+ type: 'free',
3053
+ activatedAt: '2024-01-08',
3054
+ expiresAt: '2024-03-08',
3055
+ status: 'processed',
3056
+ },
3057
+ {
3058
+ name: '85,000 KM Free Service',
3059
+ type: 'free',
3060
+ activatedAt: '2024-01-08',
3061
+ expiresAt: '2024-03-08',
3062
+ status: 'processed',
3063
+ },
3064
+ {
3065
+ name: '90,000 KM Free Service',
3066
+ type: 'free',
3067
+ activatedAt: '2024-01-08',
3068
+ expiresAt: '2024-03-08',
3069
+ status: 'processed',
3070
+ },
3071
+ {
3072
+ name: '95,000 KM Free Service',
3073
+ type: 'free',
3074
+ activatedAt: '2024-01-08',
3075
+ expiresAt: '2024-03-08',
3076
+ status: 'processed',
3077
+ },
3078
+ {
3079
+ name: '100,000 KM Free Service',
3080
+ type: 'free',
3081
+ activatedAt: '2024-01-08',
3082
+ expiresAt: '2024-03-08',
3083
+ status: 'processed',
3084
+ },
3085
+ ],
3086
+ basicModelCode: null,
3087
+ },
3088
+ JTMABBBJ9P4099200: {
3089
+ paintThickness: {
3090
+ parts: [
3091
+ {
3092
+ part: ' Front Fender',
3093
+ left: 90,
3094
+ right: 100,
3095
+ },
3096
+ {
3097
+ part: ' Front Door',
3098
+ left: 90,
3099
+ right: 90,
3100
+ },
3101
+ {
3102
+ part: ' Front Fender1',
3103
+ left: 90,
3104
+ right: 100,
3105
+ },
3106
+ {
3107
+ part: ' Front Door2',
3108
+ left: 90,
3109
+ right: 90,
3110
+ },
3111
+ ],
3112
+ imageGroups: [
3113
+ {
3114
+ name: 'zero',
3115
+ images: ['https://tiqappstorage.blob.core.windows.net/paint-app/Uploads/paintThickness/5TDLB3CH1NS095585%232022-10-06%2303-33-17/Hood_1.jpg'],
3116
+ },
3117
+ {
3118
+ name: 'second',
3119
+ images: [
3120
+ 'https://tiqappstorage.blob.core.windows.net/paint-app/Uploads/paintThickness/5TDLB3CH1NS095585%232022-10-06%2303-33-17/Left_Front_Door_1.jpg',
3121
+ 'https://tiqappstorage.blob.core.windows.net/paint-app/Uploads/paintThickness/5TDLB3CH1NS095585%232022-10-06%2303-33-17/Left_Front_Door_2.jpg',
3122
+ ],
3123
+ },
3124
+ {
3125
+ name: 'second',
3126
+ images: [
3127
+ 'https://tiqappstorage.blob.core.windows.net/paint-app/Uploads/paintThickness/5TDLB3CH1NS095585%232022-10-06%2303-33-17/Left_Front_Door_1.jpg',
3128
+ 'https://tiqappstorage.blob.core.windows.net/paint-app/Uploads/paintThickness/5TDLB3CH1NS095585%232022-10-06%2303-33-17/Left_Front_Door_2.jpg',
3129
+ ],
3130
+ },
3131
+ {
3132
+ name: 'third',
3133
+ images: [
3134
+ 'https://tiqappstorage.blob.core.windows.net/paint-app/Uploads/paintThickness/5TDLB3CH1NS095585%232022-10-06%2303-33-17/Right_Front_Fender_3.jpg',
3135
+ 'https://tiqappstorage.blob.core.windows.net/paint-app/Uploads/paintThickness/5TDLB3CH1NS095585%232022-10-06%2303-33-17/Right_Rear_Door_1.jpg',
3136
+ 'https://tiqappstorage.blob.core.windows.net/paint-app/Uploads/paintThickness/5TDLB3CH1NS095585%232022-10-06%2303-33-17/Right_Rear_Door_2.jpg',
3137
+ ],
3138
+ },
3139
+ ],
3140
+ },
3141
+ vin: 'JTMABBBJ9P4099200',
3142
+ identifiers: {
3143
+ vin: 'JTMABBBJ9P4099243',
3144
+ variant: '53311S3202301',
3145
+ katashiki: 'VJA300L-GNUAZV',
3146
+ color: '070',
3147
+ trim: '40',
3148
+ brand: 0,
3149
+ brandIntegrationID: 'TYT',
3150
+ },
3151
+ saleInformation: {
3152
+ dealerIntegrationID: '1',
3153
+ dealerName: 'SAS',
3154
+ branchIntegrationID: '44',
3155
+ branchName: 'SAS - Showroom | Basra',
3156
+ customerAccount: 'R01954',
3157
+ customerID: '97120',
3158
+ invoiceDate: '2023-09-18',
3159
+ invoiceNumber: 11160168,
3160
+ broker: {
3161
+ brokerId: 539,
3162
+ brokerName: 'Al-Burchman',
3163
+ customerID: 17782,
3164
+ invoiceNumber: 71,
3165
+ invoiceDate: '2023-11-23',
3166
+ },
3167
+ },
3168
+ isAuthorized: false,
3169
+ warranty: {
3170
+ hasActiveWarranty: true,
3171
+ warrantyStartDate: '2023-11-23',
3172
+ warrantyEndDate: '2026-11-23',
3173
+ hasExtendedWarranty: false,
3174
+ extendedWarrantyStartDate: null,
3175
+ extendedWarrantyEndDate: null,
3176
+ },
3177
+ nextServiceDate: '2025-02-19',
3178
+ serviceHistory: [
3179
+ {
3180
+ serviceType: 'SSC Campaign',
3181
+ serviceDate: '2024-11-19',
3182
+ mileage: 12112,
3183
+ companyName: 'SAS',
3184
+ branchName: 'SAS - Showroom | Basra',
3185
+ companyId: 1,
3186
+ branchId: 44,
3187
+ account: 'W00001',
3188
+ invoiceNumber: 54302844,
3189
+ wipNumber: 32325,
3190
+ laborLines: [
3191
+ {
3192
+ rtsCode: 'ZGG79A',
3193
+ menuCode: ' ',
3194
+ serviceCode: 'SSC',
3195
+ description: 'Reprograming',
3196
+ },
3197
+ ],
3198
+ partLines: [],
3199
+ },
3200
+ {
3201
+ serviceType: 'PM SL (5K, 15K,25K...95K)',
3202
+ serviceDate: '2024-11-19',
3203
+ mileage: 12112,
3204
+ companyName: 'SAS',
3205
+ branchName: 'SAS - Showroom | Basra',
3206
+ companyId: 1,
3207
+ branchId: 44,
3208
+ account: 'C00017',
3209
+ invoiceNumber: 54175880,
3210
+ wipNumber: 31762,
3211
+ laborLines: [
3212
+ {
3213
+ rtsCode: '0BLCVJ05',
3214
+ menuCode: 'SERLCVJ 05KS3',
3215
+ serviceCode: 'PMS',
3216
+ description: 'CARRY OUT 5,000 KM SERVICE',
3217
+ },
3218
+ {
3219
+ rtsCode: 'CONSU',
3220
+ menuCode: 'CONS',
3221
+ serviceCode: 'PMS',
3222
+ description: 'Consumables',
3223
+ },
3224
+ ],
3225
+ partLines: [
3226
+ {
3227
+ partNumber: 'T0888083715',
3228
+ qty: 7.3,
3229
+ menuCode: 'SERLCVJ 05KS3',
3230
+ partDescription: 'TGMO SN 5W30 208L',
3231
+ },
3232
+ {
3233
+ partNumber: 'T9043012031',
3234
+ qty: 1,
3235
+ menuCode: 'SERLCVJ 05KS3',
3236
+ partDescription: 'GASKET',
3237
+ },
3238
+ {
3239
+ partNumber: 'T9091510010',
3240
+ qty: 1,
3241
+ menuCode: 'SERLCVJ 05KS3',
3242
+ partDescription: 'FILTER, OIL',
3243
+ },
3244
+ ],
3245
+ },
3246
+ {
3247
+ serviceType: 'SSC Campaign',
3248
+ serviceDate: '2024-09-08',
3249
+ mileage: 9947,
3250
+ companyName: 'SAS',
3251
+ branchName: 'SAS - Showroom | Basra',
3252
+ companyId: 1,
3253
+ branchId: 44,
3254
+ account: 'W00001',
3255
+ invoiceNumber: 54302319,
3256
+ wipNumber: 23978,
3257
+ laborLines: [
3258
+ {
3259
+ rtsCode: 'ZGG04A',
3260
+ menuCode: ' ',
3261
+ serviceCode: 'SSC',
3262
+ description: 'Reprograming for transmission',
3263
+ },
3264
+ ],
3265
+ partLines: [],
3266
+ },
3267
+ {
3268
+ serviceType: 'PM L (10K,30K,50K & 90K)',
3269
+ serviceDate: '2024-09-08',
3270
+ mileage: 9947,
3271
+ companyName: 'SAS',
3272
+ branchName: 'SAS - Showroom | Basra',
3273
+ companyId: 1,
3274
+ branchId: 44,
3275
+ account: 'C00017',
3276
+ invoiceNumber: 54170870,
3277
+ wipNumber: 23814,
3278
+ laborLines: [
3279
+ {
3280
+ rtsCode: 'CONSU',
3281
+ menuCode: 'CONS',
3282
+ serviceCode: 'PML',
3283
+ description: 'Consumables',
3284
+ },
3285
+ {
3286
+ rtsCode: 'BGT44K',
3287
+ menuCode: 'BGT44K',
3288
+ serviceCode: 'PML',
3289
+ description: 'BG 44K Platinum Fuel System Cl',
3290
+ },
3291
+ {
3292
+ rtsCode: '0BLCVJ05',
3293
+ menuCode: 'SERLCVJ 05KS3',
3294
+ serviceCode: 'PML',
3295
+ description: 'CARRY OUT 5,000 KM SERVICE',
3296
+ },
3297
+ ],
3298
+ partLines: [
3299
+ {
3300
+ partNumber: 'ZBG208M3',
3301
+ qty: 1,
3302
+ menuCode: 'BGT44K',
3303
+ partDescription: '44K PLATINUM FUEL & COMBUSTION CLEANER',
3304
+ },
3305
+ {
3306
+ partNumber: 'T9043012031',
3307
+ qty: 1,
3308
+ menuCode: 'SERLCVJ 05KS3',
3309
+ partDescription: 'GASKET',
3310
+ },
3311
+ {
3312
+ partNumber: 'T0888083715',
3313
+ qty: 7.3,
3314
+ menuCode: 'SERLCVJ 05KS3',
3315
+ partDescription: 'TGMO SN 5W30 208L',
3316
+ },
3317
+ {
3318
+ partNumber: 'T9091510010',
3319
+ qty: 1,
3320
+ menuCode: 'SERLCVJ 05KS3',
3321
+ partDescription: 'FILTER, OIL',
3322
+ },
3323
+ ],
3324
+ },
3325
+ {
3326
+ serviceType: 'PM SL (5K, 15K,25K...95K)',
3327
+ serviceDate: '2024-04-16',
3328
+ mileage: 7520,
3329
+ companyName: 'SAS',
3330
+ branchName: 'SAS - Showroom | Basra',
3331
+ companyId: 1,
3332
+ branchId: 44,
3333
+ account: 'C00017',
3334
+ invoiceNumber: 54162502,
3335
+ wipNumber: 64883,
3336
+ laborLines: [
3337
+ {
3338
+ rtsCode: '0BLCVJ05',
3339
+ menuCode: 'SERLCVJ 05KS',
3340
+ serviceCode: 'PMS',
3341
+ description: 'CARRY OUT 5,000 KM SERVICE',
3342
+ },
3343
+ {
3344
+ rtsCode: 'PDRINSP',
3345
+ menuCode: ' ',
3346
+ serviceCode: 'PMS',
3347
+ description: 'SMW1',
3348
+ },
3349
+ {
3350
+ rtsCode: 'CONSU',
3351
+ menuCode: ' ',
3352
+ serviceCode: 'PMS',
3353
+ description: 'Consumables',
3354
+ },
3355
+ ],
3356
+ partLines: [
3357
+ {
3358
+ partNumber: 'T9043012031',
3359
+ qty: 1,
3360
+ menuCode: 'SERLCVJ 05KS',
3361
+ partDescription: 'GASKET',
3362
+ },
3363
+ {
3364
+ partNumber: 'T9091510010',
3365
+ qty: 1,
3366
+ menuCode: 'SERLCVJ 05KS',
3367
+ partDescription: 'FILTER, OIL',
3368
+ },
3369
+ {
3370
+ partNumber: 'T0888083719',
3371
+ qty: 7.3,
3372
+ menuCode: 'SERLCVJ 05KS',
3373
+ partDescription: 'LGMO SN 5W40 208L',
3374
+ },
3375
+ ],
3376
+ },
3377
+ {
3378
+ serviceType: 'SSC Campaign',
3379
+ serviceDate: '2024-01-31',
3380
+ mileage: 5210,
3381
+ companyName: 'SAS',
3382
+ branchName: 'SAS - Showroom | Basra',
3383
+ companyId: 1,
3384
+ branchId: 44,
3385
+ account: 'W00001',
3386
+ invoiceNumber: 54301537,
3387
+ wipNumber: 58888,
3388
+ laborLines: [
3389
+ {
3390
+ rtsCode: 'YHG14A',
3391
+ menuCode: ' ',
3392
+ serviceCode: 'SSC',
3393
+ description: 'Deliver second smart key',
3394
+ },
3395
+ ],
3396
+ partLines: [
3397
+ {
3398
+ partNumber: 'T0400299102',
3399
+ qty: 1,
3400
+ menuCode: ' ',
3401
+ partDescription: 'TRANSMITTER',
3402
+ },
3403
+ ],
3404
+ },
3405
+ {
3406
+ serviceType: 'PM SL (5K, 15K,25K...95K)',
3407
+ serviceDate: '2024-01-31',
3408
+ mileage: 5210,
3409
+ companyName: 'SAS',
3410
+ branchName: 'SAS - Showroom | Basra',
3411
+ companyId: 1,
3412
+ branchId: 44,
3413
+ account: 'S00031',
3414
+ invoiceNumber: 54158983,
3415
+ wipNumber: 58782,
3416
+ laborLines: [
3417
+ {
3418
+ rtsCode: '0BLCVJ05',
3419
+ menuCode: 'SERLCVJ 05KS3',
3420
+ serviceCode: 'PMS',
3421
+ description: 'CARRY OUT 5,000 KM SERVICE',
3422
+ },
3423
+ ],
3424
+ partLines: [
3425
+ {
3426
+ partNumber: 'T9091510010',
3427
+ qty: 1,
3428
+ menuCode: 'SERLCVJ 05KS3',
3429
+ partDescription: 'FILTER, OIL',
3430
+ },
3431
+ {
3432
+ partNumber: 'T9043012031',
3433
+ qty: 1,
3434
+ menuCode: 'SERLCVJ 05KS3',
3435
+ partDescription: 'GASKET',
3436
+ },
3437
+ {
3438
+ partNumber: 'T0888083715',
3439
+ qty: 7.3,
3440
+ menuCode: 'SERLCVJ 05KS3',
3441
+ partDescription: 'TGMO SN 5W30 208L',
3442
+ },
3443
+ ],
3444
+ },
3445
+ {
3446
+ serviceType: 'Fist Service (1000 KM)',
3447
+ serviceDate: '2023-11-28',
3448
+ mileage: 2165,
3449
+ companyName: 'SAS',
3450
+ branchName: 'SAS - Showroom | Basra',
3451
+ companyId: 1,
3452
+ branchId: 44,
3453
+ account: 'Z00244',
3454
+ invoiceNumber: 54156124,
3455
+ wipNumber: 54143,
3456
+ laborLines: [
3457
+ {
3458
+ rtsCode: '0F1110',
3459
+ menuCode: ' ',
3460
+ serviceCode: 'FSR',
3461
+ description: 'First Service(1000 KM)',
3462
+ },
3463
+ ],
3464
+ partLines: [],
3465
+ },
3466
+ ],
3467
+ ssc: [
3468
+ {
3469
+ sscCode: '23SD-024',
3470
+ description: '2nd Electircal Key',
3471
+ opCode: 'YHG14A',
3472
+ repaired: true,
3473
+ repairDate: '2024-01-31',
3474
+ parts: [
3475
+ {
3476
+ partNumber: '0400299102',
3477
+ partDescription: null,
3478
+ isAvailable: false,
3479
+ },
3480
+ ],
3481
+ },
3482
+ {
3483
+ sscCode: '24SD-004',
3484
+ description: 'Automatic Transmission ECU reprogramming',
3485
+ opCode: 'ZGG04A',
3486
+ repaired: true,
3487
+ repairDate: '2024-09-08',
3488
+ parts: [],
3489
+ },
3490
+ {
3491
+ sscCode: '24SD-095',
3492
+ description: 'Engine ECU Cooling Fan Reprogramming',
3493
+ opCode: 'ZGG79A',
3494
+ repaired: true,
3495
+ repairDate: '2024-11-19',
3496
+ parts: [],
3497
+ },
3498
+ ],
3499
+ vehicleVariantInfo: {
3500
+ modelCode: '53311',
3501
+ sfx: 'S3',
3502
+ modelYear: 2023,
3503
+ },
3504
+ vehicleSpecification: {
3505
+ modelDesc: 'LAND CRUISER 3.5 LC300',
3506
+ variantDesc: '3.5L Turbo AX HIGH/Plus',
3507
+ class: 'P',
3508
+ bodyType: ' ',
3509
+ engine: ' 3500 ',
3510
+ cylinders: ' 0 ',
3511
+ lightHeavy: ' ',
3512
+ doors: ' 5 ',
3513
+ fuel: 'P',
3514
+ transmission: 'Automatic',
3515
+ side: '1',
3516
+ engineType: ' ',
3517
+ tankCap: ' 0 ',
3518
+ style: 'SUV',
3519
+ fuelLiter: null,
3520
+ color: 'WHITE PEARL CS',
3521
+ trim: 'DK.GRAY/OAK/Beige',
3522
+ },
3523
+ serviceItems: [
3524
+ {
3525
+ name: '5,000 KM Free Service Package',
3526
+ type: 'free',
3527
+ activatedAt: '2024-01-01',
3528
+ expiresAt: '2024-05-01',
3529
+ status: 'processed',
3530
+ redeemDate: '2024-04-20',
3531
+ redeemingDealer: 'SAS - Erbil',
3532
+ invoiceNumber: '10384455',
3533
+ wipNumber: '48914',
3534
+ menuCode: 'NABDSERCMAS 05KS3',
3535
+ },
3536
+ {
3537
+ name: '10,000 KM Free Service Package',
3538
+ type: 'free',
3539
+ activatedAt: '2024-05-01',
3540
+ expiresAt: '2024-08-01',
3541
+ status: 'processed',
3542
+ redeemDate: '2024-07-29',
3543
+ redeemingDealer: 'Cihan - Erbil Makhmoor',
3544
+ invoiceNumber: '492824',
3545
+ wipNumber: '198274',
3546
+ menuCode: 'NABDSERCMAS 10KS3',
3547
+ },
3548
+ {
3549
+ name: '15,000 KM Free Service Package',
3550
+ type: 'free',
3551
+ activatedAt: '2024-08-01',
3552
+ expiresAt: '2024-11-01',
3553
+ status: 'pending',
3554
+ menuCode: 'NABDSERCMAS 15KS3',
3555
+ },
3556
+ {
3557
+ name: '20,000 KM Free Service Package',
3558
+ type: 'free',
3559
+ activatedAt: '2024-11-01',
3560
+ expiresAt: '2025-02-01',
3561
+ status: 'pending',
3562
+ menuCode: 'NABDSERCMAS 20KS3',
3563
+ },
3564
+ {
3565
+ name: '25,000 KM Free Service Package',
3566
+ type: 'free',
3567
+ activatedAt: '2025-02-01',
3568
+ expiresAt: '2025-05-01',
3569
+ status: 'pending',
3570
+ menuCode: 'NABDSERCMAS 25KS3',
3571
+ },
3572
+ {
3573
+ name: '30,000 KM Free Service Package',
3574
+ type: 'free',
3575
+ activatedAt: '2025-05-01',
3576
+ expiresAt: '2025-08-01',
3577
+ status: 'pending',
3578
+ menuCode: 'NABDSERCMAS 30KS3',
3579
+ },
3580
+ {
3581
+ name: '35,000 KM Free Service Package',
3582
+ type: 'free',
3583
+ activatedAt: '2025-08-01',
3584
+ expiresAt: '2025-11-01',
3585
+ status: 'pending',
3586
+ menuCode: 'NABDSERCMAS 35KS3',
3587
+ },
3588
+ {
3589
+ name: '40,000 KM Free Service Package',
3590
+ type: 'free',
3591
+ activatedAt: '2025-11-01',
3592
+ expiresAt: '2026-02-01',
3593
+ status: 'pending',
3594
+ menuCode: 'NABDSERCMAS 40KS3 AT',
3595
+ },
3596
+ ],
3597
+ basicModelCode: 'VJA300',
3598
+ },
3599
+ JTMABBBJ9P4099201: {
3600
+ accessories: [
3601
+ {
3602
+ partNumber: 'yakam',
3603
+ description: 'dwam',
3604
+ image: 'https://static.printler.com/cache/a/1/6/6/6/e/a1666e9c70da357a080e59aa1058f9c1aa84f847.jpg',
3605
+ },
3606
+ {
3607
+ partNumber: 'test',
3608
+ description: 'lorem',
3609
+ image: 'https://uploads.dailydot.com/2018/10/olli-the-polite-cat.jpg?q=65&auto=format&w=1200&ar=2:1&fit=crop',
3610
+ },
3611
+ {
3612
+ partNumber: 'yakam2',
3613
+ description: 'dwam',
3614
+ image: 'https://static.printler.com/cache/a/1/6/6/6/e/a1666e9c70da357a080e59aa1058f9c1aa84f847.jpg',
3615
+ },
3616
+ {
3617
+ partNumber: 'test1',
3618
+ description: 'lorem',
3619
+ image: 'https://uploads.dailydot.com/2018/10/olli-the-polite-cat.jpg?q=65&auto=format&w=1200&ar=2:1&fit=crop',
3620
+ },
3621
+ {
3622
+ partNumber: 'yakam231',
3623
+ description: 'dwam',
3624
+ image: 'https://static.printler.com/cache/a/1/6/6/6/e/a1666e9c70da357a080e59aa1058f9c1aa84f847.jpg',
3625
+ },
3626
+ {
3627
+ partNumber: 'test1321',
3628
+ description: 'lorem',
3629
+ image: 'https://uploads.dailydot.com/2018/10/olli-the-polite-cat.jpg?q=65&auto=format&w=1200&ar=2:1&fit=crop',
3630
+ },
3631
+ ],
3632
+ paintThickness: {
3633
+ parts: [
3634
+ {
3635
+ part: ' Front Fender',
3636
+ left: 90,
3637
+ right: 100,
3638
+ },
3639
+ {
3640
+ part: ' Front Door',
3641
+ left: 90,
3642
+ right: 90,
3643
+ },
3644
+ ],
3645
+ imageGroups: [
3646
+ {
3647
+ name: 'zero',
3648
+ images: ['https://tiqappstorage.blob.core.windows.net/paint-app/Uploads/paintThickness/5TDLB3CH1NS095585%232022-10-06%2303-33-17/Hood_1.jpg'],
3649
+ },
3650
+ {
3651
+ name: 'second',
3652
+ images: [
3653
+ 'https://tiqappstorage.blob.core.windows.net/paint-app/Uploads/paintThickness/5TDLB3CH1NS095585%232022-10-06%2303-33-17/Left_Front_Door_1.jpg',
3654
+ 'https://tiqappstorage.blob.core.windows.net/paint-app/Uploads/paintThickness/5TDLB3CH1NS095585%232022-10-06%2303-33-17/Left_Front_Door_2.jpg',
3655
+ ],
3656
+ },
3657
+ {
3658
+ name: 'second',
3659
+ images: [
3660
+ 'https://tiqappstorage.blob.core.windows.net/paint-app/Uploads/paintThickness/5TDLB3CH1NS095585%232022-10-06%2303-33-17/Left_Front_Door_1.jpg',
3661
+ 'https://tiqappstorage.blob.core.windows.net/paint-app/Uploads/paintThickness/5TDLB3CH1NS095585%232022-10-06%2303-33-17/Left_Front_Door_2.jpg',
3662
+ ],
3663
+ },
3664
+ {
3665
+ name: 'third',
3666
+ images: [
3667
+ 'https://tiqappstorage.blob.core.windows.net/paint-app/Uploads/paintThickness/5TDLB3CH1NS095585%232022-10-06%2303-33-17/Right_Front_Fender_3.jpg',
3668
+ 'https://tiqappstorage.blob.core.windows.net/paint-app/Uploads/paintThickness/5TDLB3CH1NS095585%232022-10-06%2303-33-17/Right_Rear_Door_1.jpg',
3669
+ 'https://tiqappstorage.blob.core.windows.net/paint-app/Uploads/paintThickness/5TDLB3CH1NS095585%232022-10-06%2303-33-17/Right_Rear_Door_2.jpg',
3670
+ ],
3671
+ },
3672
+ ],
3673
+ },
3674
+ vin: 'JTMABBBJ9P4099201',
3675
+ identifiers: {
3676
+ vin: 'JTMABBBJ9P4099201',
3677
+ variant: '53311S3202301',
3678
+ katashiki: 'VJA300L-GNUAZV',
3679
+ color: '070',
3680
+ trim: '40',
3681
+ brand: 0,
3682
+ brandIntegrationID: 'TYT',
3683
+ },
3684
+ saleInformation: {
3685
+ dealerIntegrationID: '1',
3686
+ dealerName: 'SAS',
3687
+ branchIntegrationID: '44',
3688
+ branchName: 'SAS - Showroom | Basra',
3689
+ customerAccount: 'R01954',
3690
+ customerID: '97120',
3691
+ invoiceDate: '2023-09-18',
3692
+ invoiceNumber: 11160168,
3693
+ broker: {
3694
+ brokerId: 539,
3695
+ brokerName: 'Al-Burchman',
3696
+ customerID: 17782,
3697
+ invoiceNumber: 71,
3698
+ invoiceDate: null,
3699
+ },
3700
+ },
3701
+ isAuthorized: false,
3702
+ warranty: {
3703
+ hasActiveWarranty: true,
3704
+ warrantyStartDate: '2023-11-23',
3705
+ warrantyEndDate: '2026-11-23',
3706
+ hasExtendedWarranty: false,
3707
+ extendedWarrantyStartDate: null,
3708
+ extendedWarrantyEndDate: null,
3709
+ },
3710
+ nextServiceDate: '2025-02-19',
3711
+ serviceHistory: [
3712
+ {
3713
+ serviceType: 'SSC Campaign',
3714
+ serviceDate: '2024-11-19',
3715
+ mileage: 12112,
3716
+ companyName: 'SAS',
3717
+ branchName: 'SAS - Showroom | Basra',
3718
+ companyId: 1,
3719
+ branchId: 44,
3720
+ account: 'W00001',
3721
+ invoiceNumber: 54302844,
3722
+ wipNumber: 32325,
3723
+ laborLines: [
3724
+ {
3725
+ rtsCode: 'ZGG79A',
3726
+ menuCode: ' ',
3727
+ serviceCode: 'SSC',
3728
+ description: 'Reprograming',
3729
+ },
3730
+ ],
3731
+ partLines: [],
3732
+ },
3733
+ {
3734
+ serviceType: 'PM SL (5K, 15K,25K...95K)',
3735
+ serviceDate: '2024-11-19',
3736
+ mileage: 12112,
3737
+ companyName: 'SAS',
3738
+ branchName: 'SAS - Showroom | Basra',
3739
+ companyId: 1,
3740
+ branchId: 44,
3741
+ account: 'C00017',
3742
+ invoiceNumber: 54175880,
3743
+ wipNumber: 31762,
3744
+ laborLines: [
3745
+ {
3746
+ rtsCode: '0BLCVJ05',
3747
+ menuCode: 'SERLCVJ 05KS3',
3748
+ serviceCode: 'PMS',
3749
+ description: 'CARRY OUT 5,000 KM SERVICE',
3750
+ },
3751
+ {
3752
+ rtsCode: 'CONSU',
3753
+ menuCode: 'CONS',
3754
+ serviceCode: 'PMS',
3755
+ description: 'Consumables',
3756
+ },
3757
+ ],
3758
+ partLines: [
3759
+ {
3760
+ partNumber: 'T0888083715',
3761
+ qty: 7.3,
3762
+ menuCode: 'SERLCVJ 05KS3',
3763
+ partDescription: 'TGMO SN 5W30 208L',
3764
+ },
3765
+ {
3766
+ partNumber: 'T9043012031',
3767
+ qty: 1,
3768
+ menuCode: 'SERLCVJ 05KS3',
3769
+ partDescription: 'GASKET',
3770
+ },
3771
+ {
3772
+ partNumber: 'T9091510010',
3773
+ qty: 1,
3774
+ menuCode: 'SERLCVJ 05KS3',
3775
+ partDescription: 'FILTER, OIL',
3776
+ },
3777
+ ],
3778
+ },
3779
+ {
3780
+ serviceType: 'SSC Campaign',
3781
+ serviceDate: '2024-09-08',
3782
+ mileage: 9947,
3783
+ companyName: 'SAS',
3784
+ branchName: 'SAS - Showroom | Basra',
3785
+ companyId: 1,
3786
+ branchId: 44,
3787
+ account: 'W00001',
3788
+ invoiceNumber: 54302319,
3789
+ wipNumber: 23978,
3790
+ laborLines: [
3791
+ {
3792
+ rtsCode: 'ZGG04A',
3793
+ menuCode: ' ',
3794
+ serviceCode: 'SSC',
3795
+ description: 'Reprograming for transmission',
3796
+ },
3797
+ ],
3798
+ partLines: [],
3799
+ },
3800
+ {
3801
+ serviceType: 'PM L (10K,30K,50K & 90K)',
3802
+ serviceDate: '2024-09-08',
3803
+ mileage: 9947,
3804
+ companyName: 'SAS',
3805
+ branchName: 'SAS - Showroom | Basra',
3806
+ companyId: 1,
3807
+ branchId: 44,
3808
+ account: 'C00017',
3809
+ invoiceNumber: 54170870,
3810
+ wipNumber: 23814,
3811
+ laborLines: [
3812
+ {
3813
+ rtsCode: 'CONSU',
3814
+ menuCode: 'CONS',
3815
+ serviceCode: 'PML',
3816
+ description: 'Consumables',
3817
+ },
3818
+ {
3819
+ rtsCode: 'BGT44K',
3820
+ menuCode: 'BGT44K',
3821
+ serviceCode: 'PML',
3822
+ description: 'BG 44K Platinum Fuel System Cl',
3823
+ },
3824
+ {
3825
+ rtsCode: '0BLCVJ05',
3826
+ menuCode: 'SERLCVJ 05KS3',
3827
+ serviceCode: 'PML',
3828
+ description: 'CARRY OUT 5,000 KM SERVICE',
3829
+ },
3830
+ ],
3831
+ partLines: [
3832
+ {
3833
+ partNumber: 'ZBG208M3',
3834
+ qty: 1,
3835
+ menuCode: 'BGT44K',
3836
+ partDescription: '44K PLATINUM FUEL & COMBUSTION CLEANER',
3837
+ },
3838
+ {
3839
+ partNumber: 'T9043012031',
3840
+ qty: 1,
3841
+ menuCode: 'SERLCVJ 05KS3',
3842
+ partDescription: 'GASKET',
3843
+ },
3844
+ {
3845
+ partNumber: 'T0888083715',
3846
+ qty: 7.3,
3847
+ menuCode: 'SERLCVJ 05KS3',
3848
+ partDescription: 'TGMO SN 5W30 208L',
3849
+ },
3850
+ {
3851
+ partNumber: 'T9091510010',
3852
+ qty: 1,
3853
+ menuCode: 'SERLCVJ 05KS3',
3854
+ partDescription: 'FILTER, OIL',
3855
+ },
3856
+ ],
3857
+ },
3858
+ {
3859
+ serviceType: 'PM SL (5K, 15K,25K...95K)',
3860
+ serviceDate: '2024-04-16',
3861
+ mileage: 7520,
3862
+ companyName: 'SAS',
3863
+ branchName: 'SAS - Showroom | Basra',
3864
+ companyId: 1,
3865
+ branchId: 44,
3866
+ account: 'C00017',
3867
+ invoiceNumber: 54162502,
3868
+ wipNumber: 64883,
3869
+ laborLines: [
3870
+ {
3871
+ rtsCode: '0BLCVJ05',
3872
+ menuCode: 'SERLCVJ 05KS',
3873
+ serviceCode: 'PMS',
3874
+ description: 'CARRY OUT 5,000 KM SERVICE',
3875
+ },
3876
+ {
3877
+ rtsCode: 'PDRINSP',
3878
+ menuCode: ' ',
3879
+ serviceCode: 'PMS',
3880
+ description: 'SMW1',
3881
+ },
3882
+ {
3883
+ rtsCode: 'CONSU',
3884
+ menuCode: ' ',
3885
+ serviceCode: 'PMS',
3886
+ description: 'Consumables',
3887
+ },
3888
+ ],
3889
+ partLines: [
3890
+ {
3891
+ partNumber: 'T9043012031',
3892
+ qty: 1,
3893
+ menuCode: 'SERLCVJ 05KS',
3894
+ partDescription: 'GASKET',
3895
+ },
3896
+ {
3897
+ partNumber: 'T9091510010',
3898
+ qty: 1,
3899
+ menuCode: 'SERLCVJ 05KS',
3900
+ partDescription: 'FILTER, OIL',
3901
+ },
3902
+ {
3903
+ partNumber: 'T0888083719',
3904
+ qty: 7.3,
3905
+ menuCode: 'SERLCVJ 05KS',
3906
+ partDescription: 'LGMO SN 5W40 208L',
3907
+ },
3908
+ ],
3909
+ },
3910
+ {
3911
+ serviceType: 'SSC Campaign',
3912
+ serviceDate: '2024-01-31',
3913
+ mileage: 5210,
3914
+ companyName: 'SAS',
3915
+ branchName: 'SAS - Showroom | Basra',
3916
+ companyId: 1,
3917
+ branchId: 44,
3918
+ account: 'W00001',
3919
+ invoiceNumber: 54301537,
3920
+ wipNumber: 58888,
3921
+ laborLines: [
3922
+ {
3923
+ rtsCode: 'YHG14A',
3924
+ menuCode: ' ',
3925
+ serviceCode: 'SSC',
3926
+ description: 'Deliver second smart key',
3927
+ },
3928
+ ],
3929
+ partLines: [
3930
+ {
3931
+ partNumber: 'T0400299102',
3932
+ qty: 1,
3933
+ menuCode: ' ',
3934
+ partDescription: 'TRANSMITTER',
3935
+ },
3936
+ ],
3937
+ },
3938
+ {
3939
+ serviceType: 'PM SL (5K, 15K,25K...95K)',
3940
+ serviceDate: '2024-01-31',
3941
+ mileage: 5210,
3942
+ companyName: 'SAS',
3943
+ branchName: 'SAS - Showroom | Basra',
3944
+ companyId: 1,
3945
+ branchId: 44,
3946
+ account: 'S00031',
3947
+ invoiceNumber: 54158983,
3948
+ wipNumber: 58782,
3949
+ laborLines: [
3950
+ {
3951
+ rtsCode: '0BLCVJ05',
3952
+ menuCode: 'SERLCVJ 05KS3',
3953
+ serviceCode: 'PMS',
3954
+ description: 'CARRY OUT 5,000 KM SERVICE',
3955
+ },
3956
+ ],
3957
+ partLines: [
3958
+ {
3959
+ partNumber: 'T9091510010',
3960
+ qty: 1,
3961
+ menuCode: 'SERLCVJ 05KS3',
3962
+ partDescription: 'FILTER, OIL',
3963
+ },
3964
+ {
3965
+ partNumber: 'T9043012031',
3966
+ qty: 1,
3967
+ menuCode: 'SERLCVJ 05KS3',
3968
+ partDescription: 'GASKET',
3969
+ },
3970
+ {
3971
+ partNumber: 'T0888083715',
3972
+ qty: 7.3,
3973
+ menuCode: 'SERLCVJ 05KS3',
3974
+ partDescription: 'TGMO SN 5W30 208L',
3975
+ },
3976
+ ],
3977
+ },
3978
+ {
3979
+ serviceType: 'Fist Service (1000 KM)',
3980
+ serviceDate: '2023-11-28',
3981
+ mileage: 2165,
3982
+ companyName: 'SAS',
3983
+ branchName: 'SAS - Showroom | Basra',
3984
+ companyId: 1,
3985
+ branchId: 44,
3986
+ account: 'Z00244',
3987
+ invoiceNumber: 54156124,
3988
+ wipNumber: 54143,
3989
+ laborLines: [
3990
+ {
3991
+ rtsCode: '0F1110',
3992
+ menuCode: ' ',
3993
+ serviceCode: 'FSR',
3994
+ description: 'First Service(1000 KM)',
3995
+ },
3996
+ ],
3997
+ partLines: [],
3998
+ },
3999
+ ],
4000
+ ssc: [
4001
+ {
4002
+ sscCode: '23SD-024',
4003
+ description: '2nd Electircal Key',
4004
+ opCode: 'YHG14A',
4005
+ repaired: true,
4006
+ repairDate: '2024-01-31',
4007
+ parts: [
4008
+ {
4009
+ partNumber: '0400299102',
4010
+ partDescription: null,
4011
+ isAvailable: false,
4012
+ },
4013
+ ],
4014
+ },
4015
+ {
4016
+ sscCode: '24SD-004',
4017
+ description: 'Automatic Transmission ECU reprogramming',
4018
+ opCode: 'ZGG04A',
4019
+ repaired: true,
4020
+ repairDate: '2024-09-08',
4021
+ parts: [],
4022
+ },
4023
+ {
4024
+ sscCode: '24SD-095',
4025
+ description: 'Engine ECU Cooling Fan Reprogramming',
4026
+ opCode: 'ZGG79A',
4027
+ repaired: true,
4028
+ repairDate: '2024-11-19',
4029
+ parts: [],
4030
+ },
4031
+ ],
4032
+ vehicleVariantInfo: {
4033
+ modelCode: '53311',
4034
+ sfx: 'S3',
4035
+ modelYear: 2023,
4036
+ },
4037
+ vehicleSpecification: {
4038
+ modelDesc: 'LAND CRUISER 3.5 LC300',
4039
+ variantDesc: '3.5L Turbo AX HIGH/Plus',
4040
+ class: 'P',
4041
+ bodyType: ' ',
4042
+ engine: ' 3500 ',
4043
+ cylinders: ' 0 ',
4044
+ lightHeavy: ' ',
4045
+ doors: ' 5 ',
4046
+ fuel: 'P',
4047
+ transmission: 'Automatic',
4048
+ side: '1',
4049
+ engineType: ' ',
4050
+ tankCap: ' 0 ',
4051
+ style: 'SUV',
4052
+ fuelLiter: null,
4053
+ color: 'WHITE PEARL CS',
4054
+ trim: 'DK.GRAY/OAK/Beige',
4055
+ },
4056
+ serviceItems: [
4057
+ {
4058
+ name: '5,000 KM Free Service Package',
4059
+ type: 'free',
4060
+ activatedAt: '2024-01-01',
4061
+ expiresAt: '2024-05-01',
4062
+ status: 'processed',
4063
+ redeemDate: '2024-04-20',
4064
+ redeemingDealer: 'SAS - Erbil',
4065
+ invoiceNumber: '10384455',
4066
+ wipNumber: '48914',
4067
+ menuCode: 'NABDSERCMAS 05KS3',
4068
+ },
4069
+ {
4070
+ name: '10,000 KM Free Service Package',
4071
+ type: 'free',
4072
+ activatedAt: '2024-05-01',
4073
+ expiresAt: '2024-08-01',
4074
+ status: 'processed',
4075
+ redeemDate: '2024-07-29',
4076
+ redeemingDealer: 'Cihan - Erbil Makhmoor',
4077
+ invoiceNumber: '492824',
4078
+ wipNumber: '198274',
4079
+ menuCode: 'NABDSERCMAS 10KS3',
4080
+ },
4081
+ {
4082
+ name: '15,000 KM Free Service Package',
4083
+ type: 'free',
4084
+ activatedAt: '2024-08-01',
4085
+ expiresAt: '2024-11-01',
4086
+ status: 'pending',
4087
+ menuCode: 'NABDSERCMAS 15KS3',
4088
+ },
4089
+ {
4090
+ name: '20,000 KM Free Service Package',
4091
+ type: 'free',
4092
+ activatedAt: '2024-11-01',
4093
+ expiresAt: '2025-02-01',
4094
+ status: 'pending',
4095
+ menuCode: 'NABDSERCMAS 20KS3',
4096
+ },
4097
+ {
4098
+ name: '25,000 KM Free Service Package',
4099
+ type: 'free',
4100
+ activatedAt: '2025-02-01',
4101
+ expiresAt: '2025-05-01',
4102
+ status: 'pending',
4103
+ menuCode: 'NABDSERCMAS 25KS3',
4104
+ },
4105
+ {
4106
+ name: '30,000 KM Free Service Package',
4107
+ type: 'free',
4108
+ activatedAt: '2025-05-01',
4109
+ expiresAt: '2025-08-01',
4110
+ status: 'pending',
4111
+ menuCode: 'NABDSERCMAS 30KS3',
4112
+ },
4113
+ {
4114
+ name: '35,000 KM Free Service Package',
4115
+ type: 'free',
4116
+ activatedAt: '2025-08-01',
4117
+ expiresAt: '2025-11-01',
4118
+ status: 'pending',
4119
+ menuCode: 'NABDSERCMAS 35KS3',
4120
+ },
4121
+ {
4122
+ name: '40,000 KM Free Service Package',
4123
+ type: 'free',
4124
+ activatedAt: '2025-11-01',
4125
+ expiresAt: '2026-02-01',
4126
+ status: 'pending',
4127
+ menuCode: 'NABDSERCMAS 40KS3 AT',
4128
+ },
4129
+ ],
4130
+ basicModelCode: 'VJA300',
4131
+ },
4132
+ };