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,2982 @@
1
+ const mockData = {
2
+ JTMHX01J8L4198295: {
3
+ vin: 'JTMHX01J8L4198295',
4
+ identifiers: {
5
+ vin: 'JTMHX01J8L4198295',
6
+ variant: null,
7
+ katashiki: null,
8
+ color: null,
9
+ trim: null,
10
+ brand: 0,
11
+ brandIntegrationID: null,
12
+ },
13
+ saleInformation: null,
14
+ isAuthorized: false,
15
+ warranty: null,
16
+ nextServiceDate: '2023-12-12',
17
+ serviceHistory: [
18
+ {
19
+ serviceType: 'PM SL (5K, 15K,25K...95K)',
20
+ serviceDate: '2023-09-12',
21
+ mileage: 30296,
22
+ companyName: 'CIHAN',
23
+ branchName: 'Cihan - Showroom | Erbil - Makhmur Road',
24
+ companyId: 2,
25
+ branchId: 14,
26
+ account: 'CS00022',
27
+ invoiceNumber: 51456604,
28
+ wipNumber: 13681,
29
+ laborLines: [
30
+ {
31
+ rtsCode: 'NOTES',
32
+ menuCode: ' ',
33
+ serviceCode: 'PMS',
34
+ description: 'FR WIPER RUBBER NEEDS TO R/P,',
35
+ },
36
+ {
37
+ rtsCode: 'EXPMAIN',
38
+ menuCode: ' ',
39
+ serviceCode: 'PMS',
40
+ description: 'EXPMAIN',
41
+ },
42
+ {
43
+ rtsCode: '0BLC25UR',
44
+ menuCode: 'SERLCUR 25KS',
45
+ serviceCode: 'PMS',
46
+ description: 'CARRY OUT 25,000 KM SERVICE',
47
+ },
48
+ ],
49
+ partLines: [
50
+ {
51
+ partNumber: 'T04152YZZD4',
52
+ qty: 1,
53
+ menuCode: 'SERLCUR 25KS',
54
+ partDescription: 'ELEMENT KIT, OIL',
55
+ },
56
+ {
57
+ partNumber: 'T0888083719',
58
+ qty: 8,
59
+ menuCode: 'SERLCUR 25KS',
60
+ partDescription: 'LGMO SN 5W40 208L',
61
+ },
62
+ {
63
+ partNumber: 'T9043012031',
64
+ qty: 1,
65
+ menuCode: 'SERLCUR 25KS',
66
+ partDescription: 'GASKET',
67
+ },
68
+ {
69
+ partNumber: 'T7736035040',
70
+ qty: 1,
71
+ menuCode: ' ',
72
+ partDescription: 'SPRING ASSY, FUEL',
73
+ },
74
+ ],
75
+ },
76
+ {
77
+ serviceType: 'PM SL (5K, 15K,25K...95K)',
78
+ serviceDate: '2023-02-09',
79
+ mileage: 25660,
80
+ companyName: 'CIHAN',
81
+ branchName: 'Cihan - Showroom | Erbil - Makhmur Road',
82
+ companyId: 2,
83
+ branchId: 14,
84
+ account: 'CS00022',
85
+ invoiceNumber: 51447340,
86
+ wipNumber: 52446,
87
+ laborLines: [
88
+ {
89
+ rtsCode: '02FUELLCUR',
90
+ menuCode: 'FUEL FILTER LCUR',
91
+ serviceCode: 'PMS',
92
+ description: 'FUEL FILTER REPLACEMENT',
93
+ },
94
+ {
95
+ rtsCode: '0BLC25UR',
96
+ menuCode: 'SERLCUR 25KS',
97
+ serviceCode: 'PMS',
98
+ description: 'CARRY OUT 25,000 KM SERVICE',
99
+ },
100
+ ],
101
+ partLines: [
102
+ {
103
+ partNumber: 'T0888083719',
104
+ qty: 8,
105
+ menuCode: 'SERLCUR 25KS',
106
+ partDescription: 'LGMO SN 5W40 208L',
107
+ },
108
+ {
109
+ partNumber: 'T9043012031',
110
+ qty: 1,
111
+ menuCode: 'SERLCUR 25KS',
112
+ partDescription: 'GASKET',
113
+ },
114
+ {
115
+ partNumber: 'T2330050150',
116
+ qty: 1,
117
+ menuCode: 'FUEL FILTER LCUR',
118
+ partDescription: 'FILTER ASSY, FUEL',
119
+ },
120
+ {
121
+ partNumber: 'T04152YZZD4',
122
+ qty: 1,
123
+ menuCode: 'SERLCUR 25KS',
124
+ partDescription: 'ELEMENT KIT, OIL',
125
+ },
126
+ ],
127
+ },
128
+ {
129
+ serviceType: 'PM SL (5K, 15K,25K...95K)',
130
+ serviceDate: '2022-09-10',
131
+ mileage: 20574,
132
+ companyName: 'CIHAN',
133
+ branchName: 'Cihan - Showroom | Erbil - Makhmur Road',
134
+ companyId: 2,
135
+ branchId: 14,
136
+ account: 'CS00022',
137
+ invoiceNumber: 51441539,
138
+ wipNumber: 41940,
139
+ laborLines: [
140
+ {
141
+ rtsCode: '0BLC15UR',
142
+ menuCode: 'SERLCUR 15KS',
143
+ serviceCode: 'PMS',
144
+ description: 'CARRY OUT 15,000 KM SERVICE',
145
+ },
146
+ {
147
+ rtsCode: '37099',
148
+ menuCode: ' ',
149
+ serviceCode: 'PMS',
150
+ description: 'GREASING',
151
+ },
152
+ ],
153
+ partLines: [
154
+ {
155
+ partNumber: 'T1780138030',
156
+ qty: 1,
157
+ menuCode: ' ',
158
+ partDescription: 'ELEMENT SUB-ASSY,',
159
+ },
160
+ {
161
+ partNumber: 'T0888083719',
162
+ qty: 8,
163
+ menuCode: 'SERLCUR 15KS',
164
+ partDescription: 'LGMO SN 5W40 208L',
165
+ },
166
+ {
167
+ partNumber: 'T9043012031',
168
+ qty: 1,
169
+ menuCode: 'SERLCUR 15KS',
170
+ partDescription: 'GASKET',
171
+ },
172
+ {
173
+ partNumber: 'T04152YZZD4',
174
+ qty: 1,
175
+ menuCode: ' ',
176
+ partDescription: 'ELEMENT KIT, OIL',
177
+ },
178
+ ],
179
+ },
180
+ {
181
+ serviceType: 'PM SL (5K, 15K,25K...95K)',
182
+ serviceDate: '2021-11-27',
183
+ mileage: 13964,
184
+ companyName: 'CIHAN',
185
+ branchName: 'Cihan - Showroom | Erbil - Makhmur Road',
186
+ companyId: 2,
187
+ branchId: 14,
188
+ account: 'CS00022',
189
+ invoiceNumber: 51431492,
190
+ wipNumber: 22296,
191
+ laborLines: [
192
+ {
193
+ rtsCode: '0BLC15UR',
194
+ menuCode: 'SERLCUR 15KS',
195
+ serviceCode: 'PMS',
196
+ description: 'CARRY OUT 15,000 KM SERVICE',
197
+ },
198
+ ],
199
+ partLines: [
200
+ {
201
+ partNumber: 'T0888083719',
202
+ qty: 8,
203
+ menuCode: 'SERLCUR 15KS',
204
+ partDescription: 'LGMO SN 5W40 208L',
205
+ },
206
+ {
207
+ partNumber: 'T04152YZZD4',
208
+ qty: 1,
209
+ menuCode: 'SERLCUR 15KS',
210
+ partDescription: 'ELEMENT KIT, OIL',
211
+ },
212
+ {
213
+ partNumber: 'T9043012031',
214
+ qty: 1,
215
+ menuCode: 'SERLCUR 15KS',
216
+ partDescription: 'GASKET',
217
+ },
218
+ ],
219
+ },
220
+ ],
221
+ ssc: null,
222
+ vehicleVariantInfo: null,
223
+ vehicleSpecification: null,
224
+ serviceItems: null,
225
+ basicModelCode: null,
226
+ },
227
+ JTMHX01J8L4198296: {
228
+ vin: 'JTMHX01J8L4198296',
229
+ identifiers: {
230
+ vin: 'JTMHX01J8L4198295',
231
+ variant: null,
232
+ katashiki: null,
233
+ color: null,
234
+ trim: null,
235
+ brand: 0,
236
+ brandIntegrationID: null,
237
+ },
238
+ saleInformation: null,
239
+ isAuthorized: false,
240
+ warranty: {
241
+ hasActiveWarranty: true,
242
+ warrantyStartDate: '2023-06-05',
243
+ warrantyEndDate: '2026-06-05',
244
+ hasExtendedWarranty: false,
245
+ extendedWarrantyStartDate: null,
246
+ extendedWarrantyEndDate: null,
247
+ },
248
+ nextServiceDate: '2023-12-12',
249
+ serviceHistory: [
250
+ {
251
+ serviceType: 'PM SL (5K, 15K,25K...95K)',
252
+ serviceDate: '2023-09-12',
253
+ mileage: 30296,
254
+ companyName: 'CIHAN',
255
+ branchName: 'Cihan - Showroom | Erbil - Makhmur Road',
256
+ companyId: 2,
257
+ branchId: 14,
258
+ account: 'CS00022',
259
+ invoiceNumber: 51456604,
260
+ wipNumber: 13681,
261
+ laborLines: [
262
+ {
263
+ rtsCode: 'NOTES',
264
+ menuCode: ' ',
265
+ serviceCode: 'PMS',
266
+ description: 'FR WIPER RUBBER NEEDS TO R/P,',
267
+ },
268
+ {
269
+ rtsCode: 'EXPMAIN',
270
+ menuCode: ' ',
271
+ serviceCode: 'PMS',
272
+ description: 'EXPMAIN',
273
+ },
274
+ {
275
+ rtsCode: '0BLC25UR',
276
+ menuCode: 'SERLCUR 25KS',
277
+ serviceCode: 'PMS',
278
+ description: 'CARRY OUT 25,000 KM SERVICE',
279
+ },
280
+ ],
281
+ partLines: [
282
+ {
283
+ partNumber: 'T04152YZZD4',
284
+ qty: 1,
285
+ menuCode: 'SERLCUR 25KS',
286
+ partDescription: 'ELEMENT KIT, OIL',
287
+ },
288
+ {
289
+ partNumber: 'T0888083719',
290
+ qty: 8,
291
+ menuCode: 'SERLCUR 25KS',
292
+ partDescription: 'LGMO SN 5W40 208L',
293
+ },
294
+ {
295
+ partNumber: 'T9043012031',
296
+ qty: 1,
297
+ menuCode: 'SERLCUR 25KS',
298
+ partDescription: 'GASKET',
299
+ },
300
+ {
301
+ partNumber: 'T7736035040',
302
+ qty: 1,
303
+ menuCode: ' ',
304
+ partDescription: 'SPRING ASSY, FUEL',
305
+ },
306
+ ],
307
+ },
308
+ {
309
+ serviceType: 'PM SL (5K, 15K,25K...95K)',
310
+ serviceDate: '2023-02-09',
311
+ mileage: 25660,
312
+ companyName: 'CIHAN',
313
+ branchName: 'Cihan - Showroom | Erbil - Makhmur Road',
314
+ companyId: 2,
315
+ branchId: 14,
316
+ account: 'CS00022',
317
+ invoiceNumber: 51447340,
318
+ wipNumber: 52446,
319
+ laborLines: [
320
+ {
321
+ rtsCode: '02FUELLCUR',
322
+ menuCode: 'FUEL FILTER LCUR',
323
+ serviceCode: 'PMS',
324
+ description: 'FUEL FILTER REPLACEMENT',
325
+ },
326
+ {
327
+ rtsCode: '0BLC25UR',
328
+ menuCode: 'SERLCUR 25KS',
329
+ serviceCode: 'PMS',
330
+ description: 'CARRY OUT 25,000 KM SERVICE',
331
+ },
332
+ ],
333
+ partLines: [
334
+ {
335
+ partNumber: 'T0888083719',
336
+ qty: 8,
337
+ menuCode: 'SERLCUR 25KS',
338
+ partDescription: 'LGMO SN 5W40 208L',
339
+ },
340
+ {
341
+ partNumber: 'T9043012031',
342
+ qty: 1,
343
+ menuCode: 'SERLCUR 25KS',
344
+ partDescription: 'GASKET',
345
+ },
346
+ {
347
+ partNumber: 'T2330050150',
348
+ qty: 1,
349
+ menuCode: 'FUEL FILTER LCUR',
350
+ partDescription: 'FILTER ASSY, FUEL',
351
+ },
352
+ {
353
+ partNumber: 'T04152YZZD4',
354
+ qty: 1,
355
+ menuCode: 'SERLCUR 25KS',
356
+ partDescription: 'ELEMENT KIT, OIL',
357
+ },
358
+ ],
359
+ },
360
+ {
361
+ serviceType: 'PM SL (5K, 15K,25K...95K)',
362
+ serviceDate: '2022-09-10',
363
+ mileage: 20574,
364
+ companyName: 'CIHAN',
365
+ branchName: 'Cihan - Showroom | Erbil - Makhmur Road',
366
+ companyId: 2,
367
+ branchId: 14,
368
+ account: 'CS00022',
369
+ invoiceNumber: 51441539,
370
+ wipNumber: 41940,
371
+ laborLines: [
372
+ {
373
+ rtsCode: '0BLC15UR',
374
+ menuCode: 'SERLCUR 15KS',
375
+ serviceCode: 'PMS',
376
+ description: 'CARRY OUT 15,000 KM SERVICE',
377
+ },
378
+ {
379
+ rtsCode: '37099',
380
+ menuCode: ' ',
381
+ serviceCode: 'PMS',
382
+ description: 'GREASING',
383
+ },
384
+ ],
385
+ partLines: [
386
+ {
387
+ partNumber: 'T1780138030',
388
+ qty: 1,
389
+ menuCode: ' ',
390
+ partDescription: 'ELEMENT SUB-ASSY,',
391
+ },
392
+ {
393
+ partNumber: 'T0888083719',
394
+ qty: 8,
395
+ menuCode: 'SERLCUR 15KS',
396
+ partDescription: 'LGMO SN 5W40 208L',
397
+ },
398
+ {
399
+ partNumber: 'T9043012031',
400
+ qty: 1,
401
+ menuCode: 'SERLCUR 15KS',
402
+ partDescription: 'GASKET',
403
+ },
404
+ {
405
+ partNumber: 'T04152YZZD4',
406
+ qty: 1,
407
+ menuCode: ' ',
408
+ partDescription: 'ELEMENT KIT, OIL',
409
+ },
410
+ ],
411
+ },
412
+ {
413
+ serviceType: 'PM SL (5K, 15K,25K...95K)',
414
+ serviceDate: '2021-11-27',
415
+ mileage: 13964,
416
+ companyName: 'CIHAN',
417
+ branchName: 'Cihan - Showroom | Erbil - Makhmur Road',
418
+ companyId: 2,
419
+ branchId: 14,
420
+ account: 'CS00022',
421
+ invoiceNumber: 51431492,
422
+ wipNumber: 22296,
423
+ laborLines: [
424
+ {
425
+ rtsCode: '0BLC15UR',
426
+ menuCode: 'SERLCUR 15KS',
427
+ serviceCode: 'PMS',
428
+ description: 'CARRY OUT 15,000 KM SERVICE',
429
+ },
430
+ ],
431
+ partLines: [
432
+ {
433
+ partNumber: 'T0888083719',
434
+ qty: 8,
435
+ menuCode: 'SERLCUR 15KS',
436
+ partDescription: 'LGMO SN 5W40 208L',
437
+ },
438
+ {
439
+ partNumber: 'T04152YZZD4',
440
+ qty: 1,
441
+ menuCode: 'SERLCUR 15KS',
442
+ partDescription: 'ELEMENT KIT, OIL',
443
+ },
444
+ {
445
+ partNumber: 'T9043012031',
446
+ qty: 1,
447
+ menuCode: 'SERLCUR 15KS',
448
+ partDescription: 'GASKET',
449
+ },
450
+ ],
451
+ },
452
+ ],
453
+ ssc: null,
454
+ vehicleVariantInfo: null,
455
+ vehicleSpecification: null,
456
+ serviceItems: null,
457
+ basicModelCode: null,
458
+ },
459
+ MR0BX8CD3P2791075: {
460
+ vin: 'MR0BX8CD3P2791075',
461
+ identifiers: {
462
+ vin: 'MR0BX8CD3P2791075',
463
+ variant: '13461HN202301',
464
+ katashiki: 'TGN126L-DTTHKV',
465
+ color: '040',
466
+ trim: '30',
467
+ brand: 0,
468
+ brandIntegrationID: 'TYT',
469
+ },
470
+ saleInformation: {
471
+ dealerIntegrationID: '1',
472
+ dealerName: 'SAS',
473
+ branchIntegrationID: '43',
474
+ branchName: 'SAS - Showroom | Duhok',
475
+ customerAccount: 'R01447',
476
+ customerID: '89437',
477
+ invoiceDate: '2023-05-11',
478
+ invoiceNumber: 11155049,
479
+ broker: {
480
+ brokerId: 628,
481
+ brokerName: 'Modren Cars',
482
+ customerID: 11048,
483
+ invoiceNumber: 86,
484
+ invoiceDate: '2023-06-05',
485
+ },
486
+ },
487
+ isAuthorized: true,
488
+ warranty: {
489
+ hasActiveWarranty: true,
490
+ warrantyStartDate: '2023-06-05',
491
+ warrantyEndDate: '2026-06-05',
492
+ hasExtendedWarranty: false,
493
+ extendedWarrantyStartDate: null,
494
+ extendedWarrantyEndDate: null,
495
+ },
496
+ nextServiceDate: '2025-01-13',
497
+ serviceHistory: [
498
+ {
499
+ serviceType: 'PM SL (5K, 15K,25K...95K)',
500
+ serviceDate: '2024-10-13',
501
+ mileage: 73941,
502
+ companyName: 'SAS',
503
+ branchName: 'SAS - Showroom | Duhok',
504
+ companyId: 1,
505
+ branchId: 43,
506
+ account: 'C00015',
507
+ invoiceNumber: 53166219,
508
+ wipNumber: 16416,
509
+ laborLines: [
510
+ {
511
+ rtsCode: 'CWASH',
512
+ menuCode: ' ',
513
+ serviceCode: 'PMS',
514
+ description: 'Free Car Wash',
515
+ },
516
+ {
517
+ rtsCode: 'BGTEPR',
518
+ menuCode: 'BGTEPR',
519
+ serviceCode: 'PMS',
520
+ description: 'BG Engine Performance Restorat',
521
+ },
522
+ {
523
+ rtsCode: '0BHL75W4',
524
+ menuCode: 'SERH4W 75KS3',
525
+ serviceCode: 'PMS',
526
+ description: 'CARRY OUT 75,000 KM SERVICE',
527
+ },
528
+ ],
529
+ partLines: [
530
+ {
531
+ partNumber: 'T0888083715',
532
+ qty: 5.5,
533
+ menuCode: 'SERH4W 75KS3',
534
+ partDescription: 'TGMO SN 5W30 208L',
535
+ },
536
+ {
537
+ partNumber: 'ZBG6579M3',
538
+ qty: 1,
539
+ menuCode: 'BGTEPR',
540
+ partDescription: 'PERFORMANCE OIL SERVICE',
541
+ },
542
+ {
543
+ partNumber: 'T90915YZZD2',
544
+ qty: 1,
545
+ menuCode: 'SERH4W 75KS3',
546
+ partDescription: 'FILTER, OIL',
547
+ },
548
+ {
549
+ partNumber: 'T9043012031',
550
+ qty: 1,
551
+ menuCode: 'SERH4W 75KS3',
552
+ partDescription: 'GASKET',
553
+ },
554
+ ],
555
+ },
556
+ {
557
+ serviceType: 'PM SL (5K, 15K,25K...95K)',
558
+ serviceDate: '2024-09-08',
559
+ mileage: 62620,
560
+ companyName: 'SAS',
561
+ branchName: 'SAS - Showroom | Duhok',
562
+ companyId: 1,
563
+ branchId: 43,
564
+ account: 'C00015',
565
+ invoiceNumber: 53165038,
566
+ wipNumber: 14587,
567
+ laborLines: [
568
+ {
569
+ rtsCode: 'CWASH',
570
+ menuCode: ' ',
571
+ serviceCode: 'PMS',
572
+ description: 'Free Car Wash',
573
+ },
574
+ {
575
+ rtsCode: '0BHL05W4',
576
+ menuCode: 'SERH4W 05KS3',
577
+ serviceCode: 'PMS',
578
+ description: 'CARRY OUT 5,000 KM SERVICE',
579
+ },
580
+ {
581
+ rtsCode: 'CONSU',
582
+ menuCode: 'CONS',
583
+ serviceCode: 'PMS',
584
+ description: 'Consumables',
585
+ },
586
+ ],
587
+ partLines: [
588
+ {
589
+ partNumber: 'T90915YZZD2',
590
+ qty: 1,
591
+ menuCode: 'SERH4W 05KS3',
592
+ partDescription: 'FILTER, OIL',
593
+ },
594
+ {
595
+ partNumber: 'T0888083715',
596
+ qty: 5.5,
597
+ menuCode: 'SERH4W 05KS3',
598
+ partDescription: 'TGMO SN 5W30 208L',
599
+ },
600
+ {
601
+ partNumber: 'T9043012031',
602
+ qty: 1,
603
+ menuCode: 'SERH4W 05KS3',
604
+ partDescription: 'GASKET',
605
+ },
606
+ ],
607
+ },
608
+ {
609
+ serviceType: 'PM SL (5K, 15K,25K...95K)',
610
+ serviceDate: '2024-07-28',
611
+ mileage: 61940,
612
+ companyName: 'SAS',
613
+ branchName: 'SAS - Showroom | Duhok',
614
+ companyId: 1,
615
+ branchId: 43,
616
+ account: 'C00015',
617
+ invoiceNumber: 53163666,
618
+ wipNumber: 12359,
619
+ laborLines: [
620
+ {
621
+ rtsCode: '0BHL65W4',
622
+ menuCode: 'SERH4W 65KS3',
623
+ serviceCode: 'PMS',
624
+ description: 'CARRY OUT 65,000 KM SERVICE',
625
+ },
626
+ {
627
+ rtsCode: 'PDRINSP',
628
+ menuCode: ' ',
629
+ serviceCode: 'PMS',
630
+ description: 'FRONT BUMPER SC1',
631
+ },
632
+ {
633
+ rtsCode: 'CONS',
634
+ menuCode: ' ',
635
+ serviceCode: 'PMS',
636
+ description: 'Consumables',
637
+ },
638
+ {
639
+ rtsCode: 'CWASH',
640
+ menuCode: ' ',
641
+ serviceCode: 'PMS',
642
+ description: 'Free Car Wash',
643
+ },
644
+ ],
645
+ partLines: [
646
+ {
647
+ partNumber: 'T90915YZZD2',
648
+ qty: 1,
649
+ menuCode: 'SERH4W 65KS3',
650
+ partDescription: 'FILTER, OIL',
651
+ },
652
+ {
653
+ partNumber: 'T9043012031',
654
+ qty: 1,
655
+ menuCode: 'SERH4W 65KS3',
656
+ partDescription: 'GASKET',
657
+ },
658
+ {
659
+ partNumber: 'T0888083715',
660
+ qty: 5.5,
661
+ menuCode: 'SERH4W 65KS3',
662
+ partDescription: 'TGMO SN 5W30 208L',
663
+ },
664
+ ],
665
+ },
666
+ {
667
+ serviceType: 'PM SL (5K, 15K,25K...95K)',
668
+ serviceDate: '2024-06-26',
669
+ mileage: 56592,
670
+ companyName: 'SAS',
671
+ branchName: 'SAS - Showroom | Duhok',
672
+ companyId: 1,
673
+ branchId: 43,
674
+ account: 'C00015',
675
+ invoiceNumber: 53162583,
676
+ wipNumber: 10672,
677
+ laborLines: [
678
+ {
679
+ rtsCode: 'CONS',
680
+ menuCode: ' ',
681
+ serviceCode: 'PMS',
682
+ description: 'Consumables',
683
+ },
684
+ {
685
+ rtsCode: 'CWASH',
686
+ menuCode: ' ',
687
+ serviceCode: 'PMS',
688
+ description: 'Free Car Wash',
689
+ },
690
+ {
691
+ rtsCode: '0BHL55W4',
692
+ menuCode: 'SERH4W 55KS3',
693
+ serviceCode: 'PMS',
694
+ description: 'CARRY OUT 55,000 KM SERVICE',
695
+ },
696
+ ],
697
+ partLines: [
698
+ {
699
+ partNumber: 'T90915YZZD2',
700
+ qty: 1,
701
+ menuCode: 'SERH4W 55KS3',
702
+ partDescription: 'FILTER, OIL',
703
+ },
704
+ {
705
+ partNumber: 'T0888083715',
706
+ qty: 5.5,
707
+ menuCode: 'SERH4W 55KS3',
708
+ partDescription: 'TGMO SN 5W30 208L',
709
+ },
710
+ {
711
+ partNumber: 'T9043012031',
712
+ qty: 1,
713
+ menuCode: 'SERH4W 55KS3',
714
+ partDescription: 'GASKET',
715
+ },
716
+ ],
717
+ },
718
+ {
719
+ serviceType: 'PM SL (5K, 15K,25K...95K)',
720
+ serviceDate: '2024-05-26',
721
+ mileage: 51308,
722
+ companyName: 'SAS',
723
+ branchName: 'SAS - Showroom | Duhok',
724
+ companyId: 1,
725
+ branchId: 43,
726
+ account: 'S00058',
727
+ invoiceNumber: 53161736,
728
+ wipNumber: 64345,
729
+ laborLines: [
730
+ {
731
+ rtsCode: 'PDRINSP',
732
+ menuCode: ' ',
733
+ serviceCode: 'PMS',
734
+ description: 'REAR LEFT FENDER PDR1+SC1',
735
+ },
736
+ {
737
+ rtsCode: 'CONS',
738
+ menuCode: ' ',
739
+ serviceCode: 'PMS',
740
+ description: 'Consumables',
741
+ },
742
+ {
743
+ rtsCode: '0BHL55W4',
744
+ menuCode: 'SERH4W 55KS3',
745
+ serviceCode: 'PMS',
746
+ description: 'CARRY OUT 55,000 KM SERVICE',
747
+ },
748
+ {
749
+ rtsCode: 'BGT44K',
750
+ menuCode: 'BGT44K',
751
+ serviceCode: 'PMS',
752
+ description: 'BG 44K Platinum Fuel System Cl',
753
+ },
754
+ ],
755
+ partLines: [
756
+ {
757
+ partNumber: 'ZBG208M',
758
+ qty: 1,
759
+ menuCode: 'BGT44K',
760
+ partDescription: '44K PLATINUM FUEL & COMBUSTION CLEANER',
761
+ },
762
+ {
763
+ partNumber: 'T9043012031',
764
+ qty: 1,
765
+ menuCode: 'SERH4W 55KS3',
766
+ partDescription: 'GASKET',
767
+ },
768
+ {
769
+ partNumber: 'T90915YZZD2',
770
+ qty: 1,
771
+ menuCode: 'SERH4W 55KS3',
772
+ partDescription: 'FILTER, OIL',
773
+ },
774
+ {
775
+ partNumber: 'T0888083719',
776
+ qty: 5.5,
777
+ menuCode: 'SERH4W 55KS3',
778
+ partDescription: 'LGMO SN 5W40 208L',
779
+ },
780
+ ],
781
+ },
782
+ {
783
+ serviceType: 'PM SL (5K, 15K,25K...95K)',
784
+ serviceDate: '2024-04-22',
785
+ mileage: 46248,
786
+ companyName: 'SAS',
787
+ branchName: 'SAS - Showroom | Duhok',
788
+ companyId: 1,
789
+ branchId: 43,
790
+ account: 'C00015',
791
+ invoiceNumber: 53160685,
792
+ wipNumber: 62792,
793
+ laborLines: [
794
+ {
795
+ rtsCode: 'BGTEPR',
796
+ menuCode: 'BGTEPR',
797
+ serviceCode: 'PMS',
798
+ description: 'BG Engine Performance Restorat',
799
+ },
800
+ {
801
+ rtsCode: 'CWASH',
802
+ menuCode: ' ',
803
+ serviceCode: 'PMS',
804
+ description: 'Free Car Wash',
805
+ },
806
+ {
807
+ rtsCode: 'PDRINSP',
808
+ menuCode: ' ',
809
+ serviceCode: 'PMS',
810
+ description: 'REAR LEFT FENDER SC2',
811
+ },
812
+ {
813
+ rtsCode: '0BHL45W4',
814
+ menuCode: 'SERH4W 45KS3',
815
+ serviceCode: 'PMS',
816
+ description: 'CARRY OUT 45,000 KM SERVICE',
817
+ },
818
+ {
819
+ rtsCode: 'CONS',
820
+ menuCode: ' ',
821
+ serviceCode: 'PMS',
822
+ description: 'Consumables',
823
+ },
824
+ {
825
+ rtsCode: 'CWASH',
826
+ menuCode: ' ',
827
+ serviceCode: 'PMS',
828
+ description: 'Free Car Wash',
829
+ },
830
+ ],
831
+ partLines: [
832
+ {
833
+ partNumber: 'T90915YZZD2',
834
+ qty: 1,
835
+ menuCode: 'SERH4W 45KS3',
836
+ partDescription: 'FILTER, OIL',
837
+ },
838
+ {
839
+ partNumber: 'T9043012031',
840
+ qty: 1,
841
+ menuCode: 'SERH4W 45KS3',
842
+ partDescription: 'GASKET',
843
+ },
844
+ {
845
+ partNumber: 'T0888083719',
846
+ qty: 5.5,
847
+ menuCode: 'SERH4W 45KS3',
848
+ partDescription: 'LGMO SN 5W40 208L',
849
+ },
850
+ {
851
+ partNumber: 'ZBG6579M3',
852
+ qty: 1,
853
+ menuCode: 'BGTEPR',
854
+ partDescription: 'PERFORMANCE OIL SERVICE',
855
+ },
856
+ ],
857
+ },
858
+ {
859
+ serviceType: 'PM SL (5K, 15K,25K...95K)',
860
+ serviceDate: '2024-03-16',
861
+ mileage: 40586,
862
+ companyName: 'SAS',
863
+ branchName: 'SAS - Showroom | Duhok',
864
+ companyId: 1,
865
+ branchId: 43,
866
+ account: 'C00015',
867
+ invoiceNumber: 53159833,
868
+ wipNumber: 61274,
869
+ laborLines: [
870
+ {
871
+ rtsCode: 'CONS',
872
+ menuCode: ' ',
873
+ serviceCode: 'PMS',
874
+ description: 'Consumables',
875
+ },
876
+ {
877
+ rtsCode: 'PDRINSP',
878
+ menuCode: ' ',
879
+ serviceCode: 'PMS',
880
+ description: 'front left door sc1',
881
+ },
882
+ {
883
+ rtsCode: '0BHL35W4',
884
+ menuCode: 'SERH4W 35KS3',
885
+ serviceCode: 'PMS',
886
+ description: 'CARRY OUT 35,000 KM SERVICE',
887
+ },
888
+ {
889
+ rtsCode: 'CWASH',
890
+ menuCode: ' ',
891
+ serviceCode: 'PMS',
892
+ description: 'Free Car Wash',
893
+ },
894
+ ],
895
+ partLines: [
896
+ {
897
+ partNumber: 'T9043012031',
898
+ qty: 1,
899
+ menuCode: 'SERH4W 35KS3',
900
+ partDescription: 'GASKET',
901
+ },
902
+ {
903
+ partNumber: 'T90915YZZD2',
904
+ qty: 1,
905
+ menuCode: 'SERH4W 35KS3',
906
+ partDescription: 'FILTER, OIL',
907
+ },
908
+ {
909
+ partNumber: 'T0888083715',
910
+ qty: 5.5,
911
+ menuCode: 'SERH4W 35KS3',
912
+ partDescription: 'TGMO SN 5W30 208L',
913
+ },
914
+ ],
915
+ },
916
+ {
917
+ serviceType: 'PM SL (5K, 15K,25K...95K)',
918
+ serviceDate: '2024-02-05',
919
+ mileage: 35261,
920
+ companyName: 'SAS',
921
+ branchName: 'SAS - Showroom | Duhok',
922
+ companyId: 1,
923
+ branchId: 43,
924
+ account: 'C00015',
925
+ invoiceNumber: 53158737,
926
+ wipNumber: 59536,
927
+ laborLines: [
928
+ {
929
+ rtsCode: 'BGTPFI',
930
+ menuCode: 'BGTPFI',
931
+ serviceCode: 'PMS',
932
+ description: 'BG PFI Fuel & Air Induction Cl',
933
+ },
934
+ {
935
+ rtsCode: '0BHL05W4',
936
+ menuCode: 'SERH4W 05KS3',
937
+ serviceCode: 'PMS',
938
+ description: 'CARRY OUT 5,000 KM SERVICE',
939
+ },
940
+ {
941
+ rtsCode: 'CONS',
942
+ menuCode: ' ',
943
+ serviceCode: 'PMS',
944
+ description: 'Consumables',
945
+ },
946
+ {
947
+ rtsCode: '473301',
948
+ menuCode: ' ',
949
+ serviceCode: 'PMS',
950
+ description: 'FRONT DISC BRAKE PAD AND/OR DI',
951
+ },
952
+ ],
953
+ partLines: [
954
+ {
955
+ partNumber: 'T044650K360',
956
+ qty: 1,
957
+ menuCode: ' ',
958
+ partDescription: 'PAD KIT, DISC BRAKE',
959
+ },
960
+ {
961
+ partNumber: 'ZBG2901M3',
962
+ qty: 1,
963
+ menuCode: 'BGTPFI',
964
+ partDescription: 'PFI FUEL & AIR INDUCTION CLEANING',
965
+ },
966
+ {
967
+ partNumber: 'T0888083715',
968
+ qty: 5.5,
969
+ menuCode: 'SERH4W 05KS3',
970
+ partDescription: 'TGMO SN 5W30 208L',
971
+ },
972
+ {
973
+ partNumber: 'T9043012031',
974
+ qty: 1,
975
+ menuCode: 'SERH4W 05KS3',
976
+ partDescription: 'GASKET',
977
+ },
978
+ {
979
+ partNumber: 'T90915YZZD2',
980
+ qty: 1,
981
+ menuCode: 'SERH4W 05KS3',
982
+ partDescription: 'FILTER, OIL',
983
+ },
984
+ ],
985
+ },
986
+ {
987
+ serviceType: 'PM SL (5K, 15K,25K...95K)',
988
+ serviceDate: '2023-12-25',
989
+ mileage: 30253,
990
+ companyName: 'SAS',
991
+ branchName: 'SAS - Showroom | Duhok',
992
+ companyId: 1,
993
+ branchId: 43,
994
+ account: 'C00015',
995
+ invoiceNumber: 53157673,
996
+ wipNumber: 57573,
997
+ laborLines: [
998
+ {
999
+ rtsCode: 'CONS',
1000
+ menuCode: ' ',
1001
+ serviceCode: 'PMS',
1002
+ description: 'Consumables',
1003
+ },
1004
+ {
1005
+ rtsCode: 'CWASH',
1006
+ menuCode: ' ',
1007
+ serviceCode: 'PMS',
1008
+ description: 'Free Car Wash',
1009
+ },
1010
+ {
1011
+ rtsCode: 'PDRINSP',
1012
+ menuCode: ' ',
1013
+ serviceCode: 'PMS',
1014
+ description: 'FRONT BUMPER SC3',
1015
+ },
1016
+ {
1017
+ rtsCode: '0BHL25W4',
1018
+ menuCode: 'SERH4W 25KS3',
1019
+ serviceCode: 'PMS',
1020
+ description: 'CARRY OUT 25,000 KM SERVICE',
1021
+ },
1022
+ ],
1023
+ partLines: [
1024
+ {
1025
+ partNumber: 'T0888083715',
1026
+ qty: 5.5,
1027
+ menuCode: 'SERH4W 25KS3',
1028
+ partDescription: 'TGMO SN 5W30 208L',
1029
+ },
1030
+ {
1031
+ partNumber: 'T9043012031',
1032
+ qty: 1,
1033
+ menuCode: 'SERH4W 25KS3',
1034
+ partDescription: 'GASKET',
1035
+ },
1036
+ {
1037
+ partNumber: 'T90915YZZD2',
1038
+ qty: 1,
1039
+ menuCode: 'SERH4W 25KS3',
1040
+ partDescription: 'FILTER, OIL',
1041
+ },
1042
+ ],
1043
+ },
1044
+ ],
1045
+ ssc: null,
1046
+ vehicleVariantInfo: {
1047
+ modelCode: '13461',
1048
+ sfx: 'HN',
1049
+ modelYear: 2023,
1050
+ },
1051
+ vehicleSpecification: {
1052
+ modelDesc: 'HILUX 2.7 D/C 4*4/AT/High/ADD',
1053
+ variantDesc: '2.7L/DC/4x4/AT/High/ADD',
1054
+ class: 'C',
1055
+ bodyType: ' ',
1056
+ engine: ' 2700 ',
1057
+ cylinders: ' 0 ',
1058
+ lightHeavy: ' ',
1059
+ doors: ' 4 ',
1060
+ fuel: 'P',
1061
+ transmission: 'Automatic',
1062
+ side: '1',
1063
+ engineType: ' ',
1064
+ tankCap: ' 0 ',
1065
+ style: 'Pick up',
1066
+ fuelLiter: null,
1067
+ color: 'SUPER WHITE 2',
1068
+ trim: 'TERRA COTTA',
1069
+ },
1070
+ serviceItems: [
1071
+ {
1072
+ name: '1,000 KM Free Service',
1073
+ description: '',
1074
+ title: '1,000 KM Free Service',
1075
+ image: '',
1076
+ type: 'free',
1077
+ typeEnum: 0,
1078
+ activatedAt: '2023-06-05',
1079
+ expiresAt: '2023-09-05',
1080
+ status: 'processed',
1081
+ statusEnum: 0,
1082
+ campaignCode: null,
1083
+ menuCode: null,
1084
+ redeemDate: '2023-06-10T10:15:19.44',
1085
+ modelCostID: null,
1086
+ toyotaLoyaltyProgramRedeemableItemID: 82,
1087
+ tlpPackageInvoiceTLPItemID: null,
1088
+ dealerIntegrationID: '1',
1089
+ dealerName: 'SAS',
1090
+ invoiceNumber: null,
1091
+ wip: null,
1092
+ maximumMileage: 1000,
1093
+ skipZeroTrust: true,
1094
+ activeFor: 3,
1095
+ activeForInterval: 'Months',
1096
+ },
1097
+ {
1098
+ name: '5,000 KM Free Service',
1099
+ description: '',
1100
+ title: '5,000 KM Free Service',
1101
+ image: '',
1102
+ type: 'free',
1103
+ typeEnum: 0,
1104
+ activatedAt: '2023-09-05',
1105
+ expiresAt: '2023-12-05',
1106
+ status: 'processed',
1107
+ statusEnum: 0,
1108
+ campaignCode: null,
1109
+ menuCode: null,
1110
+ redeemDate: '2023-07-08T08:04:02.487',
1111
+ modelCostID: null,
1112
+ toyotaLoyaltyProgramRedeemableItemID: 81,
1113
+ tlpPackageInvoiceTLPItemID: null,
1114
+ dealerIntegrationID: '1',
1115
+ dealerName: 'SAS',
1116
+ invoiceNumber: '53153669',
1117
+ wip: '50246',
1118
+ maximumMileage: 5000,
1119
+ skipZeroTrust: false,
1120
+ activeFor: 3,
1121
+ activeForInterval: 'Months',
1122
+ },
1123
+ {
1124
+ name: 'Hilux4 10,000 KM Service Contract',
1125
+ description: '',
1126
+ title: 'Hilux4 10,000 KM Service Contract',
1127
+ image: '',
1128
+ type: 'free',
1129
+ typeEnum: 0,
1130
+ activatedAt: '2023-12-05',
1131
+ expiresAt: '2024-03-05',
1132
+ status: 'expired',
1133
+ statusEnum: 1,
1134
+ campaignCode: null,
1135
+ menuCode: '-',
1136
+ redeemDate: null,
1137
+ modelCostID: 6663,
1138
+ toyotaLoyaltyProgramRedeemableItemID: 218,
1139
+ tlpPackageInvoiceTLPItemID: null,
1140
+ dealerIntegrationID: null,
1141
+ dealerName: null,
1142
+ invoiceNumber: null,
1143
+ wip: null,
1144
+ maximumMileage: 10000,
1145
+ skipZeroTrust: false,
1146
+ activeFor: 3,
1147
+ activeForInterval: 'Months',
1148
+ },
1149
+ {
1150
+ name: ' Hilux4 15,000 KM Service Contract',
1151
+ description: '',
1152
+ title: ' Hilux4 15,000 KM Service Contract',
1153
+ image: '',
1154
+ type: 'free',
1155
+ typeEnum: 0,
1156
+ activatedAt: '2024-03-05',
1157
+ expiresAt: '2024-06-05',
1158
+ status: 'expired',
1159
+ statusEnum: 1,
1160
+ campaignCode: null,
1161
+ menuCode: '-',
1162
+ redeemDate: null,
1163
+ modelCostID: 6649,
1164
+ toyotaLoyaltyProgramRedeemableItemID: 219,
1165
+ tlpPackageInvoiceTLPItemID: null,
1166
+ dealerIntegrationID: null,
1167
+ dealerName: null,
1168
+ invoiceNumber: null,
1169
+ wip: null,
1170
+ maximumMileage: 15000,
1171
+ skipZeroTrust: false,
1172
+ activeFor: 3,
1173
+ activeForInterval: 'Months',
1174
+ },
1175
+ {
1176
+ name: 'Hilux4 20,000 KM Service Contract',
1177
+ description: '',
1178
+ title: 'Hilux4 20,000 KM Service Contract',
1179
+ image: '',
1180
+ type: 'free',
1181
+ typeEnum: 0,
1182
+ activatedAt: '2024-06-05',
1183
+ expiresAt: '2024-09-05',
1184
+ status: 'expired',
1185
+ statusEnum: 1,
1186
+ campaignCode: null,
1187
+ menuCode: '-',
1188
+ redeemDate: null,
1189
+ modelCostID: 6635,
1190
+ toyotaLoyaltyProgramRedeemableItemID: 220,
1191
+ tlpPackageInvoiceTLPItemID: null,
1192
+ dealerIntegrationID: null,
1193
+ dealerName: null,
1194
+ invoiceNumber: null,
1195
+ wip: null,
1196
+ maximumMileage: 20000,
1197
+ skipZeroTrust: false,
1198
+ activeFor: 3,
1199
+ activeForInterval: 'Months',
1200
+ },
1201
+ ],
1202
+ basicModelCode: 'TGN126',
1203
+ },
1204
+ JTMHX01J8L4198299: {
1205
+ vin: 'JTMHX01J8L4198299',
1206
+ identifiers: {
1207
+ vin: 'JTMHX01J8L4198295',
1208
+ variant: null,
1209
+ katashiki: null,
1210
+ color: null,
1211
+ trim: null,
1212
+ brand: 0,
1213
+ brandIntegrationID: null,
1214
+ },
1215
+ saleInformation: null,
1216
+ isAuthorized: false,
1217
+ warranty: {
1218
+ hasActiveWarranty: false,
1219
+ warrantyStartDate: '2020-06-05',
1220
+ warrantyEndDate: '2021-06-05',
1221
+ hasExtendedWarranty: false,
1222
+ extendedWarrantyStartDate: null,
1223
+ extendedWarrantyEndDate: null,
1224
+ },
1225
+ nextServiceDate: '2023-12-12',
1226
+ serviceHistory: [
1227
+ {
1228
+ serviceType: 'PM SL (5K, 15K,25K...95K)',
1229
+ serviceDate: '2023-09-12',
1230
+ mileage: 30296,
1231
+ companyName: 'CIHAN',
1232
+ branchName: 'Cihan - Showroom | Erbil - Makhmur Road',
1233
+ companyId: 2,
1234
+ branchId: 14,
1235
+ account: 'CS00022',
1236
+ invoiceNumber: 51456604,
1237
+ wipNumber: 13681,
1238
+ laborLines: [
1239
+ {
1240
+ rtsCode: 'NOTES',
1241
+ menuCode: ' ',
1242
+ serviceCode: 'PMS',
1243
+ description: 'FR WIPER RUBBER NEEDS TO R/P,',
1244
+ },
1245
+ {
1246
+ rtsCode: 'EXPMAIN',
1247
+ menuCode: ' ',
1248
+ serviceCode: 'PMS',
1249
+ description: 'EXPMAIN',
1250
+ },
1251
+ {
1252
+ rtsCode: '0BLC25UR',
1253
+ menuCode: 'SERLCUR 25KS',
1254
+ serviceCode: 'PMS',
1255
+ description: 'CARRY OUT 25,000 KM SERVICE',
1256
+ },
1257
+ ],
1258
+ partLines: [
1259
+ {
1260
+ partNumber: 'T04152YZZD4',
1261
+ qty: 1,
1262
+ menuCode: 'SERLCUR 25KS',
1263
+ partDescription: 'ELEMENT KIT, OIL',
1264
+ },
1265
+ {
1266
+ partNumber: 'T0888083719',
1267
+ qty: 8,
1268
+ menuCode: 'SERLCUR 25KS',
1269
+ partDescription: 'LGMO SN 5W40 208L',
1270
+ },
1271
+ {
1272
+ partNumber: 'T9043012031',
1273
+ qty: 1,
1274
+ menuCode: 'SERLCUR 25KS',
1275
+ partDescription: 'GASKET',
1276
+ },
1277
+ {
1278
+ partNumber: 'T7736035040',
1279
+ qty: 1,
1280
+ menuCode: ' ',
1281
+ partDescription: 'SPRING ASSY, FUEL',
1282
+ },
1283
+ ],
1284
+ },
1285
+ {
1286
+ serviceType: 'PM SL (5K, 15K,25K...95K)',
1287
+ serviceDate: '2023-02-09',
1288
+ mileage: 25660,
1289
+ companyName: 'CIHAN',
1290
+ branchName: 'Cihan - Showroom | Erbil - Makhmur Road',
1291
+ companyId: 2,
1292
+ branchId: 14,
1293
+ account: 'CS00022',
1294
+ invoiceNumber: 51447340,
1295
+ wipNumber: 52446,
1296
+ laborLines: [
1297
+ {
1298
+ rtsCode: '02FUELLCUR',
1299
+ menuCode: 'FUEL FILTER LCUR',
1300
+ serviceCode: 'PMS',
1301
+ description: 'FUEL FILTER REPLACEMENT',
1302
+ },
1303
+ {
1304
+ rtsCode: '0BLC25UR',
1305
+ menuCode: 'SERLCUR 25KS',
1306
+ serviceCode: 'PMS',
1307
+ description: 'CARRY OUT 25,000 KM SERVICE',
1308
+ },
1309
+ ],
1310
+ partLines: [
1311
+ {
1312
+ partNumber: 'T0888083719',
1313
+ qty: 8,
1314
+ menuCode: 'SERLCUR 25KS',
1315
+ partDescription: 'LGMO SN 5W40 208L',
1316
+ },
1317
+ {
1318
+ partNumber: 'T9043012031',
1319
+ qty: 1,
1320
+ menuCode: 'SERLCUR 25KS',
1321
+ partDescription: 'GASKET',
1322
+ },
1323
+ {
1324
+ partNumber: 'T2330050150',
1325
+ qty: 1,
1326
+ menuCode: 'FUEL FILTER LCUR',
1327
+ partDescription: 'FILTER ASSY, FUEL',
1328
+ },
1329
+ {
1330
+ partNumber: 'T04152YZZD4',
1331
+ qty: 1,
1332
+ menuCode: 'SERLCUR 25KS',
1333
+ partDescription: 'ELEMENT KIT, OIL',
1334
+ },
1335
+ ],
1336
+ },
1337
+ {
1338
+ serviceType: 'PM SL (5K, 15K,25K...95K)',
1339
+ serviceDate: '2022-09-10',
1340
+ mileage: 20574,
1341
+ companyName: 'CIHAN',
1342
+ branchName: 'Cihan - Showroom | Erbil - Makhmur Road',
1343
+ companyId: 2,
1344
+ branchId: 14,
1345
+ account: 'CS00022',
1346
+ invoiceNumber: 51441539,
1347
+ wipNumber: 41940,
1348
+ laborLines: [
1349
+ {
1350
+ rtsCode: '0BLC15UR',
1351
+ menuCode: 'SERLCUR 15KS',
1352
+ serviceCode: 'PMS',
1353
+ description: 'CARRY OUT 15,000 KM SERVICE',
1354
+ },
1355
+ {
1356
+ rtsCode: '37099',
1357
+ menuCode: ' ',
1358
+ serviceCode: 'PMS',
1359
+ description: 'GREASING',
1360
+ },
1361
+ ],
1362
+ partLines: [
1363
+ {
1364
+ partNumber: 'T1780138030',
1365
+ qty: 1,
1366
+ menuCode: ' ',
1367
+ partDescription: 'ELEMENT SUB-ASSY,',
1368
+ },
1369
+ {
1370
+ partNumber: 'T0888083719',
1371
+ qty: 8,
1372
+ menuCode: 'SERLCUR 15KS',
1373
+ partDescription: 'LGMO SN 5W40 208L',
1374
+ },
1375
+ {
1376
+ partNumber: 'T9043012031',
1377
+ qty: 1,
1378
+ menuCode: 'SERLCUR 15KS',
1379
+ partDescription: 'GASKET',
1380
+ },
1381
+ {
1382
+ partNumber: 'T04152YZZD4',
1383
+ qty: 1,
1384
+ menuCode: ' ',
1385
+ partDescription: 'ELEMENT KIT, OIL',
1386
+ },
1387
+ ],
1388
+ },
1389
+ {
1390
+ serviceType: 'PM SL (5K, 15K,25K...95K)',
1391
+ serviceDate: '2021-11-27',
1392
+ mileage: 13964,
1393
+ companyName: 'CIHAN',
1394
+ branchName: 'Cihan - Showroom | Erbil - Makhmur Road',
1395
+ companyId: 2,
1396
+ branchId: 14,
1397
+ account: 'CS00022',
1398
+ invoiceNumber: 51431492,
1399
+ wipNumber: 22296,
1400
+ laborLines: [
1401
+ {
1402
+ rtsCode: '0BLC15UR',
1403
+ menuCode: 'SERLCUR 15KS',
1404
+ serviceCode: 'PMS',
1405
+ description: 'CARRY OUT 15,000 KM SERVICE',
1406
+ },
1407
+ ],
1408
+ partLines: [
1409
+ {
1410
+ partNumber: 'T0888083719',
1411
+ qty: 8,
1412
+ menuCode: 'SERLCUR 15KS',
1413
+ partDescription: 'LGMO SN 5W40 208L',
1414
+ },
1415
+ {
1416
+ partNumber: 'T04152YZZD4',
1417
+ qty: 1,
1418
+ menuCode: 'SERLCUR 15KS',
1419
+ partDescription: 'ELEMENT KIT, OIL',
1420
+ },
1421
+ {
1422
+ partNumber: 'T9043012031',
1423
+ qty: 1,
1424
+ menuCode: 'SERLCUR 15KS',
1425
+ partDescription: 'GASKET',
1426
+ },
1427
+ ],
1428
+ },
1429
+ ],
1430
+ ssc: null,
1431
+ vehicleVariantInfo: null,
1432
+ vehicleSpecification: null,
1433
+ serviceItems: null,
1434
+ basicModelCode: null,
1435
+ },
1436
+ JTMABBBJ9P4099243: {
1437
+ vin: 'JTMABBBJ9P4099243',
1438
+ identifiers: {
1439
+ vin: 'JTMABBBJ9P4099243',
1440
+ variant: '53311S3202301',
1441
+ katashiki: 'VJA300L-GNUAZV',
1442
+ color: '070',
1443
+ trim: '40',
1444
+ brand: 0,
1445
+ brandIntegrationID: 'TYT',
1446
+ },
1447
+ saleInformation: {
1448
+ dealerIntegrationID: '1',
1449
+ dealerName: 'SAS',
1450
+ branchIntegrationID: '44',
1451
+ branchName: 'SAS - Showroom | Basra',
1452
+ customerAccount: 'R01954',
1453
+ customerID: '97120',
1454
+ invoiceDate: '2023-09-18',
1455
+ invoiceNumber: 11160168,
1456
+ broker: {
1457
+ brokerId: 539,
1458
+ brokerName: 'Al-Burchman',
1459
+ customerID: 17782,
1460
+ invoiceNumber: 71,
1461
+ invoiceDate: '2023-11-23',
1462
+ },
1463
+ },
1464
+ isAuthorized: true,
1465
+ warranty: {
1466
+ hasActiveWarranty: true,
1467
+ warrantyStartDate: '2023-11-23',
1468
+ warrantyEndDate: '2026-11-23',
1469
+ hasExtendedWarranty: false,
1470
+ extendedWarrantyStartDate: null,
1471
+ extendedWarrantyEndDate: null,
1472
+ },
1473
+ nextServiceDate: '2025-02-19',
1474
+ serviceHistory: [
1475
+ {
1476
+ serviceType: 'SSC Campaign',
1477
+ serviceDate: '2024-11-19',
1478
+ mileage: 12112,
1479
+ companyName: 'SAS',
1480
+ branchName: 'SAS - Showroom | Basra',
1481
+ companyId: 1,
1482
+ branchId: 44,
1483
+ account: 'W00001',
1484
+ invoiceNumber: 54302844,
1485
+ wipNumber: 32325,
1486
+ laborLines: [
1487
+ {
1488
+ rtsCode: 'ZGG79A',
1489
+ menuCode: ' ',
1490
+ serviceCode: 'SSC',
1491
+ description: 'Reprograming',
1492
+ },
1493
+ ],
1494
+ partLines: [],
1495
+ },
1496
+ {
1497
+ serviceType: 'PM SL (5K, 15K,25K...95K)',
1498
+ serviceDate: '2024-11-19',
1499
+ mileage: 12112,
1500
+ companyName: 'SAS',
1501
+ branchName: 'SAS - Showroom | Basra',
1502
+ companyId: 1,
1503
+ branchId: 44,
1504
+ account: 'C00017',
1505
+ invoiceNumber: 54175880,
1506
+ wipNumber: 31762,
1507
+ laborLines: [
1508
+ {
1509
+ rtsCode: '0BLCVJ05',
1510
+ menuCode: 'SERLCVJ 05KS3',
1511
+ serviceCode: 'PMS',
1512
+ description: 'CARRY OUT 5,000 KM SERVICE',
1513
+ },
1514
+ {
1515
+ rtsCode: 'CONSU',
1516
+ menuCode: 'CONS',
1517
+ serviceCode: 'PMS',
1518
+ description: 'Consumables',
1519
+ },
1520
+ ],
1521
+ partLines: [
1522
+ {
1523
+ partNumber: 'T0888083715',
1524
+ qty: 7.3,
1525
+ menuCode: 'SERLCVJ 05KS3',
1526
+ partDescription: 'TGMO SN 5W30 208L',
1527
+ },
1528
+ {
1529
+ partNumber: 'T9043012031',
1530
+ qty: 1,
1531
+ menuCode: 'SERLCVJ 05KS3',
1532
+ partDescription: 'GASKET',
1533
+ },
1534
+ {
1535
+ partNumber: 'T9091510010',
1536
+ qty: 1,
1537
+ menuCode: 'SERLCVJ 05KS3',
1538
+ partDescription: 'FILTER, OIL',
1539
+ },
1540
+ ],
1541
+ },
1542
+ {
1543
+ serviceType: 'SSC Campaign',
1544
+ serviceDate: '2024-09-08',
1545
+ mileage: 9947,
1546
+ companyName: 'SAS',
1547
+ branchName: 'SAS - Showroom | Basra',
1548
+ companyId: 1,
1549
+ branchId: 44,
1550
+ account: 'W00001',
1551
+ invoiceNumber: 54302319,
1552
+ wipNumber: 23978,
1553
+ laborLines: [
1554
+ {
1555
+ rtsCode: 'ZGG04A',
1556
+ menuCode: ' ',
1557
+ serviceCode: 'SSC',
1558
+ description: 'Reprograming for transmission',
1559
+ },
1560
+ ],
1561
+ partLines: [],
1562
+ },
1563
+ {
1564
+ serviceType: 'PM L (10K,30K,50K & 90K)',
1565
+ serviceDate: '2024-09-08',
1566
+ mileage: 9947,
1567
+ companyName: 'SAS',
1568
+ branchName: 'SAS - Showroom | Basra',
1569
+ companyId: 1,
1570
+ branchId: 44,
1571
+ account: 'C00017',
1572
+ invoiceNumber: 54170870,
1573
+ wipNumber: 23814,
1574
+ laborLines: [
1575
+ {
1576
+ rtsCode: 'CONSU',
1577
+ menuCode: 'CONS',
1578
+ serviceCode: 'PML',
1579
+ description: 'Consumables',
1580
+ },
1581
+ {
1582
+ rtsCode: 'BGT44K',
1583
+ menuCode: 'BGT44K',
1584
+ serviceCode: 'PML',
1585
+ description: 'BG 44K Platinum Fuel System Cl',
1586
+ },
1587
+ {
1588
+ rtsCode: '0BLCVJ05',
1589
+ menuCode: 'SERLCVJ 05KS3',
1590
+ serviceCode: 'PML',
1591
+ description: 'CARRY OUT 5,000 KM SERVICE',
1592
+ },
1593
+ ],
1594
+ partLines: [
1595
+ {
1596
+ partNumber: 'ZBG208M3',
1597
+ qty: 1,
1598
+ menuCode: 'BGT44K',
1599
+ partDescription: '44K PLATINUM FUEL & COMBUSTION CLEANER',
1600
+ },
1601
+ {
1602
+ partNumber: 'T9043012031',
1603
+ qty: 1,
1604
+ menuCode: 'SERLCVJ 05KS3',
1605
+ partDescription: 'GASKET',
1606
+ },
1607
+ {
1608
+ partNumber: 'T0888083715',
1609
+ qty: 7.3,
1610
+ menuCode: 'SERLCVJ 05KS3',
1611
+ partDescription: 'TGMO SN 5W30 208L',
1612
+ },
1613
+ {
1614
+ partNumber: 'T9091510010',
1615
+ qty: 1,
1616
+ menuCode: 'SERLCVJ 05KS3',
1617
+ partDescription: 'FILTER, OIL',
1618
+ },
1619
+ ],
1620
+ },
1621
+ {
1622
+ serviceType: 'PM SL (5K, 15K,25K...95K)',
1623
+ serviceDate: '2024-04-16',
1624
+ mileage: 7520,
1625
+ companyName: 'SAS',
1626
+ branchName: 'SAS - Showroom | Basra',
1627
+ companyId: 1,
1628
+ branchId: 44,
1629
+ account: 'C00017',
1630
+ invoiceNumber: 54162502,
1631
+ wipNumber: 64883,
1632
+ laborLines: [
1633
+ {
1634
+ rtsCode: '0BLCVJ05',
1635
+ menuCode: 'SERLCVJ 05KS',
1636
+ serviceCode: 'PMS',
1637
+ description: 'CARRY OUT 5,000 KM SERVICE',
1638
+ },
1639
+ {
1640
+ rtsCode: 'PDRINSP',
1641
+ menuCode: ' ',
1642
+ serviceCode: 'PMS',
1643
+ description: 'SMW1',
1644
+ },
1645
+ {
1646
+ rtsCode: 'CONSU',
1647
+ menuCode: ' ',
1648
+ serviceCode: 'PMS',
1649
+ description: 'Consumables',
1650
+ },
1651
+ ],
1652
+ partLines: [
1653
+ {
1654
+ partNumber: 'T9043012031',
1655
+ qty: 1,
1656
+ menuCode: 'SERLCVJ 05KS',
1657
+ partDescription: 'GASKET',
1658
+ },
1659
+ {
1660
+ partNumber: 'T9091510010',
1661
+ qty: 1,
1662
+ menuCode: 'SERLCVJ 05KS',
1663
+ partDescription: 'FILTER, OIL',
1664
+ },
1665
+ {
1666
+ partNumber: 'T0888083719',
1667
+ qty: 7.3,
1668
+ menuCode: 'SERLCVJ 05KS',
1669
+ partDescription: 'LGMO SN 5W40 208L',
1670
+ },
1671
+ ],
1672
+ },
1673
+ {
1674
+ serviceType: 'SSC Campaign',
1675
+ serviceDate: '2024-01-31',
1676
+ mileage: 5210,
1677
+ companyName: 'SAS',
1678
+ branchName: 'SAS - Showroom | Basra',
1679
+ companyId: 1,
1680
+ branchId: 44,
1681
+ account: 'W00001',
1682
+ invoiceNumber: 54301537,
1683
+ wipNumber: 58888,
1684
+ laborLines: [
1685
+ {
1686
+ rtsCode: 'YHG14A',
1687
+ menuCode: ' ',
1688
+ serviceCode: 'SSC',
1689
+ description: 'Deliver second smart key',
1690
+ },
1691
+ ],
1692
+ partLines: [
1693
+ {
1694
+ partNumber: 'T0400299102',
1695
+ qty: 1,
1696
+ menuCode: ' ',
1697
+ partDescription: 'TRANSMITTER',
1698
+ },
1699
+ ],
1700
+ },
1701
+ {
1702
+ serviceType: 'PM SL (5K, 15K,25K...95K)',
1703
+ serviceDate: '2024-01-31',
1704
+ mileage: 5210,
1705
+ companyName: 'SAS',
1706
+ branchName: 'SAS - Showroom | Basra',
1707
+ companyId: 1,
1708
+ branchId: 44,
1709
+ account: 'S00031',
1710
+ invoiceNumber: 54158983,
1711
+ wipNumber: 58782,
1712
+ laborLines: [
1713
+ {
1714
+ rtsCode: '0BLCVJ05',
1715
+ menuCode: 'SERLCVJ 05KS3',
1716
+ serviceCode: 'PMS',
1717
+ description: 'CARRY OUT 5,000 KM SERVICE',
1718
+ },
1719
+ ],
1720
+ partLines: [
1721
+ {
1722
+ partNumber: 'T9091510010',
1723
+ qty: 1,
1724
+ menuCode: 'SERLCVJ 05KS3',
1725
+ partDescription: 'FILTER, OIL',
1726
+ },
1727
+ {
1728
+ partNumber: 'T9043012031',
1729
+ qty: 1,
1730
+ menuCode: 'SERLCVJ 05KS3',
1731
+ partDescription: 'GASKET',
1732
+ },
1733
+ {
1734
+ partNumber: 'T0888083715',
1735
+ qty: 7.3,
1736
+ menuCode: 'SERLCVJ 05KS3',
1737
+ partDescription: 'TGMO SN 5W30 208L',
1738
+ },
1739
+ ],
1740
+ },
1741
+ {
1742
+ serviceType: 'Fist Service (1000 KM)',
1743
+ serviceDate: '2023-11-28',
1744
+ mileage: 2165,
1745
+ companyName: 'SAS',
1746
+ branchName: 'SAS - Showroom | Basra',
1747
+ companyId: 1,
1748
+ branchId: 44,
1749
+ account: 'Z00244',
1750
+ invoiceNumber: 54156124,
1751
+ wipNumber: 54143,
1752
+ laborLines: [
1753
+ {
1754
+ rtsCode: '0F1110',
1755
+ menuCode: ' ',
1756
+ serviceCode: 'FSR',
1757
+ description: 'First Service(1000 KM)',
1758
+ },
1759
+ ],
1760
+ partLines: [],
1761
+ },
1762
+ ],
1763
+ ssc: [
1764
+ {
1765
+ sscCode: '23SD-024',
1766
+ description: '2nd Electircal Key',
1767
+ opCode: 'YHG14A',
1768
+ repaired: true,
1769
+ repairDate: '2024-01-31',
1770
+ parts: [
1771
+ {
1772
+ partNumber: '0400299102',
1773
+ partDescription: null,
1774
+ isAvailable: false,
1775
+ },
1776
+ {
1777
+ partNumber: '0400249102',
1778
+ partDescription: null,
1779
+ isAvailable: true,
1780
+ },
1781
+ ],
1782
+ },
1783
+ {
1784
+ sscCode: '24SD-004',
1785
+ description: 'Automatic Transmission ECU reprogramming',
1786
+ opCode: 'ZGG04A',
1787
+ repaired: true,
1788
+ repairDate: '2024-09-08',
1789
+ parts: [],
1790
+ },
1791
+ {
1792
+ sscCode: '24SD-095',
1793
+ description: 'Engine ECU Cooling Fan Reprogramming',
1794
+ opCode: 'ZGG79A',
1795
+ repaired: true,
1796
+ repairDate: '2024-11-19',
1797
+ parts: [],
1798
+ },
1799
+ ],
1800
+ vehicleVariantInfo: {
1801
+ modelCode: '53311',
1802
+ sfx: 'S3',
1803
+ modelYear: 2023,
1804
+ },
1805
+ vehicleSpecification: {
1806
+ modelDesc: 'LAND CRUISER 3.5 LC300',
1807
+ variantDesc: '3.5L Turbo AX HIGH/Plus',
1808
+ class: 'P',
1809
+ bodyType: ' ',
1810
+ engine: ' 3500 ',
1811
+ cylinders: ' 0 ',
1812
+ lightHeavy: ' ',
1813
+ doors: ' 5 ',
1814
+ fuel: 'P',
1815
+ transmission: 'Automatic',
1816
+ side: '1',
1817
+ engineType: ' ',
1818
+ tankCap: ' 0 ',
1819
+ style: 'SUV',
1820
+ fuelLiter: null,
1821
+ color: 'WHITE PEARL CS',
1822
+ trim: 'DK.GRAY/OAK/Beige',
1823
+ },
1824
+ serviceItems: [
1825
+ {
1826
+ name: '1,000 KM Free Service',
1827
+ description: '',
1828
+ title: '1,000 KM Free Service',
1829
+ image: '',
1830
+ type: 'free',
1831
+ typeEnum: 0,
1832
+ activatedAt: '2023-11-23',
1833
+ expiresAt: '2024-02-23',
1834
+ status: 'expired',
1835
+ statusEnum: 1,
1836
+ campaignCode: null,
1837
+ menuCode: null,
1838
+ redeemDate: null,
1839
+ modelCostID: null,
1840
+ toyotaLoyaltyProgramRedeemableItemID: 82,
1841
+ tlpPackageInvoiceTLPItemID: null,
1842
+ dealerIntegrationID: null,
1843
+ dealerName: null,
1844
+ invoiceNumber: null,
1845
+ wip: null,
1846
+ maximumMileage: 1000,
1847
+ skipZeroTrust: true,
1848
+ activeFor: 3,
1849
+ activeForInterval: 'Months',
1850
+ },
1851
+ {
1852
+ name: '5,000 KM Free Service',
1853
+ description: '',
1854
+ title: '5,000 KM Free Service',
1855
+ image: '',
1856
+ type: 'free',
1857
+ typeEnum: 0,
1858
+ activatedAt: '2024-02-23',
1859
+ expiresAt: '2024-05-23',
1860
+ status: 'processed',
1861
+ statusEnum: 0,
1862
+ campaignCode: null,
1863
+ menuCode: null,
1864
+ redeemDate: '2024-01-31T19:22:26.747',
1865
+ modelCostID: null,
1866
+ toyotaLoyaltyProgramRedeemableItemID: 81,
1867
+ tlpPackageInvoiceTLPItemID: null,
1868
+ dealerIntegrationID: '1',
1869
+ dealerName: 'SAS',
1870
+ invoiceNumber: '54158983',
1871
+ wip: '58782',
1872
+ maximumMileage: 5000,
1873
+ skipZeroTrust: false,
1874
+ activeFor: 3,
1875
+ activeForInterval: 'Months',
1876
+ },
1877
+ ],
1878
+ basicModelCode: 'VJA300',
1879
+ },
1880
+ JTMHU09J6E4100543: {
1881
+ vin: 'JTMHU09J6E4100543',
1882
+ identifiers: {
1883
+ vin: 'JTMHU09J6E4100543',
1884
+ variant: null,
1885
+ katashiki: null,
1886
+ color: null,
1887
+ trim: null,
1888
+ brand: 0,
1889
+ brandIntegrationID: null,
1890
+ },
1891
+ saleInformation: null,
1892
+ isAuthorized: false,
1893
+ warranty: null,
1894
+ nextServiceDate: '2025-02-19',
1895
+ serviceHistory: [
1896
+ {
1897
+ serviceType: 'PM SL (5K, 15K,25K...95K)',
1898
+ serviceDate: '2024-11-19',
1899
+ mileage: 55005,
1900
+ companyName: 'SAS',
1901
+ branchName: 'SAS - Showroom | Basra',
1902
+ companyId: 1,
1903
+ branchId: 44,
1904
+ account: 'C00017',
1905
+ invoiceNumber: 54175877,
1906
+ wipNumber: 32299,
1907
+ laborLines: [
1908
+ {
1909
+ rtsCode: '0BLC55GR',
1910
+ menuCode: 'SERLCGR 55KS',
1911
+ serviceCode: 'PMS',
1912
+ description: 'CARRY OUT 55,000 KM SERVICE',
1913
+ },
1914
+ {
1915
+ rtsCode: 'CONSU',
1916
+ menuCode: ' ',
1917
+ serviceCode: 'PMS',
1918
+ description: 'Consumables',
1919
+ },
1920
+ ],
1921
+ partLines: [
1922
+ {
1923
+ partNumber: 'T9043012031',
1924
+ qty: 1,
1925
+ menuCode: 'SERLCGR 55KS',
1926
+ partDescription: 'GASKET',
1927
+ },
1928
+ {
1929
+ partNumber: 'T04152YZZD5',
1930
+ qty: 1,
1931
+ menuCode: 'SERLCGR 55KS',
1932
+ partDescription: 'ELEMENT KIT, OIL',
1933
+ },
1934
+ {
1935
+ partNumber: 'T0888083719',
1936
+ qty: 6.5,
1937
+ menuCode: 'SERLCGR 55KS',
1938
+ partDescription: 'LGMO SN 5W40 208L',
1939
+ },
1940
+ ],
1941
+ },
1942
+ {
1943
+ serviceType: 'Value Added Services',
1944
+ serviceDate: '2024-11-19',
1945
+ mileage: 55005,
1946
+ companyName: 'SAS',
1947
+ branchName: 'SAS - Showroom | Basra',
1948
+ companyId: 1,
1949
+ branchId: 44,
1950
+ account: 'W00016',
1951
+ invoiceNumber: 54175876,
1952
+ wipNumber: 32299,
1953
+ laborLines: [
1954
+ {
1955
+ rtsCode: 'BGT44K',
1956
+ menuCode: 'BGT44K',
1957
+ serviceCode: 'VAS',
1958
+ description: 'BG 44K Platinum Fuel System Cl',
1959
+ },
1960
+ ],
1961
+ partLines: [
1962
+ {
1963
+ partNumber: 'ZBG208M',
1964
+ qty: 1,
1965
+ menuCode: 'BGT44K',
1966
+ partDescription: '44K PLATINUM FUEL & COMBUSTION CLEANER',
1967
+ },
1968
+ ],
1969
+ },
1970
+ {
1971
+ serviceType: 'PM SL (5K, 15K,25K...95K)',
1972
+ serviceDate: '2024-06-02',
1973
+ mileage: 49380,
1974
+ companyName: 'SAS',
1975
+ branchName: 'SAS - Showroom | Basra',
1976
+ companyId: 1,
1977
+ branchId: 44,
1978
+ account: 'C00017',
1979
+ invoiceNumber: 54165039,
1980
+ wipNumber: 13946,
1981
+ laborLines: [
1982
+ {
1983
+ rtsCode: '002889Z',
1984
+ menuCode: ' ',
1985
+ serviceCode: 'PMS',
1986
+ description: 'CAR COOLER OR AIR CONDITIONER',
1987
+ },
1988
+ {
1989
+ rtsCode: '0BLC05GR',
1990
+ menuCode: 'SERLCGR 05KS',
1991
+ serviceCode: 'PMS',
1992
+ description: 'CARRY OUT 5,000 KM SERVICE',
1993
+ },
1994
+ {
1995
+ rtsCode: 'CONSU',
1996
+ menuCode: 'CONS',
1997
+ serviceCode: 'PMS',
1998
+ description: 'Consumables',
1999
+ },
2000
+ {
2001
+ rtsCode: '32299',
2002
+ menuCode: ' ',
2003
+ serviceCode: 'PMS',
2004
+ description: 'CHK FOR REAR A/C IS LESS COOLI',
2005
+ },
2006
+ ],
2007
+ partLines: [
2008
+ {
2009
+ partNumber: 'Z09300',
2010
+ qty: 900,
2011
+ menuCode: ' ',
2012
+ partDescription: null,
2013
+ },
2014
+ {
2015
+ partNumber: 'T8713952040',
2016
+ qty: 1,
2017
+ menuCode: ' ',
2018
+ partDescription: 'ELEMENT, AIR REFINER',
2019
+ },
2020
+ {
2021
+ partNumber: 'T1780138030',
2022
+ qty: 1,
2023
+ menuCode: ' ',
2024
+ partDescription: 'ELEMENT SUB-ASSY,',
2025
+ },
2026
+ {
2027
+ partNumber: 'T9043012031',
2028
+ qty: 1,
2029
+ menuCode: 'SERLCGR 05KS',
2030
+ partDescription: 'GASKET',
2031
+ },
2032
+ {
2033
+ partNumber: 'T04152YZZD5',
2034
+ qty: 1,
2035
+ menuCode: 'SERLCGR 05KS',
2036
+ partDescription: 'ELEMENT KIT, OIL',
2037
+ },
2038
+ {
2039
+ partNumber: 'T0888083719',
2040
+ qty: 6.5,
2041
+ menuCode: 'SERLCGR 05KS',
2042
+ partDescription: 'LGMO SN 5W40 208L',
2043
+ },
2044
+ ],
2045
+ },
2046
+ {
2047
+ serviceType: 'PM SL (5K, 15K,25K...95K)',
2048
+ serviceDate: '2024-02-07',
2049
+ mileage: 46366,
2050
+ companyName: 'SAS',
2051
+ branchName: 'SAS - Showroom | Basra',
2052
+ companyId: 1,
2053
+ branchId: 44,
2054
+ account: 'C00017',
2055
+ invoiceNumber: 54159267,
2056
+ wipNumber: 59455,
2057
+ laborLines: [
2058
+ {
2059
+ rtsCode: '0BLC05GR',
2060
+ menuCode: 'SERLCGR 05KS3',
2061
+ serviceCode: 'PMS',
2062
+ description: 'CARRY OUT 5,000 KM SERVICE',
2063
+ },
2064
+ {
2065
+ rtsCode: 'CONSU',
2066
+ menuCode: ' ',
2067
+ serviceCode: 'PMS',
2068
+ description: 'Consumables',
2069
+ },
2070
+ ],
2071
+ partLines: [
2072
+ {
2073
+ partNumber: 'T0888083715',
2074
+ qty: 6.5,
2075
+ menuCode: 'SERLCGR 05KS3',
2076
+ partDescription: 'TGMO SN 5W30 208L',
2077
+ },
2078
+ {
2079
+ partNumber: 'T04152YZZD5',
2080
+ qty: 1,
2081
+ menuCode: 'SERLCGR 05KS3',
2082
+ partDescription: 'ELEMENT KIT, OIL',
2083
+ },
2084
+ {
2085
+ partNumber: 'T9043012031',
2086
+ qty: 1,
2087
+ menuCode: 'SERLCGR 05KS3',
2088
+ partDescription: 'GASKET',
2089
+ },
2090
+ ],
2091
+ },
2092
+ ],
2093
+ ssc: null,
2094
+ vehicleVariantInfo: null,
2095
+ vehicleSpecification: null,
2096
+ serviceItems: null,
2097
+ basicModelCode: null,
2098
+ },
2099
+ JTMABBBJ9P4099200: {
2100
+ vin: 'JTMABBBJ9P4099200',
2101
+ identifiers: {
2102
+ vin: 'JTMABBBJ9P4099243',
2103
+ variant: '53311S3202301',
2104
+ katashiki: 'VJA300L-GNUAZV',
2105
+ color: '070',
2106
+ trim: '40',
2107
+ brand: 0,
2108
+ brandIntegrationID: 'TYT',
2109
+ },
2110
+ saleInformation: {
2111
+ dealerIntegrationID: '1',
2112
+ dealerName: 'SAS',
2113
+ branchIntegrationID: '44',
2114
+ branchName: 'SAS - Showroom | Basra',
2115
+ customerAccount: 'R01954',
2116
+ customerID: '97120',
2117
+ invoiceDate: '2023-09-18',
2118
+ invoiceNumber: 11160168,
2119
+ broker: {
2120
+ brokerId: 539,
2121
+ brokerName: 'Al-Burchman',
2122
+ customerID: 17782,
2123
+ invoiceNumber: 71,
2124
+ invoiceDate: '2023-11-23',
2125
+ },
2126
+ },
2127
+ isAuthorized: false,
2128
+ warranty: {
2129
+ hasActiveWarranty: true,
2130
+ warrantyStartDate: '2023-11-23',
2131
+ warrantyEndDate: '2026-11-23',
2132
+ hasExtendedWarranty: false,
2133
+ extendedWarrantyStartDate: null,
2134
+ extendedWarrantyEndDate: null,
2135
+ },
2136
+ nextServiceDate: '2025-02-19',
2137
+ serviceHistory: [
2138
+ {
2139
+ serviceType: 'SSC Campaign',
2140
+ serviceDate: '2024-11-19',
2141
+ mileage: 12112,
2142
+ companyName: 'SAS',
2143
+ branchName: 'SAS - Showroom | Basra',
2144
+ companyId: 1,
2145
+ branchId: 44,
2146
+ account: 'W00001',
2147
+ invoiceNumber: 54302844,
2148
+ wipNumber: 32325,
2149
+ laborLines: [
2150
+ {
2151
+ rtsCode: 'ZGG79A',
2152
+ menuCode: ' ',
2153
+ serviceCode: 'SSC',
2154
+ description: 'Reprograming',
2155
+ },
2156
+ ],
2157
+ partLines: [],
2158
+ },
2159
+ {
2160
+ serviceType: 'PM SL (5K, 15K,25K...95K)',
2161
+ serviceDate: '2024-11-19',
2162
+ mileage: 12112,
2163
+ companyName: 'SAS',
2164
+ branchName: 'SAS - Showroom | Basra',
2165
+ companyId: 1,
2166
+ branchId: 44,
2167
+ account: 'C00017',
2168
+ invoiceNumber: 54175880,
2169
+ wipNumber: 31762,
2170
+ laborLines: [
2171
+ {
2172
+ rtsCode: '0BLCVJ05',
2173
+ menuCode: 'SERLCVJ 05KS3',
2174
+ serviceCode: 'PMS',
2175
+ description: 'CARRY OUT 5,000 KM SERVICE',
2176
+ },
2177
+ {
2178
+ rtsCode: 'CONSU',
2179
+ menuCode: 'CONS',
2180
+ serviceCode: 'PMS',
2181
+ description: 'Consumables',
2182
+ },
2183
+ ],
2184
+ partLines: [
2185
+ {
2186
+ partNumber: 'T0888083715',
2187
+ qty: 7.3,
2188
+ menuCode: 'SERLCVJ 05KS3',
2189
+ partDescription: 'TGMO SN 5W30 208L',
2190
+ },
2191
+ {
2192
+ partNumber: 'T9043012031',
2193
+ qty: 1,
2194
+ menuCode: 'SERLCVJ 05KS3',
2195
+ partDescription: 'GASKET',
2196
+ },
2197
+ {
2198
+ partNumber: 'T9091510010',
2199
+ qty: 1,
2200
+ menuCode: 'SERLCVJ 05KS3',
2201
+ partDescription: 'FILTER, OIL',
2202
+ },
2203
+ ],
2204
+ },
2205
+ {
2206
+ serviceType: 'SSC Campaign',
2207
+ serviceDate: '2024-09-08',
2208
+ mileage: 9947,
2209
+ companyName: 'SAS',
2210
+ branchName: 'SAS - Showroom | Basra',
2211
+ companyId: 1,
2212
+ branchId: 44,
2213
+ account: 'W00001',
2214
+ invoiceNumber: 54302319,
2215
+ wipNumber: 23978,
2216
+ laborLines: [
2217
+ {
2218
+ rtsCode: 'ZGG04A',
2219
+ menuCode: ' ',
2220
+ serviceCode: 'SSC',
2221
+ description: 'Reprograming for transmission',
2222
+ },
2223
+ ],
2224
+ partLines: [],
2225
+ },
2226
+ {
2227
+ serviceType: 'PM L (10K,30K,50K & 90K)',
2228
+ serviceDate: '2024-09-08',
2229
+ mileage: 9947,
2230
+ companyName: 'SAS',
2231
+ branchName: 'SAS - Showroom | Basra',
2232
+ companyId: 1,
2233
+ branchId: 44,
2234
+ account: 'C00017',
2235
+ invoiceNumber: 54170870,
2236
+ wipNumber: 23814,
2237
+ laborLines: [
2238
+ {
2239
+ rtsCode: 'CONSU',
2240
+ menuCode: 'CONS',
2241
+ serviceCode: 'PML',
2242
+ description: 'Consumables',
2243
+ },
2244
+ {
2245
+ rtsCode: 'BGT44K',
2246
+ menuCode: 'BGT44K',
2247
+ serviceCode: 'PML',
2248
+ description: 'BG 44K Platinum Fuel System Cl',
2249
+ },
2250
+ {
2251
+ rtsCode: '0BLCVJ05',
2252
+ menuCode: 'SERLCVJ 05KS3',
2253
+ serviceCode: 'PML',
2254
+ description: 'CARRY OUT 5,000 KM SERVICE',
2255
+ },
2256
+ ],
2257
+ partLines: [
2258
+ {
2259
+ partNumber: 'ZBG208M3',
2260
+ qty: 1,
2261
+ menuCode: 'BGT44K',
2262
+ partDescription: '44K PLATINUM FUEL & COMBUSTION CLEANER',
2263
+ },
2264
+ {
2265
+ partNumber: 'T9043012031',
2266
+ qty: 1,
2267
+ menuCode: 'SERLCVJ 05KS3',
2268
+ partDescription: 'GASKET',
2269
+ },
2270
+ {
2271
+ partNumber: 'T0888083715',
2272
+ qty: 7.3,
2273
+ menuCode: 'SERLCVJ 05KS3',
2274
+ partDescription: 'TGMO SN 5W30 208L',
2275
+ },
2276
+ {
2277
+ partNumber: 'T9091510010',
2278
+ qty: 1,
2279
+ menuCode: 'SERLCVJ 05KS3',
2280
+ partDescription: 'FILTER, OIL',
2281
+ },
2282
+ ],
2283
+ },
2284
+ {
2285
+ serviceType: 'PM SL (5K, 15K,25K...95K)',
2286
+ serviceDate: '2024-04-16',
2287
+ mileage: 7520,
2288
+ companyName: 'SAS',
2289
+ branchName: 'SAS - Showroom | Basra',
2290
+ companyId: 1,
2291
+ branchId: 44,
2292
+ account: 'C00017',
2293
+ invoiceNumber: 54162502,
2294
+ wipNumber: 64883,
2295
+ laborLines: [
2296
+ {
2297
+ rtsCode: '0BLCVJ05',
2298
+ menuCode: 'SERLCVJ 05KS',
2299
+ serviceCode: 'PMS',
2300
+ description: 'CARRY OUT 5,000 KM SERVICE',
2301
+ },
2302
+ {
2303
+ rtsCode: 'PDRINSP',
2304
+ menuCode: ' ',
2305
+ serviceCode: 'PMS',
2306
+ description: 'SMW1',
2307
+ },
2308
+ {
2309
+ rtsCode: 'CONSU',
2310
+ menuCode: ' ',
2311
+ serviceCode: 'PMS',
2312
+ description: 'Consumables',
2313
+ },
2314
+ ],
2315
+ partLines: [
2316
+ {
2317
+ partNumber: 'T9043012031',
2318
+ qty: 1,
2319
+ menuCode: 'SERLCVJ 05KS',
2320
+ partDescription: 'GASKET',
2321
+ },
2322
+ {
2323
+ partNumber: 'T9091510010',
2324
+ qty: 1,
2325
+ menuCode: 'SERLCVJ 05KS',
2326
+ partDescription: 'FILTER, OIL',
2327
+ },
2328
+ {
2329
+ partNumber: 'T0888083719',
2330
+ qty: 7.3,
2331
+ menuCode: 'SERLCVJ 05KS',
2332
+ partDescription: 'LGMO SN 5W40 208L',
2333
+ },
2334
+ ],
2335
+ },
2336
+ {
2337
+ serviceType: 'SSC Campaign',
2338
+ serviceDate: '2024-01-31',
2339
+ mileage: 5210,
2340
+ companyName: 'SAS',
2341
+ branchName: 'SAS - Showroom | Basra',
2342
+ companyId: 1,
2343
+ branchId: 44,
2344
+ account: 'W00001',
2345
+ invoiceNumber: 54301537,
2346
+ wipNumber: 58888,
2347
+ laborLines: [
2348
+ {
2349
+ rtsCode: 'YHG14A',
2350
+ menuCode: ' ',
2351
+ serviceCode: 'SSC',
2352
+ description: 'Deliver second smart key',
2353
+ },
2354
+ ],
2355
+ partLines: [
2356
+ {
2357
+ partNumber: 'T0400299102',
2358
+ qty: 1,
2359
+ menuCode: ' ',
2360
+ partDescription: 'TRANSMITTER',
2361
+ },
2362
+ ],
2363
+ },
2364
+ {
2365
+ serviceType: 'PM SL (5K, 15K,25K...95K)',
2366
+ serviceDate: '2024-01-31',
2367
+ mileage: 5210,
2368
+ companyName: 'SAS',
2369
+ branchName: 'SAS - Showroom | Basra',
2370
+ companyId: 1,
2371
+ branchId: 44,
2372
+ account: 'S00031',
2373
+ invoiceNumber: 54158983,
2374
+ wipNumber: 58782,
2375
+ laborLines: [
2376
+ {
2377
+ rtsCode: '0BLCVJ05',
2378
+ menuCode: 'SERLCVJ 05KS3',
2379
+ serviceCode: 'PMS',
2380
+ description: 'CARRY OUT 5,000 KM SERVICE',
2381
+ },
2382
+ ],
2383
+ partLines: [
2384
+ {
2385
+ partNumber: 'T9091510010',
2386
+ qty: 1,
2387
+ menuCode: 'SERLCVJ 05KS3',
2388
+ partDescription: 'FILTER, OIL',
2389
+ },
2390
+ {
2391
+ partNumber: 'T9043012031',
2392
+ qty: 1,
2393
+ menuCode: 'SERLCVJ 05KS3',
2394
+ partDescription: 'GASKET',
2395
+ },
2396
+ {
2397
+ partNumber: 'T0888083715',
2398
+ qty: 7.3,
2399
+ menuCode: 'SERLCVJ 05KS3',
2400
+ partDescription: 'TGMO SN 5W30 208L',
2401
+ },
2402
+ ],
2403
+ },
2404
+ {
2405
+ serviceType: 'Fist Service (1000 KM)',
2406
+ serviceDate: '2023-11-28',
2407
+ mileage: 2165,
2408
+ companyName: 'SAS',
2409
+ branchName: 'SAS - Showroom | Basra',
2410
+ companyId: 1,
2411
+ branchId: 44,
2412
+ account: 'Z00244',
2413
+ invoiceNumber: 54156124,
2414
+ wipNumber: 54143,
2415
+ laborLines: [
2416
+ {
2417
+ rtsCode: '0F1110',
2418
+ menuCode: ' ',
2419
+ serviceCode: 'FSR',
2420
+ description: 'First Service(1000 KM)',
2421
+ },
2422
+ ],
2423
+ partLines: [],
2424
+ },
2425
+ ],
2426
+ ssc: [
2427
+ {
2428
+ sscCode: '23SD-024',
2429
+ description: '2nd Electircal Key',
2430
+ opCode: 'YHG14A',
2431
+ repaired: true,
2432
+ repairDate: '2024-01-31',
2433
+ parts: [
2434
+ {
2435
+ partNumber: '0400299102',
2436
+ partDescription: null,
2437
+ isAvailable: false,
2438
+ },
2439
+ ],
2440
+ },
2441
+ {
2442
+ sscCode: '24SD-004',
2443
+ description: 'Automatic Transmission ECU reprogramming',
2444
+ opCode: 'ZGG04A',
2445
+ repaired: true,
2446
+ repairDate: '2024-09-08',
2447
+ parts: [],
2448
+ },
2449
+ {
2450
+ sscCode: '24SD-095',
2451
+ description: 'Engine ECU Cooling Fan Reprogramming',
2452
+ opCode: 'ZGG79A',
2453
+ repaired: true,
2454
+ repairDate: '2024-11-19',
2455
+ parts: [],
2456
+ },
2457
+ ],
2458
+ vehicleVariantInfo: {
2459
+ modelCode: '53311',
2460
+ sfx: 'S3',
2461
+ modelYear: 2023,
2462
+ },
2463
+ vehicleSpecification: {
2464
+ modelDesc: 'LAND CRUISER 3.5 LC300',
2465
+ variantDesc: '3.5L Turbo AX HIGH/Plus',
2466
+ class: 'P',
2467
+ bodyType: ' ',
2468
+ engine: ' 3500 ',
2469
+ cylinders: ' 0 ',
2470
+ lightHeavy: ' ',
2471
+ doors: ' 5 ',
2472
+ fuel: 'P',
2473
+ transmission: 'Automatic',
2474
+ side: '1',
2475
+ engineType: ' ',
2476
+ tankCap: ' 0 ',
2477
+ style: 'SUV',
2478
+ fuelLiter: null,
2479
+ color: 'WHITE PEARL CS',
2480
+ trim: 'DK.GRAY/OAK/Beige',
2481
+ },
2482
+ serviceItems: [
2483
+ {
2484
+ name: '1,000 KM Free Service',
2485
+ description: '',
2486
+ title: '1,000 KM Free Service',
2487
+ image: '',
2488
+ type: 'free',
2489
+ typeEnum: 0,
2490
+ activatedAt: '2023-11-23',
2491
+ expiresAt: '2024-02-23',
2492
+ status: 'expired',
2493
+ statusEnum: 1,
2494
+ campaignCode: null,
2495
+ menuCode: null,
2496
+ redeemDate: null,
2497
+ modelCostID: null,
2498
+ toyotaLoyaltyProgramRedeemableItemID: 82,
2499
+ tlpPackageInvoiceTLPItemID: null,
2500
+ dealerIntegrationID: null,
2501
+ dealerName: null,
2502
+ invoiceNumber: null,
2503
+ wip: null,
2504
+ maximumMileage: 1000,
2505
+ skipZeroTrust: true,
2506
+ activeFor: 3,
2507
+ activeForInterval: 'Months',
2508
+ },
2509
+ {
2510
+ name: '5,000 KM Free Service',
2511
+ description: '',
2512
+ title: '5,000 KM Free Service',
2513
+ image: '',
2514
+ type: 'free',
2515
+ typeEnum: 0,
2516
+ activatedAt: '2024-02-23',
2517
+ expiresAt: '2024-05-23',
2518
+ status: 'processed',
2519
+ statusEnum: 0,
2520
+ campaignCode: null,
2521
+ menuCode: null,
2522
+ redeemDate: '2024-01-31T19:22:26.747',
2523
+ modelCostID: null,
2524
+ toyotaLoyaltyProgramRedeemableItemID: 81,
2525
+ tlpPackageInvoiceTLPItemID: null,
2526
+ dealerIntegrationID: '1',
2527
+ dealerName: 'SAS',
2528
+ invoiceNumber: '54158983',
2529
+ wip: '58782',
2530
+ maximumMileage: 5000,
2531
+ skipZeroTrust: false,
2532
+ activeFor: 3,
2533
+ activeForInterval: 'Months',
2534
+ },
2535
+ ],
2536
+ basicModelCode: 'VJA300',
2537
+ },
2538
+ JTMABBBJ9P4099294: {
2539
+ vin: 'JTMABBBJ9P4099294',
2540
+ identifiers: {
2541
+ vin: 'JTMABBBJ9P4099294',
2542
+ variant: '53311S3202301',
2543
+ katashiki: 'VJA300L-GNUAZV',
2544
+ color: '070',
2545
+ trim: '40',
2546
+ brand: 0,
2547
+ brandIntegrationID: 'TYT',
2548
+ },
2549
+ saleInformation: {
2550
+ dealerIntegrationID: '1',
2551
+ dealerName: 'SAS',
2552
+ branchIntegrationID: '44',
2553
+ branchName: 'SAS - Showroom | Basra',
2554
+ customerAccount: 'R01954',
2555
+ customerID: '97120',
2556
+ invoiceDate: '2023-09-18',
2557
+ invoiceNumber: 11160168,
2558
+ broker: {
2559
+ brokerId: 539,
2560
+ brokerName: 'Al-Burchman',
2561
+ customerID: null,
2562
+ invoiceNumber: null,
2563
+ invoiceDate: null,
2564
+ },
2565
+ },
2566
+ isAuthorized: true,
2567
+ warranty: {
2568
+ hasActiveWarranty: false,
2569
+ warrantyStartDate: null,
2570
+ warrantyEndDate: null,
2571
+ hasExtendedWarranty: false,
2572
+ extendedWarrantyStartDate: null,
2573
+ extendedWarrantyEndDate: null,
2574
+ },
2575
+ nextServiceDate: '2025-02-19',
2576
+ serviceHistory: [
2577
+ {
2578
+ serviceType: 'SSC Campaign',
2579
+ serviceDate: '2024-11-19',
2580
+ mileage: 12112,
2581
+ companyName: 'SAS',
2582
+ branchName: 'SAS - Showroom | Basra',
2583
+ companyId: 1,
2584
+ branchId: 44,
2585
+ account: 'W00001',
2586
+ invoiceNumber: 54302844,
2587
+ wipNumber: 32325,
2588
+ laborLines: [
2589
+ {
2590
+ rtsCode: 'ZGG79A',
2591
+ menuCode: ' ',
2592
+ serviceCode: 'SSC',
2593
+ description: 'Reprograming',
2594
+ },
2595
+ ],
2596
+ partLines: [],
2597
+ },
2598
+ {
2599
+ serviceType: 'PM SL (5K, 15K,25K...95K)',
2600
+ serviceDate: '2024-11-19',
2601
+ mileage: 12112,
2602
+ companyName: 'SAS',
2603
+ branchName: 'SAS - Showroom | Basra',
2604
+ companyId: 1,
2605
+ branchId: 44,
2606
+ account: 'C00017',
2607
+ invoiceNumber: 54175880,
2608
+ wipNumber: 31762,
2609
+ laborLines: [
2610
+ {
2611
+ rtsCode: '0BLCVJ05',
2612
+ menuCode: 'SERLCVJ 05KS3',
2613
+ serviceCode: 'PMS',
2614
+ description: 'CARRY OUT 5,000 KM SERVICE',
2615
+ },
2616
+ {
2617
+ rtsCode: 'CONSU',
2618
+ menuCode: 'CONS',
2619
+ serviceCode: 'PMS',
2620
+ description: 'Consumables',
2621
+ },
2622
+ ],
2623
+ partLines: [
2624
+ {
2625
+ partNumber: 'T0888083715',
2626
+ qty: 7.3,
2627
+ menuCode: 'SERLCVJ 05KS3',
2628
+ partDescription: 'TGMO SN 5W30 208L',
2629
+ },
2630
+ {
2631
+ partNumber: 'T9043012031',
2632
+ qty: 1,
2633
+ menuCode: 'SERLCVJ 05KS3',
2634
+ partDescription: 'GASKET',
2635
+ },
2636
+ {
2637
+ partNumber: 'T9091510010',
2638
+ qty: 1,
2639
+ menuCode: 'SERLCVJ 05KS3',
2640
+ partDescription: 'FILTER, OIL',
2641
+ },
2642
+ ],
2643
+ },
2644
+ {
2645
+ serviceType: 'SSC Campaign',
2646
+ serviceDate: '2024-09-08',
2647
+ mileage: 9947,
2648
+ companyName: 'SAS',
2649
+ branchName: 'SAS - Showroom | Basra',
2650
+ companyId: 1,
2651
+ branchId: 44,
2652
+ account: 'W00001',
2653
+ invoiceNumber: 54302319,
2654
+ wipNumber: 23978,
2655
+ laborLines: [
2656
+ {
2657
+ rtsCode: 'ZGG04A',
2658
+ menuCode: ' ',
2659
+ serviceCode: 'SSC',
2660
+ description: 'Reprograming for transmission',
2661
+ },
2662
+ ],
2663
+ partLines: [],
2664
+ },
2665
+ {
2666
+ serviceType: 'PM L (10K,30K,50K & 90K)',
2667
+ serviceDate: '2024-09-08',
2668
+ mileage: 9947,
2669
+ companyName: 'SAS',
2670
+ branchName: 'SAS - Showroom | Basra',
2671
+ companyId: 1,
2672
+ branchId: 44,
2673
+ account: 'C00017',
2674
+ invoiceNumber: 54170870,
2675
+ wipNumber: 23814,
2676
+ laborLines: [
2677
+ {
2678
+ rtsCode: 'CONSU',
2679
+ menuCode: 'CONS',
2680
+ serviceCode: 'PML',
2681
+ description: 'Consumables',
2682
+ },
2683
+ {
2684
+ rtsCode: 'BGT44K',
2685
+ menuCode: 'BGT44K',
2686
+ serviceCode: 'PML',
2687
+ description: 'BG 44K Platinum Fuel System Cl',
2688
+ },
2689
+ {
2690
+ rtsCode: '0BLCVJ05',
2691
+ menuCode: 'SERLCVJ 05KS3',
2692
+ serviceCode: 'PML',
2693
+ description: 'CARRY OUT 5,000 KM SERVICE',
2694
+ },
2695
+ ],
2696
+ partLines: [
2697
+ {
2698
+ partNumber: 'ZBG208M3',
2699
+ qty: 1,
2700
+ menuCode: 'BGT44K',
2701
+ partDescription: '44K PLATINUM FUEL & COMBUSTION CLEANER',
2702
+ },
2703
+ {
2704
+ partNumber: 'T9043012031',
2705
+ qty: 1,
2706
+ menuCode: 'SERLCVJ 05KS3',
2707
+ partDescription: 'GASKET',
2708
+ },
2709
+ {
2710
+ partNumber: 'T0888083715',
2711
+ qty: 7.3,
2712
+ menuCode: 'SERLCVJ 05KS3',
2713
+ partDescription: 'TGMO SN 5W30 208L',
2714
+ },
2715
+ {
2716
+ partNumber: 'T9091510010',
2717
+ qty: 1,
2718
+ menuCode: 'SERLCVJ 05KS3',
2719
+ partDescription: 'FILTER, OIL',
2720
+ },
2721
+ ],
2722
+ },
2723
+ {
2724
+ serviceType: 'PM SL (5K, 15K,25K...95K)',
2725
+ serviceDate: '2024-04-16',
2726
+ mileage: 7520,
2727
+ companyName: 'SAS',
2728
+ branchName: 'SAS - Showroom | Basra',
2729
+ companyId: 1,
2730
+ branchId: 44,
2731
+ account: 'C00017',
2732
+ invoiceNumber: 54162502,
2733
+ wipNumber: 64883,
2734
+ laborLines: [
2735
+ {
2736
+ rtsCode: '0BLCVJ05',
2737
+ menuCode: 'SERLCVJ 05KS',
2738
+ serviceCode: 'PMS',
2739
+ description: 'CARRY OUT 5,000 KM SERVICE',
2740
+ },
2741
+ {
2742
+ rtsCode: 'PDRINSP',
2743
+ menuCode: ' ',
2744
+ serviceCode: 'PMS',
2745
+ description: 'SMW1',
2746
+ },
2747
+ {
2748
+ rtsCode: 'CONSU',
2749
+ menuCode: ' ',
2750
+ serviceCode: 'PMS',
2751
+ description: 'Consumables',
2752
+ },
2753
+ ],
2754
+ partLines: [
2755
+ {
2756
+ partNumber: 'T9043012031',
2757
+ qty: 1,
2758
+ menuCode: 'SERLCVJ 05KS',
2759
+ partDescription: 'GASKET',
2760
+ },
2761
+ {
2762
+ partNumber: 'T9091510010',
2763
+ qty: 1,
2764
+ menuCode: 'SERLCVJ 05KS',
2765
+ partDescription: 'FILTER, OIL',
2766
+ },
2767
+ {
2768
+ partNumber: 'T0888083719',
2769
+ qty: 7.3,
2770
+ menuCode: 'SERLCVJ 05KS',
2771
+ partDescription: 'LGMO SN 5W40 208L',
2772
+ },
2773
+ ],
2774
+ },
2775
+ {
2776
+ serviceType: 'SSC Campaign',
2777
+ serviceDate: '2024-01-31',
2778
+ mileage: 5210,
2779
+ companyName: 'SAS',
2780
+ branchName: 'SAS - Showroom | Basra',
2781
+ companyId: 1,
2782
+ branchId: 44,
2783
+ account: 'W00001',
2784
+ invoiceNumber: 54301537,
2785
+ wipNumber: 58888,
2786
+ laborLines: [
2787
+ {
2788
+ rtsCode: 'YHG14A',
2789
+ menuCode: ' ',
2790
+ serviceCode: 'SSC',
2791
+ description: 'Deliver second smart key',
2792
+ },
2793
+ ],
2794
+ partLines: [
2795
+ {
2796
+ partNumber: 'T0400299102',
2797
+ qty: 1,
2798
+ menuCode: ' ',
2799
+ partDescription: 'TRANSMITTER',
2800
+ },
2801
+ ],
2802
+ },
2803
+ {
2804
+ serviceType: 'PM SL (5K, 15K,25K...95K)',
2805
+ serviceDate: '2024-01-31',
2806
+ mileage: 5210,
2807
+ companyName: 'SAS',
2808
+ branchName: 'SAS - Showroom | Basra',
2809
+ companyId: 1,
2810
+ branchId: 44,
2811
+ account: 'S00031',
2812
+ invoiceNumber: 54158983,
2813
+ wipNumber: 58782,
2814
+ laborLines: [
2815
+ {
2816
+ rtsCode: '0BLCVJ05',
2817
+ menuCode: 'SERLCVJ 05KS3',
2818
+ serviceCode: 'PMS',
2819
+ description: 'CARRY OUT 5,000 KM SERVICE',
2820
+ },
2821
+ ],
2822
+ partLines: [
2823
+ {
2824
+ partNumber: 'T9091510010',
2825
+ qty: 1,
2826
+ menuCode: 'SERLCVJ 05KS3',
2827
+ partDescription: 'FILTER, OIL',
2828
+ },
2829
+ {
2830
+ partNumber: 'T9043012031',
2831
+ qty: 1,
2832
+ menuCode: 'SERLCVJ 05KS3',
2833
+ partDescription: 'GASKET',
2834
+ },
2835
+ {
2836
+ partNumber: 'T0888083715',
2837
+ qty: 7.3,
2838
+ menuCode: 'SERLCVJ 05KS3',
2839
+ partDescription: 'TGMO SN 5W30 208L',
2840
+ },
2841
+ ],
2842
+ },
2843
+ {
2844
+ serviceType: 'Fist Service (1000 KM)',
2845
+ serviceDate: '2023-11-28',
2846
+ mileage: 2165,
2847
+ companyName: 'SAS',
2848
+ branchName: 'SAS - Showroom | Basra',
2849
+ companyId: 1,
2850
+ branchId: 44,
2851
+ account: 'Z00244',
2852
+ invoiceNumber: 54156124,
2853
+ wipNumber: 54143,
2854
+ laborLines: [
2855
+ {
2856
+ rtsCode: '0F1110',
2857
+ menuCode: ' ',
2858
+ serviceCode: 'FSR',
2859
+ description: 'First Service(1000 KM)',
2860
+ },
2861
+ ],
2862
+ partLines: [],
2863
+ },
2864
+ ],
2865
+ ssc: [
2866
+ {
2867
+ sscCode: '23SD-024',
2868
+ description: '2nd Electircal Key',
2869
+ opCode: 'YHG14A',
2870
+ repaired: true,
2871
+ repairDate: '2024-01-31',
2872
+ parts: [
2873
+ {
2874
+ partNumber: '0400299102',
2875
+ partDescription: null,
2876
+ isAvailable: false,
2877
+ },
2878
+ {
2879
+ partNumber: '0400249102',
2880
+ partDescription: null,
2881
+ isAvailable: true,
2882
+ },
2883
+ ],
2884
+ },
2885
+ {
2886
+ sscCode: '24SD-004',
2887
+ description: 'Automatic Transmission ECU reprogramming',
2888
+ opCode: 'ZGG04A',
2889
+ repaired: true,
2890
+ repairDate: '2024-09-08',
2891
+ parts: [],
2892
+ },
2893
+ {
2894
+ sscCode: '24SD-095',
2895
+ description: 'Engine ECU Cooling Fan Reprogramming',
2896
+ opCode: 'ZGG79A',
2897
+ repaired: true,
2898
+ repairDate: '2024-11-19',
2899
+ parts: [],
2900
+ },
2901
+ ],
2902
+ vehicleVariantInfo: {
2903
+ modelCode: '53311',
2904
+ sfx: 'S3',
2905
+ modelYear: 2023,
2906
+ },
2907
+ vehicleSpecification: {
2908
+ modelDesc: 'LAND CRUISER 3.5 LC300',
2909
+ variantDesc: '3.5L Turbo AX HIGH/Plus',
2910
+ class: 'P',
2911
+ bodyType: ' ',
2912
+ engine: ' 3500 ',
2913
+ cylinders: ' 0 ',
2914
+ lightHeavy: ' ',
2915
+ doors: ' 5 ',
2916
+ fuel: 'P',
2917
+ transmission: 'Automatic',
2918
+ side: '1',
2919
+ engineType: ' ',
2920
+ tankCap: ' 0 ',
2921
+ style: 'SUV',
2922
+ fuelLiter: null,
2923
+ color: 'WHITE PEARL CS',
2924
+ trim: 'DK.GRAY/OAK/Beige',
2925
+ },
2926
+ serviceItems: [
2927
+ {
2928
+ name: '1,000 KM Free Service',
2929
+ description: '',
2930
+ title: '1,000 KM Free Service',
2931
+ image: '',
2932
+ type: 'free',
2933
+ typeEnum: 0,
2934
+ activatedAt: '2023-11-23',
2935
+ expiresAt: '2024-02-23',
2936
+ status: 'expired',
2937
+ statusEnum: 1,
2938
+ campaignCode: null,
2939
+ menuCode: null,
2940
+ redeemDate: null,
2941
+ modelCostID: null,
2942
+ toyotaLoyaltyProgramRedeemableItemID: 82,
2943
+ tlpPackageInvoiceTLPItemID: null,
2944
+ dealerIntegrationID: null,
2945
+ dealerName: null,
2946
+ invoiceNumber: null,
2947
+ wip: null,
2948
+ maximumMileage: 1000,
2949
+ skipZeroTrust: true,
2950
+ activeFor: 3,
2951
+ activeForInterval: 'Months',
2952
+ },
2953
+ {
2954
+ name: '5,000 KM Free Service',
2955
+ description: '',
2956
+ title: '5,000 KM Free Service',
2957
+ image: '',
2958
+ type: 'free',
2959
+ typeEnum: 0,
2960
+ activatedAt: '2024-02-23',
2961
+ expiresAt: '2024-05-23',
2962
+ status: 'processed',
2963
+ statusEnum: 0,
2964
+ campaignCode: null,
2965
+ menuCode: null,
2966
+ redeemDate: '2024-01-31T19:22:26.747',
2967
+ modelCostID: null,
2968
+ toyotaLoyaltyProgramRedeemableItemID: 81,
2969
+ tlpPackageInvoiceTLPItemID: null,
2970
+ dealerIntegrationID: '1',
2971
+ dealerName: 'SAS',
2972
+ invoiceNumber: '54158983',
2973
+ wip: '58782',
2974
+ maximumMileage: 5000,
2975
+ skipZeroTrust: false,
2976
+ activeFor: 3,
2977
+ activeForInterval: 'Months',
2978
+ },
2979
+ ],
2980
+ basicModelCode: 'VJA300',
2981
+ },
2982
+ };