@fleetbase/fleetops-engine 0.6.17 → 0.6.19

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 (1473) hide show
  1. package/addon/components/activity/event-selector.hbs +59 -0
  2. package/addon/components/activity/event-selector.js +82 -0
  3. package/addon/components/activity/form.hbs +62 -0
  4. package/addon/components/activity/form.js +78 -0
  5. package/addon/components/activity/logic-builder.hbs +150 -0
  6. package/addon/components/activity/logic-builder.js +280 -0
  7. package/addon/components/admin/avatar-management.hbs +7 -7
  8. package/addon/components/admin/avatar-management.js +35 -59
  9. package/addon/components/admin/navigator-app.hbs +3 -3
  10. package/addon/components/asset/form.js +3 -0
  11. package/addon/components/avatar-picker.hbs +34 -12
  12. package/addon/components/avatar-picker.js +55 -25
  13. package/addon/components/cell/driver-name.hbs +1 -1
  14. package/addon/components/contact/details.hbs +42 -0
  15. package/addon/components/contact/details.js +3 -0
  16. package/addon/components/contact/form.hbs +89 -0
  17. package/addon/components/contact/form.js +57 -0
  18. package/addon/components/contact/panel-header.hbs +67 -0
  19. package/addon/components/contact/panel-header.js +3 -0
  20. package/addon/components/custom-entity/form.hbs +61 -0
  21. package/addon/components/custom-entity/form.js +90 -0
  22. package/addon/components/customer/admin-settings.hbs +1 -1
  23. package/addon/components/customer/create-order-form.hbs +57 -75
  24. package/addon/components/customer/create-order-form.js +32 -103
  25. package/addon/components/customer/details.hbs +52 -0
  26. package/addon/components/customer/details.js +3 -0
  27. package/addon/components/customer/form.hbs +144 -0
  28. package/addon/components/customer/form.js +109 -0
  29. package/addon/components/customer/leaflet-map.js +3 -0
  30. package/addon/components/customer/order-details.js +3 -0
  31. package/addon/components/customer/order-form.hbs +476 -0
  32. package/addon/components/customer/order-form.js +140 -0
  33. package/addon/components/customer/orders.hbs +2 -2
  34. package/addon/components/customer/orders.js +12 -1
  35. package/addon/components/device/details.hbs +105 -0
  36. package/addon/components/device/details.js +3 -0
  37. package/addon/components/device/form.hbs +194 -0
  38. package/addon/components/device/form.js +13 -0
  39. package/addon/components/display-place.hbs +4 -4
  40. package/addon/components/driver/details.hbs +56 -0
  41. package/addon/components/driver/details.js +3 -0
  42. package/addon/components/driver/form.hbs +171 -0
  43. package/addon/components/driver/form.js +84 -0
  44. package/addon/components/driver/panel-header.hbs +40 -0
  45. package/addon/components/driver/panel-header.js +3 -0
  46. package/addon/components/driver-onboard-settings.hbs +14 -14
  47. package/addon/components/entity/card.hbs +28 -0
  48. package/addon/components/entity/card.js +6 -0
  49. package/addon/components/entity/details.js +3 -0
  50. package/addon/components/entity/form.hbs +86 -0
  51. package/addon/components/entity/form.js +32 -0
  52. package/addon/components/entity-field-editing-settings.hbs +8 -8
  53. package/addon/components/equipment/details.hbs +95 -0
  54. package/addon/components/equipment/details.js +3 -0
  55. package/addon/components/equipment/form.hbs +127 -0
  56. package/addon/components/equipment/form.js +27 -0
  57. package/addon/components/fleet/details.hbs +32 -0
  58. package/addon/components/fleet/details.js +3 -0
  59. package/addon/components/fleet/driver-listing.hbs +81 -0
  60. package/addon/components/fleet/driver-listing.js +77 -0
  61. package/addon/components/fleet/form.hbs +108 -0
  62. package/addon/components/fleet/form.js +20 -0
  63. package/addon/components/fleet/vehicle-listing.hbs +86 -0
  64. package/addon/components/fleet/vehicle-listing.js +76 -0
  65. package/addon/components/fleet-driver-listing.hbs +5 -5
  66. package/addon/components/fleet-panel/details.hbs +13 -13
  67. package/addon/components/fleet-panel/driver-listing.hbs +5 -5
  68. package/addon/components/fleet-panel/vehicle-listing.hbs +5 -5
  69. package/addon/components/fleet-panel/vehicle-listing.js +11 -74
  70. package/addon/components/fleet-vehicle-listing.hbs +5 -5
  71. package/addon/components/fuel-report/details.hbs +48 -0
  72. package/addon/components/fuel-report/details.js +3 -0
  73. package/addon/components/fuel-report/form.hbs +110 -0
  74. package/addon/components/fuel-report/form.js +14 -0
  75. package/addon/components/global-search.hbs +6 -6
  76. package/addon/components/global-search.js +30 -32
  77. package/addon/components/integrated-order-details.hbs +22 -22
  78. package/addon/components/integrated-vendor/details.hbs +34 -0
  79. package/addon/components/integrated-vendor/form.hbs +80 -0
  80. package/addon/components/integrated-vendor/form.js +11 -0
  81. package/addon/components/issue/details.hbs +68 -0
  82. package/addon/components/issue/form.hbs +183 -0
  83. package/addon/components/issue/form.js +3 -0
  84. package/addon/components/layout/fleet-ops-sidebar/driver-listing.hbs +3 -1
  85. package/addon/components/layout/fleet-ops-sidebar/driver-listing.js +96 -100
  86. package/addon/components/layout/fleet-ops-sidebar/fleet-listing.hbs +2 -0
  87. package/addon/components/layout/fleet-ops-sidebar/fleet-listing.js +73 -80
  88. package/addon/components/layout/fleet-ops-sidebar.hbs +31 -1
  89. package/addon/components/layout/fleet-ops-sidebar.js +150 -49
  90. package/addon/components/leaflet-draw-control.js +1 -0
  91. package/addon/components/maintenance/details.hbs +123 -0
  92. package/addon/components/maintenance/details.js +3 -0
  93. package/addon/components/maintenance/form.hbs +174 -0
  94. package/addon/components/maintenance/form.js +18 -0
  95. package/addon/components/map/container.hbs +3 -0
  96. package/addon/components/map/container.js +10 -0
  97. package/addon/components/map/drawer/driver-listing.hbs +11 -0
  98. package/addon/components/map/drawer/driver-listing.js +149 -0
  99. package/addon/components/map/drawer/event-listing.hbs +1 -0
  100. package/addon/components/map/drawer/event-listing.js +3 -0
  101. package/addon/components/map/drawer/place-listing.hbs +11 -0
  102. package/addon/components/map/drawer/place-listing.js +116 -0
  103. package/addon/components/map/drawer/vehicle-listing.hbs +11 -0
  104. package/addon/components/map/drawer/vehicle-listing.js +125 -0
  105. package/addon/components/map/drawer.hbs +5 -0
  106. package/addon/components/map/drawer.js +23 -0
  107. package/addon/components/map/leaflet-live-map.hbs +177 -0
  108. package/addon/components/map/leaflet-live-map.js +437 -0
  109. package/addon/components/map/leaflet-tracking-layer.hbs +1 -0
  110. package/addon/components/map/leaflet-tracking-layer.js +3 -0
  111. package/addon/components/map/order-list-overlay/driver-panel-title.hbs +11 -0
  112. package/addon/components/map/order-list-overlay/driver-panel-title.js +3 -0
  113. package/addon/components/map/order-list-overlay/order.hbs +106 -0
  114. package/addon/components/map/order-list-overlay/order.js +35 -0
  115. package/addon/components/map/order-list-overlay.hbs +176 -0
  116. package/addon/components/map/order-list-overlay.js +8 -0
  117. package/addon/components/map/search.hbs +1 -0
  118. package/addon/components/map/search.js +3 -0
  119. package/addon/components/map/toolbar/visibility-control-panel.hbs +130 -0
  120. package/addon/components/map/toolbar/visibility-control-panel.js +78 -0
  121. package/addon/components/map/toolbar/zones-panel.hbs +55 -0
  122. package/addon/components/map/toolbar/zones-panel.js +24 -0
  123. package/addon/components/map/toolbar.hbs +115 -0
  124. package/addon/components/map/toolbar.js +42 -0
  125. package/addon/components/map.hbs +11 -0
  126. package/addon/components/map.js +3 -0
  127. package/addon/components/modals/assign-driver.hbs +2 -2
  128. package/addon/components/modals/bulk-assign-driver.hbs +1 -1
  129. package/addon/components/modals/clone-config-form.hbs +2 -2
  130. package/addon/components/modals/contact-details.hbs +12 -12
  131. package/addon/components/modals/contact-form.hbs +11 -11
  132. package/addon/components/modals/driver-assign-order.hbs +2 -2
  133. package/addon/components/modals/driver-assign-vehicle.hbs +2 -2
  134. package/addon/components/modals/driver-assign-vendor.hbs +2 -2
  135. package/addon/components/modals/driver-details.hbs +21 -21
  136. package/addon/components/modals/driver-form.hbs +18 -18
  137. package/addon/components/modals/edit-meta-form.hbs +2 -2
  138. package/addon/components/modals/entity-form.hbs +21 -21
  139. package/addon/components/modals/entity-meta-field-prompt.hbs +1 -1
  140. package/addon/components/modals/fleet-details.hbs +12 -12
  141. package/addon/components/modals/fleet-form.hbs +8 -8
  142. package/addon/components/modals/fuel-report-details.hbs +16 -16
  143. package/addon/components/modals/fuel-report-form.hbs +8 -8
  144. package/addon/components/modals/group-details.hbs +4 -4
  145. package/addon/components/modals/group-form.hbs +5 -5
  146. package/addon/components/modals/install-prompt.hbs +2 -2
  147. package/addon/components/modals/issue-details.hbs +16 -16
  148. package/addon/components/modals/issue-from.hbs +21 -21
  149. package/addon/components/modals/map-field-form.hbs +2 -2
  150. package/addon/components/modals/map-field-group-form.hbs +1 -1
  151. package/addon/components/modals/map-layer-form.hbs +10 -10
  152. package/addon/components/modals/meta-field-form.hbs +2 -2
  153. package/addon/components/modals/meta-field-group-form.hbs +1 -1
  154. package/addon/components/modals/new-custom-field-group.hbs +1 -1
  155. package/addon/components/modals/new-order-config.hbs +4 -4
  156. package/addon/components/modals/order-assign-driver.hbs +2 -2
  157. package/addon/components/modals/order-config-new-status.hbs +2 -2
  158. package/addon/components/modals/order-event.hbs +4 -4
  159. package/addon/components/modals/order-form.hbs +12 -12
  160. package/addon/components/modals/order-import.hbs +10 -10
  161. package/addon/components/modals/order-label.hbs +1 -1
  162. package/addon/components/modals/order-meta.hbs +1 -10
  163. package/addon/components/modals/order-new-activity.hbs +10 -10
  164. package/addon/components/modals/order-route-form.hbs +18 -18
  165. package/addon/components/modals/place-assign-vendor.hbs +2 -2
  166. package/addon/components/modals/place-details.hbs +24 -24
  167. package/addon/components/modals/place-form.hbs +1 -44
  168. package/addon/components/modals/point-map.hbs +6 -3
  169. package/addon/components/modals/policy-form.hbs +5 -5
  170. package/addon/components/modals/role-form.hbs +3 -3
  171. package/addon/components/modals/select-payment-method.hbs +1 -1
  172. package/addon/components/modals/service-area-form.hbs +9 -9
  173. package/addon/components/modals/set-password.hbs +5 -5
  174. package/addon/components/modals/uninstall-prompt.hbs +2 -2
  175. package/addon/components/modals/update-order-activity.hbs +88 -0
  176. package/addon/components/modals/update-order-activity.js +51 -0
  177. package/addon/components/modals/user-form.hbs +8 -9
  178. package/addon/components/modals/vehicle-details.hbs +78 -78
  179. package/addon/components/modals/vehicle-form.hbs +74 -74
  180. package/addon/components/modals/vendor-details.hbs +21 -21
  181. package/addon/components/modals/vendor-form.hbs +50 -50
  182. package/addon/components/modals/view-service-area.hbs +1 -1
  183. package/addon/components/modals/zone-form.hbs +8 -8
  184. package/addon/components/order/activity-list.hbs +34 -0
  185. package/addon/components/order/activity-list.js +3 -0
  186. package/addon/components/order/activity-timeline.hbs +33 -0
  187. package/addon/components/order/activity-timeline.js +3 -0
  188. package/addon/components/order/customer-avatar-stack.hbs +21 -0
  189. package/addon/components/order/customer-avatar-stack.js +39 -0
  190. package/addon/components/order/details/activity.hbs +13 -0
  191. package/addon/components/order/details/activity.js +58 -0
  192. package/addon/components/order/details/comments.hbs +3 -0
  193. package/addon/components/order/details/comments.js +3 -0
  194. package/addon/components/order/details/custom-fields.hbs +1 -0
  195. package/addon/components/order/details/custom-fields.js +19 -0
  196. package/addon/components/order/details/detail.hbs +169 -0
  197. package/addon/components/order/details/detail.js +42 -0
  198. package/addon/components/order/details/documents.hbs +76 -0
  199. package/addon/components/order/details/documents.js +64 -0
  200. package/addon/components/order/details/integrated-vendor-details.hbs +5 -0
  201. package/addon/components/order/details/map.hbs +1 -0
  202. package/addon/components/order/details/map.js +3 -0
  203. package/addon/components/order/details/metadata.hbs +3 -0
  204. package/addon/components/order/details/metadata.js +26 -0
  205. package/addon/components/order/details/notes.hbs +43 -0
  206. package/addon/components/order/details/notes.js +42 -0
  207. package/addon/components/order/details/payload.hbs +97 -0
  208. package/addon/components/order/details/payload.js +75 -0
  209. package/addon/components/order/details/proof.hbs +42 -0
  210. package/addon/components/order/details/proof.js +3 -0
  211. package/addon/components/order/details/purchase-rate.hbs +39 -0
  212. package/addon/components/order/details/purchase-rate.js +3 -0
  213. package/addon/components/order/details/route.hbs +26 -0
  214. package/addon/components/order/details/route.js +55 -0
  215. package/addon/components/order/details/tracking.hbs +41 -0
  216. package/addon/components/order/details/tracking.js +21 -0
  217. package/addon/components/order/details.hbs +41 -0
  218. package/addon/components/order/details.js +3 -0
  219. package/addon/components/order/form/custom-fields.hbs +11 -0
  220. package/addon/components/order/form/custom-fields.js +3 -0
  221. package/addon/components/order/form/details.hbs +249 -0
  222. package/addon/components/order/form/details.js +76 -0
  223. package/addon/components/order/form/documents.hbs +76 -0
  224. package/addon/components/order/form/documents.js +64 -0
  225. package/addon/components/order/form/metadata.hbs +5 -0
  226. package/addon/components/order/form/metadata.js +3 -0
  227. package/addon/components/order/form/notes.hbs +11 -0
  228. package/addon/components/order/form/notes.js +3 -0
  229. package/addon/components/order/form/payload.hbs +139 -0
  230. package/addon/components/order/form/payload.js +73 -0
  231. package/addon/components/order/form/route.hbs +283 -0
  232. package/addon/components/order/form/route.js +214 -0
  233. package/addon/components/order/form/service-rate.hbs +109 -0
  234. package/addon/components/order/form/service-rate.js +26 -0
  235. package/addon/components/order/form.hbs +28 -0
  236. package/addon/components/order/form.js +65 -0
  237. package/addon/components/order/header.hbs +12 -12
  238. package/addon/components/order/kanban-card.hbs +85 -0
  239. package/addon/components/order/kanban-card.js +6 -0
  240. package/addon/components/order/kanban.hbs +10 -0
  241. package/addon/components/order/kanban.js +111 -0
  242. package/addon/components/order/panel-header.hbs +36 -0
  243. package/addon/components/order/panel-header.js +3 -0
  244. package/addon/components/order/place-card.hbs +2 -2
  245. package/addon/components/order/route-editor.hbs +192 -0
  246. package/addon/components/order/route-editor.js +233 -0
  247. package/addon/components/order/schedule-card.hbs +10 -10
  248. package/addon/components/order/schedule-card.js +10 -9
  249. package/addon/components/order-config-manager/activity-flow.hbs +1 -1
  250. package/addon/components/order-config-manager/activity-flow.js +47 -46
  251. package/addon/components/order-config-manager/custom-fields.hbs +5 -5
  252. package/addon/components/order-config-manager/custom-fields.js +17 -23
  253. package/addon/components/order-config-manager/details.hbs +10 -10
  254. package/addon/components/order-config-manager/details.js +4 -4
  255. package/addon/components/order-config-manager/entities.hbs +9 -10
  256. package/addon/components/order-config-manager/entities.js +30 -32
  257. package/addon/components/order-config-manager.hbs +1 -1
  258. package/addon/components/order-config-manager.js +25 -24
  259. package/addon/components/order-list-overlay/driver-panel-title.hbs +1 -1
  260. package/addon/components/order-progress-card.hbs +6 -6
  261. package/addon/components/part/details.hbs +108 -0
  262. package/addon/components/part/details.js +3 -0
  263. package/addon/components/part/form.hbs +163 -0
  264. package/addon/components/part/form.js +44 -0
  265. package/addon/components/place/activity.hbs +1 -0
  266. package/addon/components/place/activity.js +3 -0
  267. package/addon/components/place/card.hbs +1 -0
  268. package/addon/components/place/card.js +3 -0
  269. package/addon/components/place/comments.hbs +1 -0
  270. package/addon/components/place/comments.js +3 -0
  271. package/addon/components/place/details.hbs +106 -0
  272. package/addon/components/place/details.js +3 -0
  273. package/addon/components/place/documents.hbs +1 -0
  274. package/addon/components/place/documents.js +3 -0
  275. package/addon/components/place/driver-visits.hbs +1 -0
  276. package/addon/components/place/driver-visits.js +3 -0
  277. package/addon/components/place/form.hbs +60 -0
  278. package/addon/components/place/form.js +15 -0
  279. package/addon/components/place/frequency-map.hbs +1 -0
  280. package/addon/components/place/frequency-map.js +3 -0
  281. package/addon/components/place/map.hbs +1 -0
  282. package/addon/components/place/map.js +3 -0
  283. package/addon/components/place/operations.hbs +1 -0
  284. package/addon/components/place/operations.js +3 -0
  285. package/addon/components/place/performance.hbs +1 -0
  286. package/addon/components/place/performance.js +3 -0
  287. package/addon/components/place/recent-orders.hbs +1 -0
  288. package/addon/components/place/recent-orders.js +3 -0
  289. package/addon/components/place/rules.hbs +1 -0
  290. package/addon/components/place/rules.js +3 -0
  291. package/addon/components/place/service-areas.hbs +1 -0
  292. package/addon/components/place/service-areas.js +3 -0
  293. package/addon/components/route-list.hbs +2 -2
  294. package/addon/components/sensor/details.hbs +108 -0
  295. package/addon/components/sensor/details.js +3 -0
  296. package/addon/components/sensor/form.hbs +114 -0
  297. package/addon/components/sensor/form.js +29 -0
  298. package/addon/components/service-area/details.hbs +43 -0
  299. package/addon/components/service-area/form.hbs +49 -0
  300. package/addon/components/service-area/form.js +3 -0
  301. package/addon/components/service-rate/details.hbs +284 -0
  302. package/addon/components/service-rate/details.js +3 -0
  303. package/addon/components/service-rate/form.hbs +589 -0
  304. package/addon/components/service-rate/form.js +27 -0
  305. package/addon/components/telematic/details.hbs +85 -0
  306. package/addon/components/telematic/details.js +3 -0
  307. package/addon/components/telematic/form.hbs +84 -0
  308. package/addon/components/telematic/form.js +8 -0
  309. package/addon/components/vehicle/card.hbs +29 -0
  310. package/addon/components/vehicle/card.js +6 -0
  311. package/addon/components/vehicle/details.hbs +50 -0
  312. package/addon/components/vehicle/details.js +3 -0
  313. package/addon/components/vehicle/form.hbs +129 -0
  314. package/addon/components/vehicle/form.js +54 -0
  315. package/addon/components/vehicle/panel-header.hbs +79 -0
  316. package/addon/components/vehicle/panel-header.js +3 -0
  317. package/addon/components/vendor/details.hbs +50 -0
  318. package/addon/components/vendor/details.js +3 -0
  319. package/addon/components/vendor/form.hbs +149 -0
  320. package/addon/components/vendor/form.js +52 -0
  321. package/addon/components/warranty/details.hbs +81 -0
  322. package/addon/components/warranty/details.js +3 -0
  323. package/addon/components/warranty/form.hbs +82 -0
  324. package/addon/components/warranty/form.js +3 -0
  325. package/addon/components/widget/fleet-ops-key-metrics.hbs +1 -1
  326. package/addon/components/work-order/details.hbs +93 -0
  327. package/addon/components/work-order/details.js +3 -0
  328. package/addon/components/work-order/form.hbs +113 -0
  329. package/addon/components/work-order/form.js +13 -0
  330. package/addon/components/zone/details.hbs +38 -0
  331. package/addon/components/zone/form.hbs +33 -0
  332. package/addon/components/zone/form.js +3 -0
  333. package/addon/controllers/analytics/reports/index/details.js +24 -0
  334. package/addon/controllers/analytics/reports/index/edit.js +78 -0
  335. package/addon/controllers/analytics/reports/index/new.js +51 -0
  336. package/addon/controllers/analytics/reports/index.js +103 -0
  337. package/addon/controllers/application.js +7 -30
  338. package/addon/controllers/connectivity/devices/index/details/events.js +3 -0
  339. package/addon/controllers/connectivity/devices/index/details/index.js +3 -0
  340. package/addon/controllers/connectivity/devices/index/details.js +3 -0
  341. package/addon/controllers/connectivity/devices/index/edit.js +3 -0
  342. package/addon/controllers/connectivity/devices/index/new.js +32 -0
  343. package/addon/controllers/connectivity/devices/index.js +129 -0
  344. package/addon/controllers/connectivity/events/index/details.js +3 -0
  345. package/addon/controllers/connectivity/events/index.js +91 -0
  346. package/addon/controllers/connectivity/sensors/index/details/index.js +3 -0
  347. package/addon/controllers/connectivity/sensors/index/details.js +3 -0
  348. package/addon/controllers/connectivity/sensors/index/edit.js +3 -0
  349. package/addon/controllers/connectivity/sensors/index/new.js +32 -0
  350. package/addon/controllers/connectivity/sensors/index.js +129 -0
  351. package/addon/controllers/connectivity/telematics/index/details/devices.js +3 -0
  352. package/addon/controllers/connectivity/telematics/index/details/events.js +3 -0
  353. package/addon/controllers/connectivity/telematics/index/details/index.js +3 -0
  354. package/addon/controllers/connectivity/telematics/index/details/sensors.js +3 -0
  355. package/addon/controllers/connectivity/telematics/index/details.js +3 -0
  356. package/addon/controllers/connectivity/telematics/index/edit.js +3 -0
  357. package/addon/controllers/connectivity/telematics/index/new.js +32 -0
  358. package/addon/controllers/connectivity/telematics/index.js +129 -0
  359. package/addon/controllers/connectivity/tracking/index.js +3 -0
  360. package/addon/controllers/maintenance/equipment/index/details/index.js +3 -0
  361. package/addon/controllers/maintenance/equipment/index/details.js +3 -0
  362. package/addon/controllers/maintenance/equipment/index/edit.js +3 -0
  363. package/addon/controllers/maintenance/equipment/index/new.js +3 -0
  364. package/addon/controllers/maintenance/equipment/index.js +129 -0
  365. package/addon/controllers/maintenance/parts/index/details/index.js +3 -0
  366. package/addon/controllers/maintenance/parts/index/details.js +3 -0
  367. package/addon/controllers/maintenance/parts/index/edit.js +3 -0
  368. package/addon/controllers/maintenance/parts/index/new.js +3 -0
  369. package/addon/controllers/maintenance/parts/index.js +129 -0
  370. package/addon/controllers/maintenance/work-orders/index/details/index.js +3 -0
  371. package/addon/controllers/maintenance/work-orders/index/details.js +3 -0
  372. package/addon/controllers/maintenance/work-orders/index/edit.js +3 -0
  373. package/addon/controllers/maintenance/work-orders/index/new.js +3 -0
  374. package/addon/controllers/maintenance/work-orders/index.js +129 -0
  375. package/addon/controllers/management/contacts/customers/details.js +16 -52
  376. package/addon/controllers/management/contacts/customers/edit.js +40 -76
  377. package/addon/controllers/management/contacts/customers/new.js +25 -60
  378. package/addon/controllers/management/contacts/customers.js +137 -167
  379. package/addon/controllers/management/contacts/index/details.js +16 -52
  380. package/addon/controllers/management/contacts/index/edit.js +40 -76
  381. package/addon/controllers/management/contacts/index/new.js +25 -60
  382. package/addon/controllers/management/contacts/index.js +177 -338
  383. package/addon/controllers/management/contacts.js +23 -0
  384. package/addon/controllers/management/drivers/index/details.js +16 -58
  385. package/addon/controllers/management/drivers/index/edit.js +40 -93
  386. package/addon/controllers/management/drivers/index/new.js +25 -83
  387. package/addon/controllers/management/drivers/index.js +267 -500
  388. package/addon/controllers/management/fleets/index/details.js +24 -58
  389. package/addon/controllers/management/fleets/index/edit.js +40 -93
  390. package/addon/controllers/management/fleets/index/new.js +25 -83
  391. package/addon/controllers/management/fleets/index.js +244 -416
  392. package/addon/controllers/management/fuel-reports/index/details.js +15 -59
  393. package/addon/controllers/management/fuel-reports/index/edit.js +40 -93
  394. package/addon/controllers/management/fuel-reports/index/new.js +26 -90
  395. package/addon/controllers/management/fuel-reports/index.js +188 -365
  396. package/addon/controllers/management/issues/index/details.js +16 -51
  397. package/addon/controllers/management/issues/index/edit.js +40 -93
  398. package/addon/controllers/management/issues/index/new.js +25 -89
  399. package/addon/controllers/management/issues/index.js +219 -404
  400. package/addon/controllers/management/places/index/details.js +16 -52
  401. package/addon/controllers/management/places/index/edit.js +40 -93
  402. package/addon/controllers/management/places/index/new.js +25 -83
  403. package/addon/controllers/management/places/index.js +227 -437
  404. package/addon/controllers/management/vehicles/index/details.js +16 -58
  405. package/addon/controllers/management/vehicles/index/edit.js +39 -92
  406. package/addon/controllers/management/vehicles/index/new.js +26 -82
  407. package/addon/controllers/management/vehicles/index.js +268 -465
  408. package/addon/controllers/management/vendors/index/details.js +16 -52
  409. package/addon/controllers/management/vendors/index/edit.js +39 -92
  410. package/addon/controllers/management/vendors/index/new.js +32 -82
  411. package/addon/controllers/management/vendors/index.js +234 -435
  412. package/addon/controllers/management/vendors/integrated/details.js +3 -0
  413. package/addon/controllers/management/vendors/integrated/edit.js +3 -0
  414. package/addon/controllers/management/vendors/integrated/new.js +3 -0
  415. package/addon/controllers/management/vendors/integrated.js +3 -0
  416. package/addon/controllers/operations/orders/index/details/index.js +5 -0
  417. package/addon/controllers/operations/orders/index/details.js +129 -0
  418. package/addon/controllers/operations/orders/index/new.js +69 -1520
  419. package/addon/controllers/operations/orders/index.js +329 -1141
  420. package/addon/controllers/operations/routes/index/new.js +0 -1
  421. package/addon/controllers/operations/scheduler/index.js +5 -5
  422. package/addon/controllers/operations/service-rates/index/details.js +19 -0
  423. package/addon/controllers/operations/service-rates/index/edit.js +60 -28
  424. package/addon/controllers/operations/service-rates/index/new.js +30 -354
  425. package/addon/controllers/operations/service-rates/index.js +122 -218
  426. package/addon/controllers/settings/custom-fields.js +56 -0
  427. package/addon/controllers/settings/routing.js +1 -1
  428. package/addon/engine.js +26 -30
  429. package/addon/helpers/get-fleet-ops-options.js +6 -0
  430. package/addon/helpers/is-model-leaflet-layer-hidden.js +10 -0
  431. package/addon/helpers/point-coordinates.js +1 -1
  432. package/addon/initializers/leaflet-intersects-polyfill.js +23 -0
  433. package/addon/routes/analytics/reports/index/details/index.js +3 -0
  434. package/addon/routes/analytics/reports/index/details/result.js +3 -0
  435. package/addon/routes/analytics/reports/index/details.js +33 -0
  436. package/addon/routes/analytics/reports/index/edit.js +29 -0
  437. package/addon/routes/analytics/reports/index/new.js +3 -0
  438. package/addon/routes/analytics/reports/index.js +21 -0
  439. package/addon/routes/analytics/reports.js +3 -0
  440. package/addon/routes/analytics.js +3 -0
  441. package/addon/routes/application.js +2 -2
  442. package/addon/routes/connectivity/devices/index/details/events.js +3 -0
  443. package/addon/routes/connectivity/devices/index/details/index.js +3 -0
  444. package/addon/routes/connectivity/devices/index/details.js +3 -0
  445. package/addon/routes/connectivity/devices/index/edit.js +3 -0
  446. package/addon/routes/connectivity/devices/index/new.js +3 -0
  447. package/addon/routes/connectivity/devices/index.js +21 -0
  448. package/addon/routes/connectivity/devices.js +3 -0
  449. package/addon/routes/connectivity/events/index/details.js +3 -0
  450. package/addon/routes/connectivity/events/index.js +21 -0
  451. package/addon/routes/connectivity/events.js +3 -0
  452. package/addon/routes/connectivity/sensors/index/details/index.js +3 -0
  453. package/addon/routes/connectivity/sensors/index/details.js +3 -0
  454. package/addon/routes/connectivity/sensors/index/edit.js +3 -0
  455. package/addon/routes/connectivity/sensors/index/new.js +3 -0
  456. package/addon/routes/connectivity/sensors/index.js +21 -0
  457. package/addon/routes/connectivity/sensors.js +3 -0
  458. package/addon/routes/connectivity/telematics/index/details/devices.js +3 -0
  459. package/addon/routes/connectivity/telematics/index/details/events.js +3 -0
  460. package/addon/routes/connectivity/telematics/index/details/index.js +3 -0
  461. package/addon/routes/connectivity/telematics/index/details/sensors.js +3 -0
  462. package/addon/routes/connectivity/telematics/index/details.js +3 -0
  463. package/addon/routes/connectivity/telematics/index/edit.js +3 -0
  464. package/addon/routes/connectivity/telematics/index/new.js +3 -0
  465. package/addon/routes/connectivity/telematics/index.js +21 -0
  466. package/addon/routes/connectivity/telematics.js +3 -0
  467. package/addon/routes/connectivity/tracking/index.js +3 -0
  468. package/addon/routes/connectivity/tracking.js +3 -0
  469. package/addon/routes/connectivity.js +3 -0
  470. package/addon/routes/maintenance/equipment/index/details/index.js +3 -0
  471. package/addon/routes/maintenance/equipment/index/details.js +3 -0
  472. package/addon/routes/maintenance/equipment/index/edit.js +3 -0
  473. package/addon/routes/maintenance/equipment/index/new.js +3 -0
  474. package/addon/routes/maintenance/equipment/index.js +21 -0
  475. package/addon/routes/maintenance/equipment.js +3 -0
  476. package/addon/routes/maintenance/parts/index/details/index.js +3 -0
  477. package/addon/routes/maintenance/parts/index/details.js +3 -0
  478. package/addon/routes/maintenance/parts/index/edit.js +3 -0
  479. package/addon/routes/maintenance/parts/index/new.js +3 -0
  480. package/addon/routes/maintenance/parts/index.js +21 -0
  481. package/addon/routes/maintenance/parts.js +3 -0
  482. package/addon/routes/maintenance/work-orders/index/details/index.js +3 -0
  483. package/addon/routes/maintenance/work-orders/index/details.js +3 -0
  484. package/addon/routes/maintenance/work-orders/index/edit.js +3 -0
  485. package/addon/routes/maintenance/work-orders/index/new.js +3 -0
  486. package/addon/routes/maintenance/work-orders/index.js +21 -0
  487. package/addon/routes/maintenance/work-orders.js +3 -0
  488. package/addon/routes/maintenance.js +3 -0
  489. package/addon/routes/management/contacts/customers/details/index.js +3 -0
  490. package/addon/routes/management/contacts/customers.js +2 -10
  491. package/addon/routes/management/contacts/index/details/index.js +3 -0
  492. package/addon/routes/management/contacts/index.js +1 -1
  493. package/addon/routes/management/drivers/index/details/index.js +3 -0
  494. package/addon/routes/management/drivers/index/details/orders.js +3 -0
  495. package/addon/routes/management/drivers/index/details/schedule.js +3 -0
  496. package/addon/routes/management/fleets/index/details/drivers.js +3 -0
  497. package/addon/routes/management/fleets/index/details/index.js +3 -0
  498. package/addon/routes/management/fleets/index/details/vehicles.js +3 -0
  499. package/addon/routes/management/fuel-reports/index/details/index.js +3 -0
  500. package/addon/routes/management/issues/index/details/index.js +3 -0
  501. package/addon/routes/management/places/index/details/activity.js +3 -0
  502. package/addon/routes/management/places/index/details/comments.js +3 -0
  503. package/addon/routes/management/places/index/details/documents.js +3 -0
  504. package/addon/routes/management/places/index/details/index.js +3 -0
  505. package/addon/routes/management/places/index/details/map.js +3 -0
  506. package/addon/routes/management/places/index/details/operations.js +3 -0
  507. package/addon/routes/management/places/index/details/performance.js +3 -0
  508. package/addon/routes/management/places/index/details/rules.js +3 -0
  509. package/addon/routes/management/places/index/details.js +0 -4
  510. package/addon/routes/management/places/index.js +2 -2
  511. package/addon/routes/management/vehicles/index/details/devices.js +3 -0
  512. package/addon/routes/management/vehicles/index/details/equipment.js +3 -0
  513. package/addon/routes/management/vehicles/index/details/index.js +3 -0
  514. package/addon/routes/management/vendors/index/details/index.js +3 -0
  515. package/addon/routes/management/vendors/index/details/personnel.js +3 -0
  516. package/addon/routes/management/vendors/integrated/details.js +3 -0
  517. package/addon/routes/management/vendors/integrated/edit.js +3 -0
  518. package/addon/routes/management/vendors/integrated/new.js +3 -0
  519. package/addon/routes/management/vendors/integrated.js +3 -0
  520. package/addon/routes/operations/orders/index/details/index.js +3 -0
  521. package/addon/routes/operations/orders/index/details.js +61 -0
  522. package/addon/routes/operations/orders/index/new.js +1 -7
  523. package/addon/routes/operations/orders/index.js +2 -11
  524. package/addon/routes/operations/routes/index/details.js +3 -0
  525. package/addon/routes/operations/service-rates/index/details/index.js +3 -0
  526. package/addon/routes/operations/service-rates/index/details.js +29 -0
  527. package/addon/routes/operations/service-rates/index/edit.js +13 -36
  528. package/addon/routes/settings/custom-fields.js +3 -0
  529. package/addon/routes.js +143 -28
  530. package/addon/services/contact-actions.js +115 -0
  531. package/addon/services/customer-actions.js +84 -0
  532. package/addon/services/device-actions.js +81 -0
  533. package/addon/services/device-event-actions.js +37 -0
  534. package/addon/services/driver-actions.js +147 -68
  535. package/addon/services/entity-actions.js +41 -0
  536. package/addon/services/equipment-actions.js +81 -0
  537. package/addon/services/fleet-actions.js +84 -0
  538. package/addon/services/fuel-report-actions.js +102 -0
  539. package/addon/services/geofence.js +285 -0
  540. package/addon/services/global-search.js +19 -0
  541. package/addon/services/integrated-vendor-actions.js +84 -0
  542. package/addon/services/issue-actions.js +108 -0
  543. package/addon/services/leaflet-draw-restriction.js +150 -0
  544. package/addon/services/leaflet-layer-visibility-manager.js +305 -0
  545. package/addon/services/leaflet-map-manager.js +388 -54
  546. package/addon/services/leaflet-routing-control.js +8 -1
  547. package/addon/services/maintenance-actions.js +81 -0
  548. package/addon/services/map-drawer.js +81 -0
  549. package/addon/services/order-actions.js +500 -0
  550. package/addon/services/order-config-actions.js +19 -0
  551. package/addon/services/order-creation.js +33 -27
  552. package/addon/services/order-import.js +149 -0
  553. package/addon/services/order-list-overlay.js +206 -0
  554. package/addon/services/order-socket-events.js +296 -0
  555. package/addon/services/order-validation.js +51 -0
  556. package/addon/services/part-actions.js +81 -0
  557. package/addon/services/place-actions.js +140 -0
  558. package/addon/services/report-actions.js +11 -0
  559. package/addon/services/route-optimization.js +1 -1
  560. package/addon/services/sensor-actions.js +81 -0
  561. package/addon/services/service-area-actions.js +98 -0
  562. package/addon/services/service-area-manager.js +24 -0
  563. package/addon/services/service-areas.js +6 -6
  564. package/addon/services/service-rate-actions.js +186 -0
  565. package/addon/services/telematic-actions.js +81 -0
  566. package/addon/services/vehicle-actions.js +113 -29
  567. package/addon/services/vendor-actions.js +137 -0
  568. package/addon/services/work-order-actions.js +81 -0
  569. package/addon/services/zone-actions.js +81 -0
  570. package/addon/styles/fleetops-engine.css +25 -1
  571. package/addon/templates/analytics/reports/index/details/index.hbs +1 -0
  572. package/addon/templates/analytics/reports/index/details/result.hbs +1 -0
  573. package/addon/templates/analytics/reports/index/details.hbs +15 -0
  574. package/addon/templates/analytics/reports/index/edit.hbs +13 -0
  575. package/addon/templates/analytics/reports/index/new.hbs +14 -0
  576. package/addon/templates/analytics/reports/index.hbs +15 -0
  577. package/addon/templates/application.hbs +5 -7
  578. package/addon/templates/connectivity/devices/index/details/events.hbs +2 -0
  579. package/addon/templates/connectivity/devices/index/details/index.hbs +2 -0
  580. package/addon/templates/connectivity/devices/index/details.hbs +2 -0
  581. package/addon/templates/connectivity/devices/index/edit.hbs +12 -0
  582. package/addon/templates/connectivity/devices/index/new.hbs +12 -0
  583. package/addon/templates/connectivity/devices/index.hbs +14 -0
  584. package/addon/templates/connectivity/devices.hbs +2 -0
  585. package/addon/templates/connectivity/events/index/details.hbs +2 -0
  586. package/addon/templates/connectivity/events/index.hbs +14 -0
  587. package/addon/templates/connectivity/events.hbs +2 -0
  588. package/addon/templates/connectivity/sensors/index/details/index.hbs +2 -0
  589. package/addon/templates/connectivity/sensors/index/details.hbs +2 -0
  590. package/addon/templates/connectivity/sensors/index/edit.hbs +12 -0
  591. package/addon/templates/connectivity/sensors/index/new.hbs +12 -0
  592. package/addon/templates/connectivity/sensors/index.hbs +14 -0
  593. package/addon/templates/connectivity/sensors.hbs +2 -0
  594. package/addon/templates/connectivity/telematics/index/details/devices.hbs +2 -0
  595. package/addon/templates/connectivity/telematics/index/details/events.hbs +2 -0
  596. package/addon/templates/connectivity/telematics/index/details/index.hbs +2 -0
  597. package/addon/templates/connectivity/telematics/index/details/sensors.hbs +2 -0
  598. package/addon/templates/connectivity/telematics/index/details.hbs +2 -0
  599. package/addon/templates/connectivity/telematics/index/edit.hbs +12 -0
  600. package/addon/templates/connectivity/telematics/index/new.hbs +12 -0
  601. package/addon/templates/connectivity/telematics/index.hbs +14 -0
  602. package/addon/templates/connectivity/telematics.hbs +2 -0
  603. package/addon/templates/connectivity/tracking.hbs +2 -0
  604. package/addon/templates/connectivity.hbs +2 -0
  605. package/addon/templates/maintenance/equipment/index/details/index.hbs +2 -0
  606. package/addon/templates/maintenance/equipment/index/details.hbs +2 -0
  607. package/addon/templates/maintenance/equipment/index/edit.hbs +2 -0
  608. package/addon/templates/maintenance/equipment/index/new.hbs +12 -0
  609. package/addon/templates/maintenance/equipment/index.hbs +14 -0
  610. package/addon/templates/maintenance/equipment.hbs +2 -0
  611. package/addon/templates/maintenance/parts/index/details/index.hbs +2 -0
  612. package/addon/templates/maintenance/parts/index/details.hbs +2 -0
  613. package/addon/templates/maintenance/parts/index/edit.hbs +2 -0
  614. package/addon/templates/maintenance/parts/index/new.hbs +12 -0
  615. package/addon/templates/maintenance/parts/index.hbs +14 -0
  616. package/addon/templates/maintenance/parts.hbs +2 -0
  617. package/addon/templates/maintenance/work-orders/index/details/index.hbs +1 -0
  618. package/addon/templates/maintenance/work-orders/index/details.hbs +14 -0
  619. package/addon/templates/maintenance/work-orders/index/edit.hbs +14 -0
  620. package/addon/templates/maintenance/work-orders/index/new.hbs +12 -0
  621. package/addon/templates/maintenance/work-orders/index.hbs +14 -0
  622. package/addon/templates/maintenance/work-orders.hbs +2 -0
  623. package/addon/templates/management/contacts/customers/details/index.hbs +1 -0
  624. package/addon/templates/management/contacts/customers/details.hbs +15 -1
  625. package/addon/templates/management/contacts/customers/edit.hbs +13 -7
  626. package/addon/templates/management/contacts/customers/new.hbs +14 -1
  627. package/addon/templates/management/contacts/customers.hbs +16 -59
  628. package/addon/templates/management/contacts/index/details/index.hbs +1 -0
  629. package/addon/templates/management/contacts/index/details.hbs +15 -1
  630. package/addon/templates/management/contacts/index/edit.hbs +12 -7
  631. package/addon/templates/management/contacts/index/new.hbs +13 -1
  632. package/addon/templates/management/contacts/index.hbs +15 -58
  633. package/addon/templates/management/contacts.hbs +18 -9
  634. package/addon/templates/management/drivers/index/details/index.hbs +1 -0
  635. package/addon/templates/management/drivers/index/details/orders.hbs +2 -0
  636. package/addon/templates/management/drivers/index/details/schedule.hbs +2 -0
  637. package/addon/templates/management/drivers/index/details.hbs +15 -1
  638. package/addon/templates/management/drivers/index/edit.hbs +12 -7
  639. package/addon/templates/management/drivers/index/new.hbs +13 -1
  640. package/addon/templates/management/drivers/index.hbs +13 -83
  641. package/addon/templates/management/fleets/index/details/drivers.hbs +1 -0
  642. package/addon/templates/management/fleets/index/details/index.hbs +1 -0
  643. package/addon/templates/management/fleets/index/details/vehicles.hbs +1 -0
  644. package/addon/templates/management/fleets/index/details.hbs +14 -1
  645. package/addon/templates/management/fleets/index/edit.hbs +12 -7
  646. package/addon/templates/management/fleets/index/new.hbs +13 -1
  647. package/addon/templates/management/fleets/index.hbs +15 -57
  648. package/addon/templates/management/fuel-reports/index/details/index.hbs +1 -0
  649. package/addon/templates/management/fuel-reports/index/details.hbs +14 -1
  650. package/addon/templates/management/fuel-reports/index/edit.hbs +12 -7
  651. package/addon/templates/management/fuel-reports/index/new.hbs +13 -1
  652. package/addon/templates/management/fuel-reports/index.hbs +15 -59
  653. package/addon/templates/management/issues/index/details/index.hbs +1 -0
  654. package/addon/templates/management/issues/index/details.hbs +14 -1
  655. package/addon/templates/management/issues/index/edit.hbs +12 -7
  656. package/addon/templates/management/issues/index/new.hbs +13 -1
  657. package/addon/templates/management/issues/index.hbs +15 -58
  658. package/addon/templates/management/places/index/details/activity.hbs +2 -0
  659. package/addon/templates/management/places/index/details/comments.hbs +2 -0
  660. package/addon/templates/management/places/index/details/documents.hbs +2 -0
  661. package/addon/templates/management/places/index/details/index.hbs +1 -0
  662. package/addon/templates/management/places/index/details/map.hbs +2 -0
  663. package/addon/templates/management/places/index/details/operations.hbs +2 -0
  664. package/addon/templates/management/places/index/details/performance.hbs +2 -0
  665. package/addon/templates/management/places/index/details/rules.hbs +2 -0
  666. package/addon/templates/management/places/index/details.hbs +14 -1
  667. package/addon/templates/management/places/index/edit.hbs +13 -7
  668. package/addon/templates/management/places/index/new.hbs +12 -1
  669. package/addon/templates/management/places/index.hbs +13 -57
  670. package/addon/templates/management/vehicles/index/details/devices.hbs +2 -0
  671. package/addon/templates/management/vehicles/index/details/equipment.hbs +2 -0
  672. package/addon/templates/management/vehicles/index/details/index.hbs +1 -0
  673. package/addon/templates/management/vehicles/index/details.hbs +15 -1
  674. package/addon/templates/management/vehicles/index/edit.hbs +12 -7
  675. package/addon/templates/management/vehicles/index/new.hbs +13 -1
  676. package/addon/templates/management/vehicles/index.hbs +45 -60
  677. package/addon/templates/management/vendors/index/details/index.hbs +1 -0
  678. package/addon/templates/management/vendors/index/details/personnel.hbs +2 -0
  679. package/addon/templates/management/vendors/index/details.hbs +14 -1
  680. package/addon/templates/management/vendors/index/edit.hbs +12 -7
  681. package/addon/templates/management/vendors/index/new.hbs +13 -1
  682. package/addon/templates/management/vendors/index.hbs +15 -57
  683. package/addon/templates/management/vendors/integrated/details.hbs +2 -0
  684. package/addon/templates/management/vendors/integrated/edit.hbs +2 -0
  685. package/addon/templates/management/vendors/integrated/new.hbs +2 -0
  686. package/addon/templates/management/vendors/integrated.hbs +16 -0
  687. package/addon/templates/operations/order-config.hbs +4 -4
  688. package/addon/templates/operations/orders/index/details/index.hbs +2 -0
  689. package/addon/templates/operations/orders/index/details.hbs +16 -0
  690. package/addon/templates/operations/orders/index/new.hbs +15 -976
  691. package/addon/templates/operations/orders/index.hbs +40 -153
  692. package/addon/templates/operations/routes/index/details.hbs +2 -0
  693. package/addon/templates/operations/scheduler/index.hbs +12 -13
  694. package/addon/templates/operations/service-rates/index/details/index.hbs +1 -0
  695. package/addon/templates/operations/service-rates/index/details.hbs +14 -0
  696. package/addon/templates/operations/service-rates/index/edit.hbs +12 -1
  697. package/addon/templates/operations/service-rates/index/new.hbs +12 -606
  698. package/addon/templates/operations/service-rates/index.hbs +13 -47
  699. package/addon/templates/settings/custom-fields.hbs +10 -0
  700. package/addon/templates/settings/navigator-app.hbs +1 -1
  701. package/addon/templates/settings/notifications.hbs +4 -4
  702. package/addon/templates/settings/payments/index.hbs +5 -5
  703. package/addon/templates/settings/payments/onboard.hbs +14 -7
  704. package/addon/templates/settings/routing.hbs +7 -7
  705. package/addon/templates/virtual.hbs +3 -3
  706. package/addon/utils/fleet-ops-options.js +440 -0
  707. package/addon/utils/leaflet-to-geojson.js +124 -0
  708. package/addon/utils/leaflet.js +56 -0
  709. package/addon/utils/serialize-payload.js +13 -0
  710. package/addon/utils/setup-customer-portal.js +60 -0
  711. package/addon/utils/to-multi-polygon.js +62 -0
  712. package/addon/utils/vendor-integration.js +106 -0
  713. package/app/components/activity/event-selector.js +1 -0
  714. package/app/components/activity/form.js +1 -0
  715. package/app/components/activity/logic-builder.js +1 -0
  716. package/app/components/asset/form.js +1 -0
  717. package/app/components/contact/details.js +1 -0
  718. package/app/components/contact/form.js +1 -0
  719. package/app/components/contact/panel-header.js +1 -0
  720. package/app/components/custom-entity/form.js +1 -0
  721. package/app/components/customer/details.js +1 -0
  722. package/app/components/customer/form.js +1 -0
  723. package/app/components/customer/leaflet-map.js +1 -0
  724. package/app/components/customer/order-details.js +1 -0
  725. package/app/components/customer/order-form.js +1 -0
  726. package/app/components/device/details.js +1 -0
  727. package/app/components/device/form.js +1 -0
  728. package/app/components/driver/details.js +1 -0
  729. package/app/components/driver/form.js +1 -0
  730. package/app/components/driver/panel-header.js +1 -0
  731. package/app/components/entity/card.js +1 -0
  732. package/app/components/entity/details.js +1 -0
  733. package/app/components/entity/form.js +1 -0
  734. package/app/components/equipment/details.js +1 -0
  735. package/app/components/equipment/form.js +1 -0
  736. package/app/components/fleet/details.js +1 -0
  737. package/app/components/fleet/driver-listing.js +1 -0
  738. package/app/components/fleet/form.js +1 -0
  739. package/app/components/fleet/vehicle-listing.js +1 -0
  740. package/app/components/fuel-report/details.js +1 -0
  741. package/app/components/fuel-report/form.js +1 -0
  742. package/app/components/integrated-vendor/details.js +1 -0
  743. package/app/components/integrated-vendor/form.js +1 -0
  744. package/app/components/issue/details.js +1 -0
  745. package/app/components/issue/form.js +1 -0
  746. package/app/components/maintenance/details.js +1 -0
  747. package/app/components/maintenance/form.js +1 -0
  748. package/app/components/map/container.js +1 -0
  749. package/app/components/map/drawer/driver-listing.js +1 -0
  750. package/app/components/map/drawer/event-listing.js +1 -0
  751. package/app/components/map/drawer/place-listing.js +1 -0
  752. package/app/components/map/drawer/vehicle-listing.js +1 -0
  753. package/app/components/map/drawer.js +1 -0
  754. package/app/components/map/leaflet-live-map.js +1 -0
  755. package/app/components/map/leaflet-tracking-layer.js +1 -0
  756. package/app/components/map/order-list-overlay/driver-panel-title.js +1 -0
  757. package/app/components/map/order-list-overlay/order.js +1 -0
  758. package/app/components/map/order-list-overlay.js +1 -0
  759. package/app/components/map/search.js +1 -0
  760. package/app/components/map/toolbar/visibility-control-panel.js +1 -0
  761. package/app/components/map/toolbar/zones-panel.js +1 -0
  762. package/app/components/map/toolbar.js +1 -0
  763. package/app/components/map.js +1 -0
  764. package/app/components/modals/update-order-activity.js +1 -0
  765. package/app/components/order/activity-list.js +1 -0
  766. package/app/components/order/activity-timeline.js +1 -0
  767. package/app/components/order/customer-avatar-stack.js +1 -0
  768. package/app/components/order/details/activity.js +1 -0
  769. package/app/components/order/details/comments.js +1 -0
  770. package/app/components/order/details/custom-fields.js +1 -0
  771. package/app/components/order/details/detail.js +1 -0
  772. package/app/components/order/details/documents.js +1 -0
  773. package/app/components/order/details/integrated-vendor-details.js +1 -0
  774. package/app/components/order/details/map.js +1 -0
  775. package/app/components/order/details/metadata.js +1 -0
  776. package/app/components/order/details/notes.js +1 -0
  777. package/app/components/order/details/payload.js +1 -0
  778. package/app/components/order/details/proof.js +1 -0
  779. package/app/components/order/details/purchase-rate.js +1 -0
  780. package/app/components/order/details/route.js +1 -0
  781. package/app/components/order/details/tracking.js +1 -0
  782. package/app/components/order/details.js +1 -0
  783. package/app/components/order/form/custom-fields.js +1 -0
  784. package/app/components/order/form/details.js +1 -0
  785. package/app/components/order/form/documents.js +1 -0
  786. package/app/components/order/form/metadata.js +1 -0
  787. package/app/components/order/form/notes.js +1 -0
  788. package/app/components/order/form/payload.js +1 -0
  789. package/app/components/order/form/route.js +1 -0
  790. package/app/components/order/form/service-rate.js +1 -0
  791. package/app/components/order/form.js +1 -0
  792. package/app/components/order/kanban-card.js +1 -0
  793. package/app/components/order/kanban.js +1 -0
  794. package/app/components/order/panel-header.js +1 -0
  795. package/app/components/order/route-editor.js +1 -0
  796. package/app/components/part/details.js +1 -0
  797. package/app/components/part/form.js +1 -0
  798. package/app/components/place/activity.js +1 -0
  799. package/app/components/place/card.js +1 -0
  800. package/app/components/place/comments.js +1 -0
  801. package/app/components/place/details.js +1 -0
  802. package/app/components/place/documents.js +1 -0
  803. package/app/components/place/driver-visits.js +1 -0
  804. package/app/components/place/form.js +1 -0
  805. package/app/components/place/frequency-map.js +1 -0
  806. package/app/components/place/map.js +1 -0
  807. package/app/components/place/operations.js +1 -0
  808. package/app/components/place/performance.js +1 -0
  809. package/app/components/place/recent-orders.js +1 -0
  810. package/app/components/place/rules.js +1 -0
  811. package/app/components/place/service-areas.js +1 -0
  812. package/app/components/sensor/details.js +1 -0
  813. package/app/components/sensor/form.js +1 -0
  814. package/app/components/service-area/details.js +1 -0
  815. package/app/components/service-area/form.js +1 -0
  816. package/app/components/service-rate/details.js +1 -0
  817. package/app/components/service-rate/form.js +1 -0
  818. package/app/components/telematic/details.js +1 -0
  819. package/app/components/telematic/form.js +1 -0
  820. package/app/components/vehicle/card.js +1 -0
  821. package/app/components/vehicle/details.js +1 -0
  822. package/app/components/vehicle/form.js +1 -0
  823. package/app/components/vehicle/panel-header.js +1 -0
  824. package/app/components/vendor/details.js +1 -0
  825. package/app/components/vendor/form.js +1 -0
  826. package/app/components/warranty/details.js +1 -0
  827. package/app/components/warranty/form.js +1 -0
  828. package/app/components/work-order/details.js +1 -0
  829. package/app/components/work-order/form.js +1 -0
  830. package/app/components/zone/details.js +1 -0
  831. package/app/components/zone/form.js +1 -0
  832. package/app/controllers/analytics/reports/index/details.js +1 -0
  833. package/app/controllers/analytics/reports/index/edit.js +1 -0
  834. package/app/controllers/analytics/reports/index/new.js +1 -0
  835. package/app/controllers/analytics/reports/index.js +1 -0
  836. package/app/controllers/connectivity/devices/index/details/events.js +1 -0
  837. package/app/controllers/connectivity/devices/index/details/index.js +1 -0
  838. package/app/controllers/connectivity/devices/index/details.js +1 -0
  839. package/app/controllers/connectivity/devices/index/edit.js +1 -0
  840. package/app/controllers/connectivity/devices/index/new.js +1 -0
  841. package/app/controllers/connectivity/devices/index.js +1 -0
  842. package/app/controllers/connectivity/events/index/details.js +1 -0
  843. package/app/controllers/connectivity/events/index.js +1 -0
  844. package/app/controllers/connectivity/sensors/index/details/index.js +1 -0
  845. package/app/controllers/connectivity/sensors/index/details.js +1 -0
  846. package/app/controllers/connectivity/sensors/index/edit.js +1 -0
  847. package/app/controllers/connectivity/sensors/index/new.js +1 -0
  848. package/app/controllers/connectivity/sensors/index.js +1 -0
  849. package/app/controllers/connectivity/telematics/index/details/devices.js +1 -0
  850. package/app/controllers/connectivity/telematics/index/details/events.js +1 -0
  851. package/app/controllers/connectivity/telematics/index/details/index.js +1 -0
  852. package/app/controllers/connectivity/telematics/index/details/sensors.js +1 -0
  853. package/app/controllers/connectivity/telematics/index/details.js +1 -0
  854. package/app/controllers/connectivity/telematics/index/edit.js +1 -0
  855. package/app/controllers/connectivity/telematics/index/new.js +1 -0
  856. package/app/controllers/connectivity/telematics/index.js +1 -0
  857. package/app/controllers/connectivity/tracking/index.js +1 -0
  858. package/app/controllers/maintenance/equipment/index/details/index.js +1 -0
  859. package/app/controllers/maintenance/equipment/index/details.js +1 -0
  860. package/app/controllers/maintenance/equipment/index/edit.js +1 -0
  861. package/app/controllers/maintenance/equipment/index/new.js +1 -0
  862. package/app/controllers/maintenance/equipment/index.js +1 -0
  863. package/app/controllers/maintenance/parts/index/details/index.js +1 -0
  864. package/app/controllers/maintenance/parts/index/details.js +1 -0
  865. package/app/controllers/maintenance/parts/index/edit.js +1 -0
  866. package/app/controllers/maintenance/parts/index/new.js +1 -0
  867. package/app/controllers/maintenance/parts/index.js +1 -0
  868. package/app/controllers/maintenance/work-orders/index/details/index.js +1 -0
  869. package/app/controllers/maintenance/work-orders/index/details.js +1 -0
  870. package/app/controllers/maintenance/work-orders/index/edit.js +1 -0
  871. package/app/controllers/maintenance/work-orders/index/new.js +1 -0
  872. package/app/controllers/maintenance/work-orders/index.js +1 -0
  873. package/app/controllers/management/contacts.js +1 -0
  874. package/app/controllers/management/vendors/integrated/details.js +1 -0
  875. package/app/controllers/management/vendors/integrated/edit.js +1 -0
  876. package/app/controllers/management/vendors/integrated/new.js +1 -0
  877. package/app/controllers/management/vendors/integrated.js +1 -0
  878. package/app/controllers/operations/orders/index/details/index.js +1 -0
  879. package/app/controllers/operations/orders/index/details.js +1 -0
  880. package/app/controllers/operations/service-rates/index/details.js +1 -0
  881. package/app/controllers/settings/custom-fields.js +1 -0
  882. package/app/helpers/get-fleet-ops-options.js +1 -0
  883. package/app/helpers/is-model-leaflet-layer-hidden.js +1 -0
  884. package/app/routes/analytics/reports/index/details/index.js +1 -0
  885. package/app/routes/analytics/reports/index/details/result.js +1 -0
  886. package/app/routes/analytics/reports/index/details.js +1 -0
  887. package/app/routes/analytics/reports/index/edit.js +1 -0
  888. package/app/routes/analytics/reports/index/new.js +1 -0
  889. package/app/routes/analytics/reports/index.js +1 -0
  890. package/app/routes/analytics/reports.js +1 -0
  891. package/app/routes/analytics.js +1 -0
  892. package/app/routes/connectivity/devices/index/details/events.js +1 -0
  893. package/app/routes/connectivity/devices/index/details/index.js +1 -0
  894. package/app/routes/connectivity/devices/index/details.js +1 -0
  895. package/app/routes/connectivity/devices/index/edit.js +1 -0
  896. package/app/routes/connectivity/devices/index/new.js +1 -0
  897. package/app/routes/connectivity/devices/index.js +1 -0
  898. package/app/routes/connectivity/devices.js +1 -0
  899. package/app/routes/connectivity/events/index/details.js +1 -0
  900. package/app/routes/connectivity/events/index.js +1 -0
  901. package/app/routes/connectivity/events.js +1 -0
  902. package/app/routes/connectivity/sensors/index/details/index.js +1 -0
  903. package/app/routes/connectivity/sensors/index/details.js +1 -0
  904. package/app/routes/connectivity/sensors/index/edit.js +1 -0
  905. package/app/routes/connectivity/sensors/index/new.js +1 -0
  906. package/app/routes/connectivity/sensors/index.js +1 -0
  907. package/app/routes/connectivity/sensors.js +1 -0
  908. package/app/routes/connectivity/telematics/index/details/devices.js +1 -0
  909. package/app/routes/connectivity/telematics/index/details/events.js +1 -0
  910. package/app/routes/connectivity/telematics/index/details/index.js +1 -0
  911. package/app/routes/connectivity/telematics/index/details/sensors.js +1 -0
  912. package/app/routes/connectivity/telematics/index/details.js +1 -0
  913. package/app/routes/connectivity/telematics/index/edit.js +1 -0
  914. package/app/routes/connectivity/telematics/index/new.js +1 -0
  915. package/app/routes/connectivity/telematics/index.js +1 -0
  916. package/app/routes/connectivity/telematics.js +1 -0
  917. package/app/routes/connectivity/tracking/index.js +1 -0
  918. package/app/routes/connectivity/tracking.js +1 -0
  919. package/app/routes/connectivity.js +1 -0
  920. package/app/routes/maintenance/equipment/index/details/index.js +1 -0
  921. package/app/routes/maintenance/equipment/index/details.js +1 -0
  922. package/app/routes/maintenance/equipment/index/edit.js +1 -0
  923. package/app/routes/maintenance/equipment/index/new.js +1 -0
  924. package/app/routes/maintenance/equipment/index.js +1 -0
  925. package/app/routes/maintenance/equipment.js +1 -0
  926. package/app/routes/maintenance/parts/index/details/index.js +1 -0
  927. package/app/routes/maintenance/parts/index/details.js +1 -0
  928. package/app/routes/maintenance/parts/index/edit.js +1 -0
  929. package/app/routes/maintenance/parts/index/new.js +1 -0
  930. package/app/routes/maintenance/parts/index.js +1 -0
  931. package/app/routes/maintenance/parts.js +1 -0
  932. package/app/routes/maintenance/work-orders/index/details/index.js +1 -0
  933. package/app/routes/maintenance/work-orders/index/details.js +1 -0
  934. package/app/routes/maintenance/work-orders/index/edit.js +1 -0
  935. package/app/routes/maintenance/work-orders/index/new.js +1 -0
  936. package/app/routes/maintenance/work-orders/index.js +1 -0
  937. package/app/routes/maintenance/work-orders.js +1 -0
  938. package/app/routes/maintenance.js +1 -0
  939. package/app/routes/management/contacts/customers/details/index.js +1 -0
  940. package/app/routes/management/contacts/index/details/index.js +1 -0
  941. package/app/routes/management/drivers/index/details/index.js +1 -0
  942. package/app/routes/management/drivers/index/details/orders.js +1 -0
  943. package/app/routes/management/drivers/index/details/schedule.js +1 -0
  944. package/app/routes/management/fleets/index/details/drivers.js +1 -0
  945. package/app/routes/management/fleets/index/details/index.js +1 -0
  946. package/app/routes/management/fleets/index/details/vehicles.js +1 -0
  947. package/app/routes/management/fuel-reports/index/details/index.js +1 -0
  948. package/app/routes/management/issues/index/details/index.js +1 -0
  949. package/app/routes/management/places/index/details/activity.js +1 -0
  950. package/app/routes/management/places/index/details/comments.js +1 -0
  951. package/app/routes/management/places/index/details/documents.js +1 -0
  952. package/app/routes/management/places/index/details/index.js +1 -0
  953. package/app/routes/management/places/index/details/map.js +1 -0
  954. package/app/routes/management/places/index/details/operations.js +1 -0
  955. package/app/routes/management/places/index/details/performance.js +1 -0
  956. package/app/routes/management/places/index/details/rules.js +1 -0
  957. package/app/routes/management/vehicles/index/details/devices.js +1 -0
  958. package/app/routes/management/vehicles/index/details/equipment.js +1 -0
  959. package/app/routes/management/vehicles/index/details/index.js +1 -0
  960. package/app/routes/management/vendors/index/details/index.js +1 -0
  961. package/app/routes/management/vendors/index/details/personnel.js +1 -0
  962. package/app/routes/management/vendors/integrated/details.js +1 -0
  963. package/app/routes/management/vendors/integrated/edit.js +1 -0
  964. package/app/routes/management/vendors/integrated/new.js +1 -0
  965. package/app/routes/management/vendors/integrated.js +1 -0
  966. package/app/routes/operations/orders/index/details/index.js +1 -0
  967. package/app/routes/operations/orders/index/details.js +1 -0
  968. package/app/routes/operations/routes/index/details.js +1 -0
  969. package/app/routes/operations/service-rates/index/details/index.js +1 -0
  970. package/app/routes/operations/service-rates/index/details.js +1 -0
  971. package/app/routes/settings/custom-fields.js +1 -0
  972. package/app/services/contact-actions.js +1 -0
  973. package/app/services/customer-actions.js +1 -0
  974. package/app/services/device-actions.js +1 -0
  975. package/app/services/device-event-actions.js +1 -0
  976. package/app/services/entity-actions.js +1 -0
  977. package/app/services/equipment-actions.js +1 -0
  978. package/app/services/fleet-actions.js +1 -0
  979. package/app/services/fuel-report-actions.js +1 -0
  980. package/app/services/geofence.js +1 -0
  981. package/app/services/global-search.js +1 -0
  982. package/app/services/integrated-vendor-actions.js +1 -0
  983. package/app/services/issue-actions.js +1 -0
  984. package/app/services/leaflet-draw-restriction.js +1 -0
  985. package/app/services/leaflet-layer-visibility-manager.js +1 -0
  986. package/app/services/maintenance-actions.js +1 -0
  987. package/app/services/map-drawer.js +1 -0
  988. package/app/services/order-actions.js +1 -0
  989. package/app/services/order-config-actions.js +1 -0
  990. package/app/services/order-import.js +1 -0
  991. package/app/services/order-list-overlay.js +1 -0
  992. package/app/services/order-socket-events.js +1 -0
  993. package/app/services/order-validation.js +1 -0
  994. package/app/services/part-actions.js +1 -0
  995. package/app/services/place-actions.js +1 -0
  996. package/app/services/report-actions.js +1 -0
  997. package/app/services/sensor-actions.js +1 -0
  998. package/app/services/service-area-actions.js +1 -0
  999. package/app/services/service-area-manager.js +1 -0
  1000. package/app/services/service-rate-actions.js +1 -0
  1001. package/app/services/telematic-actions.js +1 -0
  1002. package/app/services/vendor-actions.js +1 -0
  1003. package/app/services/work-order-actions.js +1 -0
  1004. package/app/services/zone-actions.js +1 -0
  1005. package/app/templates/analytics/reports/index/details/index.js +1 -0
  1006. package/app/templates/analytics/reports/index/details/result.js +1 -0
  1007. package/app/templates/analytics/reports/index/details.js +1 -0
  1008. package/app/templates/analytics/reports/index/edit.js +1 -0
  1009. package/app/templates/analytics/reports/index/new.js +1 -0
  1010. package/app/templates/analytics/reports/index.js +1 -0
  1011. package/app/templates/analytics/reports.js +1 -0
  1012. package/app/templates/analytics.js +1 -0
  1013. package/app/templates/connectivity/devices/index/details/events.js +1 -0
  1014. package/app/templates/connectivity/devices/index/details/index.js +1 -0
  1015. package/app/templates/connectivity/devices/index/details.js +1 -0
  1016. package/app/templates/connectivity/devices/index/edit.js +1 -0
  1017. package/app/templates/connectivity/devices/index/new.js +1 -0
  1018. package/app/templates/connectivity/devices/index.js +1 -0
  1019. package/app/templates/connectivity/devices.js +1 -0
  1020. package/app/templates/connectivity/events/index/details.js +1 -0
  1021. package/app/templates/connectivity/events/index.js +1 -0
  1022. package/app/templates/connectivity/events.js +1 -0
  1023. package/app/templates/connectivity/sensors/index/details/index.js +1 -0
  1024. package/app/templates/connectivity/sensors/index/details.js +1 -0
  1025. package/app/templates/connectivity/sensors/index/edit.js +1 -0
  1026. package/app/templates/connectivity/sensors/index/new.js +1 -0
  1027. package/app/templates/connectivity/sensors/index.js +1 -0
  1028. package/app/templates/connectivity/sensors.js +1 -0
  1029. package/app/templates/connectivity/telematics/index/details/devices.js +1 -0
  1030. package/app/templates/connectivity/telematics/index/details/events.js +1 -0
  1031. package/app/templates/connectivity/telematics/index/details/index.js +1 -0
  1032. package/app/templates/connectivity/telematics/index/details/sensors.js +1 -0
  1033. package/app/templates/connectivity/telematics/index/details.js +1 -0
  1034. package/app/templates/connectivity/telematics/index/edit.js +1 -0
  1035. package/app/templates/connectivity/telematics/index/new.js +1 -0
  1036. package/app/templates/connectivity/telematics/index.js +1 -0
  1037. package/app/templates/connectivity/telematics.js +1 -0
  1038. package/app/templates/connectivity/tracking/index.js +1 -0
  1039. package/app/templates/connectivity/tracking.js +1 -0
  1040. package/app/templates/connectivity.js +1 -0
  1041. package/app/templates/maintenance/equipment/index/details/index.js +1 -0
  1042. package/app/templates/maintenance/equipment/index/details.js +1 -0
  1043. package/app/templates/maintenance/equipment/index/edit.js +1 -0
  1044. package/app/templates/maintenance/equipment/index/new.js +1 -0
  1045. package/app/templates/maintenance/equipment/index.js +1 -0
  1046. package/app/templates/maintenance/equipment.js +1 -0
  1047. package/app/templates/maintenance/parts/index/details/index.js +1 -0
  1048. package/app/templates/maintenance/parts/index/details.js +1 -0
  1049. package/app/templates/maintenance/parts/index/edit.js +1 -0
  1050. package/app/templates/maintenance/parts/index/new.js +1 -0
  1051. package/app/templates/maintenance/parts/index.js +1 -0
  1052. package/app/templates/maintenance/parts.js +1 -0
  1053. package/app/templates/maintenance/work-orders/index/details/index.js +1 -0
  1054. package/app/templates/maintenance/work-orders/index/details.js +1 -0
  1055. package/app/templates/maintenance/work-orders/index/edit.js +1 -0
  1056. package/app/templates/maintenance/work-orders/index/new.js +1 -0
  1057. package/app/templates/maintenance/work-orders/index.js +1 -0
  1058. package/app/templates/maintenance/work-orders.js +1 -0
  1059. package/app/templates/maintenance.js +1 -0
  1060. package/app/templates/management/contacts/customers/details/index.js +1 -0
  1061. package/app/templates/management/contacts/index/details/index.js +1 -0
  1062. package/app/templates/management/drivers/index/details/index.js +1 -0
  1063. package/app/templates/management/drivers/index/details/orders.js +1 -0
  1064. package/app/templates/management/drivers/index/details/schedule.js +1 -0
  1065. package/app/templates/management/fleets/index/details/drivers.js +1 -0
  1066. package/app/templates/management/fleets/index/details/index.js +1 -0
  1067. package/app/templates/management/fleets/index/details/vehicles.js +1 -0
  1068. package/app/templates/management/fuel-reports/index/details/index.js +1 -0
  1069. package/app/templates/management/issues/index/details/index.js +1 -0
  1070. package/app/templates/management/places/index/details/activity.js +1 -0
  1071. package/app/templates/management/places/index/details/comments.js +1 -0
  1072. package/app/templates/management/places/index/details/documents.js +1 -0
  1073. package/app/templates/management/places/index/details/index.js +1 -0
  1074. package/app/templates/management/places/index/details/map.js +1 -0
  1075. package/app/templates/management/places/index/details/operations.js +1 -0
  1076. package/app/templates/management/places/index/details/performance.js +1 -0
  1077. package/app/templates/management/places/index/details/rules.js +1 -0
  1078. package/app/templates/management/vehicles/index/details/devices.js +1 -0
  1079. package/app/templates/management/vehicles/index/details/equipment.js +1 -0
  1080. package/app/templates/management/vehicles/index/details/index.js +1 -0
  1081. package/app/templates/management/vendors/index/details/index.js +1 -0
  1082. package/app/templates/management/vendors/index/details/personnel.js +1 -0
  1083. package/app/templates/management/vendors/integrated/details.js +1 -0
  1084. package/app/templates/management/vendors/integrated/edit.js +1 -0
  1085. package/app/templates/management/vendors/integrated/new.js +1 -0
  1086. package/app/templates/management/vendors/integrated.js +1 -0
  1087. package/app/templates/operations/orders/index/details/index.js +1 -0
  1088. package/app/templates/operations/orders/index/details.js +1 -0
  1089. package/app/templates/operations/routes/index/details.js +1 -0
  1090. package/app/templates/operations/service-rates/index/details/index.js +1 -0
  1091. package/app/templates/operations/service-rates/index/details.js +1 -0
  1092. package/app/templates/settings/custom-fields.js +1 -0
  1093. package/app/utils/fleet-ops-options.js +1 -0
  1094. package/app/utils/leaflet-to-geojson.js +1 -0
  1095. package/app/utils/leaflet.js +1 -0
  1096. package/app/utils/serialize-payload.js +1 -0
  1097. package/app/utils/setup-customer-portal.js +1 -0
  1098. package/app/utils/to-multi-polygon.js +1 -0
  1099. package/app/utils/vendor-integration.js +1 -0
  1100. package/composer.json +3 -2
  1101. package/extension.json +1 -1
  1102. package/index.js +3 -2
  1103. package/package.json +5 -2
  1104. package/server/migrations/2025_08_28_054920_create_warranties_table.php +56 -0
  1105. package/server/migrations/2025_08_28_054921_create_telematics_table.php +60 -0
  1106. package/server/migrations/2025_08_28_054922_create_assets_table.php +94 -0
  1107. package/server/migrations/2025_08_28_054925_create_devices_table.php +190 -0
  1108. package/server/migrations/2025_08_28_054926_create_device_events_table.php +99 -0
  1109. package/server/migrations/2025_08_28_054926_create_sensors_table.php +62 -0
  1110. package/server/migrations/2025_08_28_054927_create_parts_table.php +73 -0
  1111. package/server/migrations/2025_08_28_054929_create_equipments_table.php +58 -0
  1112. package/server/migrations/2025_08_28_054930_create_work_orders_table.php +85 -0
  1113. package/server/migrations/2025_08_28_054931_create_maintenances_table.php +79 -0
  1114. package/server/migrations/2025_08_28_082002_update_vehicles_table_telematics.php +60 -0
  1115. package/server/migrations/2025_09_10_010724_create_additional_spec_columns_for_assets_vehicles_table.php +77 -0
  1116. package/server/migrations/2025_09_14_031758_add_provider_options_column_to_integrated_vendors_tabl.php +27 -0
  1117. package/server/migrations/2025_09_15_031052_add_title_column_to_issues_table.php +27 -0
  1118. package/server/migrations/2025_09_24_004700_add_vehicle_columns.php +49 -0
  1119. package/server/migrations/2025_10_07_020406_add_max_distance_to_service_rates_table.php +28 -0
  1120. package/server/migrations/2025_10_08_091812_add_details_column_to_vehicles_table.php +27 -0
  1121. package/server/src/Auth/Schemas/FleetOps.php +12 -0
  1122. package/server/src/Console/Commands/DispatchAdhocOrders.php +21 -8
  1123. package/server/src/Http/Controllers/Api/v1/OrderController.php +6 -1
  1124. package/server/src/Http/Controllers/Api/v1/ServiceRateController.php +1 -1
  1125. package/server/src/Http/Controllers/Internal/v1/ContactController.php +12 -0
  1126. package/server/src/Http/Controllers/Internal/v1/DeviceController.php +15 -0
  1127. package/server/src/Http/Controllers/Internal/v1/DeviceEventController.php +15 -0
  1128. package/server/src/Http/Controllers/Internal/v1/DriverController.php +17 -8
  1129. package/server/src/Http/Controllers/Internal/v1/EquipmentController.php +15 -0
  1130. package/server/src/Http/Controllers/Internal/v1/FleetController.php +17 -5
  1131. package/server/src/Http/Controllers/Internal/v1/FuelReportController.php +13 -0
  1132. package/server/src/Http/Controllers/Internal/v1/IssueController.php +13 -0
  1133. package/server/src/Http/Controllers/Internal/v1/MaintenanceController.php +15 -0
  1134. package/server/src/Http/Controllers/Internal/v1/OrderController.php +141 -70
  1135. package/server/src/Http/Controllers/Internal/v1/PartController.php +15 -0
  1136. package/server/src/Http/Controllers/Internal/v1/PlaceController.php +11 -0
  1137. package/server/src/Http/Controllers/Internal/v1/SensorController.php +15 -0
  1138. package/server/src/Http/Controllers/Internal/v1/ServiceAreaController.php +13 -0
  1139. package/server/src/Http/Controllers/Internal/v1/TelematicController.php +15 -0
  1140. package/server/src/Http/Controllers/Internal/v1/VehicleController.php +12 -0
  1141. package/server/src/Http/Controllers/Internal/v1/VendorController.php +11 -0
  1142. package/server/src/Http/Controllers/Internal/v1/WarrantyController.php +15 -0
  1143. package/server/src/Http/Controllers/Internal/v1/WorkOrderController.php +15 -0
  1144. package/server/src/Http/Controllers/Internal/v1/ZoneController.php +13 -0
  1145. package/server/src/Http/Filter/DriverFilter.php +5 -2
  1146. package/server/src/Http/Filter/FleetFilter.php +5 -2
  1147. package/server/src/Http/Filter/IssueFilter.php +3 -8
  1148. package/server/src/Http/Filter/PlaceFilter.php +5 -0
  1149. package/server/src/Http/Filter/VendorFilter.php +5 -2
  1150. package/server/src/Http/Requests/CreateServiceRateRequest.php +4 -2
  1151. package/server/src/Http/Resources/v1/Contact.php +6 -4
  1152. package/server/src/Http/Resources/v1/CurrentJob.php +2 -2
  1153. package/server/src/Http/Resources/v1/Driver.php +2 -2
  1154. package/server/src/Http/Resources/v1/Fleet.php +2 -2
  1155. package/server/src/Http/Resources/v1/FuelReport.php +2 -2
  1156. package/server/src/Http/Resources/v1/Issue.php +34 -31
  1157. package/server/src/Http/Resources/v1/Order.php +82 -60
  1158. package/server/src/Http/Resources/v1/ParentFleet.php +2 -2
  1159. package/server/src/Http/Resources/v1/Place.php +3 -3
  1160. package/server/src/Http/Resources/v1/ServiceArea.php +2 -2
  1161. package/server/src/Http/Resources/v1/ServiceRate.php +45 -34
  1162. package/server/src/Http/Resources/v1/SubFleet.php +2 -2
  1163. package/server/src/Http/Resources/v1/Vehicle.php +3 -3
  1164. package/server/src/Http/Resources/v1/Vendor.php +5 -3
  1165. package/server/src/Http/Resources/v1/Zone.php +2 -2
  1166. package/server/src/Models/Asset.php +557 -0
  1167. package/server/src/Models/Contact.php +24 -1
  1168. package/server/src/Models/Device.php +435 -0
  1169. package/server/src/Models/DeviceEvent.php +501 -0
  1170. package/server/src/Models/Driver.php +3 -1
  1171. package/server/src/Models/Entity.php +2 -0
  1172. package/server/src/Models/Equipment.php +483 -0
  1173. package/server/src/Models/Fleet.php +2 -0
  1174. package/server/src/Models/FuelReport.php +2 -0
  1175. package/server/src/Models/IntegratedVendor.php +4 -2
  1176. package/server/src/Models/Issue.php +23 -0
  1177. package/server/src/Models/Maintenance.php +549 -0
  1178. package/server/src/Models/Order.php +57 -157
  1179. package/server/src/Models/OrderConfig.php +8 -0
  1180. package/server/src/Models/Part.php +502 -0
  1181. package/server/src/Models/Payload.php +101 -20
  1182. package/server/src/Models/Place.php +12 -4
  1183. package/server/src/Models/Sensor.php +510 -0
  1184. package/server/src/Models/ServiceArea.php +3 -1
  1185. package/server/src/Models/ServiceRate.php +22 -4
  1186. package/server/src/Models/Telematic.php +336 -0
  1187. package/server/src/Models/Vehicle.php +127 -11
  1188. package/server/src/Models/VehicleDevice.php +1 -1
  1189. package/server/src/Models/VehicleDeviceEvent.php +1 -1
  1190. package/server/src/Models/Vendor.php +15 -0
  1191. package/server/src/Models/Warranty.php +413 -0
  1192. package/server/src/Models/Waypoint.php +58 -0
  1193. package/server/src/Models/WorkOrder.php +532 -0
  1194. package/server/src/Models/Zone.php +2 -0
  1195. package/server/src/Providers/FleetOpsServiceProvider.php +1 -0
  1196. package/server/src/Providers/ReportSchemaServiceProvider.php +22 -0
  1197. package/server/src/Support/Reporting/FleetOpsReportSchema.php +729 -0
  1198. package/server/src/Support/Utils.php +5 -0
  1199. package/server/src/Traits/HasTrackingNumber.php +10 -6
  1200. package/server/src/Traits/Maintainable.php +307 -0
  1201. package/server/src/routes.php +9 -0
  1202. package/translations/bg-bg.yaml +1799 -0
  1203. package/translations/en-us.yaml +1691 -1625
  1204. package/translations/fr-fr.yaml +1824 -0
  1205. package/translations/mn-mn.yaml +1768 -0
  1206. package/translations/pt-br.yaml +1789 -0
  1207. package/translations/ru-ru.yaml +1782 -0
  1208. package/addon/components/activity-event-selector.hbs +0 -45
  1209. package/addon/components/activity-event-selector.js +0 -89
  1210. package/addon/components/activity-form-panel.hbs +0 -89
  1211. package/addon/components/activity-form-panel.js +0 -109
  1212. package/addon/components/activity-logic-builder.hbs +0 -128
  1213. package/addon/components/activity-logic-builder.js +0 -260
  1214. package/addon/components/contact-form-panel.hbs +0 -158
  1215. package/addon/components/contact-form-panel.js +0 -168
  1216. package/addon/components/contact-panel/details.hbs +0 -40
  1217. package/addon/components/contact-panel/details.js +0 -3
  1218. package/addon/components/contact-panel.hbs +0 -74
  1219. package/addon/components/contact-panel.js +0 -112
  1220. package/addon/components/context-panel.hbs +0 -5
  1221. package/addon/components/context-panel.js +0 -6
  1222. package/addon/components/custom-entity-form-panel.hbs +0 -98
  1223. package/addon/components/custom-entity-form-panel.js +0 -129
  1224. package/addon/components/custom-field-form-panel/options-input.hbs +0 -17
  1225. package/addon/components/custom-field-form-panel/options-input.js +0 -139
  1226. package/addon/components/custom-field-form-panel.hbs +0 -121
  1227. package/addon/components/custom-field-form-panel.js +0 -147
  1228. package/addon/components/custom-field-value.hbs +0 -11
  1229. package/addon/components/custom-field-value.js +0 -41
  1230. package/addon/components/custom-field.hbs +0 -89
  1231. package/addon/components/custom-field.js +0 -145
  1232. package/addon/components/customer-form-panel.hbs +0 -215
  1233. package/addon/components/customer-form-panel.js +0 -219
  1234. package/addon/components/customer-panel/details.hbs +0 -52
  1235. package/addon/components/customer-panel/details.js +0 -3
  1236. package/addon/components/customer-panel.hbs +0 -95
  1237. package/addon/components/customer-panel.js +0 -124
  1238. package/addon/components/driver-card-mini.hbs +0 -12
  1239. package/addon/components/driver-card-mini.js +0 -46
  1240. package/addon/components/driver-card.hbs +0 -27
  1241. package/addon/components/driver-card.js +0 -14
  1242. package/addon/components/driver-form-panel.hbs +0 -276
  1243. package/addon/components/driver-form-panel.js +0 -243
  1244. package/addon/components/driver-panel/details.hbs +0 -55
  1245. package/addon/components/driver-panel/orders.hbs +0 -144
  1246. package/addon/components/driver-panel/orders.js +0 -44
  1247. package/addon/components/driver-panel.hbs +0 -84
  1248. package/addon/components/driver-panel.js +0 -164
  1249. package/addon/components/edit-order-route-panel.hbs +0 -183
  1250. package/addon/components/edit-order-route-panel.js +0 -322
  1251. package/addon/components/event-timeline/event.hbs +0 -5
  1252. package/addon/components/fleet-form-panel.hbs +0 -151
  1253. package/addon/components/fleet-form-panel.js +0 -128
  1254. package/addon/components/fleet-panel.hbs +0 -35
  1255. package/addon/components/fleet-panel.js +0 -129
  1256. package/addon/components/fuel-report-form-panel.hbs +0 -170
  1257. package/addon/components/fuel-report-form-panel.js +0 -167
  1258. package/addon/components/fuel-report-panel/details.hbs +0 -42
  1259. package/addon/components/fuel-report-panel.hbs +0 -46
  1260. package/addon/components/fuel-report-panel.js +0 -148
  1261. package/addon/components/full-size.js +0 -1
  1262. package/addon/components/horizontal-route.hbs +0 -38
  1263. package/addon/components/horizontal-route.js +0 -48
  1264. package/addon/components/issue-form-panel.hbs +0 -226
  1265. package/addon/components/issue-form-panel.js +0 -182
  1266. package/addon/components/issue-panel/details.hbs +0 -48
  1267. package/addon/components/issue-panel.hbs +0 -39
  1268. package/addon/components/issue-panel.js +0 -148
  1269. package/addon/components/live-map-drawer/driver-listing.hbs +0 -12
  1270. package/addon/components/live-map-drawer/driver-listing.js +0 -246
  1271. package/addon/components/live-map-drawer/place-listing.hbs +0 -12
  1272. package/addon/components/live-map-drawer/place-listing.js +0 -209
  1273. package/addon/components/live-map-drawer/vehicle-listing.hbs +0 -12
  1274. package/addon/components/live-map-drawer/vehicle-listing.js +0 -222
  1275. package/addon/components/live-map-drawer.hbs +0 -17
  1276. package/addon/components/live-map-drawer.js +0 -86
  1277. package/addon/components/live-map.hbs +0 -260
  1278. package/addon/components/live-map.js +0 -1925
  1279. package/addon/components/map-container/toolbar/visibility-control-panel.hbs +0 -66
  1280. package/addon/components/map-container/toolbar/visibility-control-panel.js +0 -74
  1281. package/addon/components/map-container/toolbar/zones-panel.hbs +0 -56
  1282. package/addon/components/map-container/toolbar/zones-panel.js +0 -138
  1283. package/addon/components/map-container/toolbar-container.hbs +0 -1
  1284. package/addon/components/map-container/toolbar-container.js +0 -3
  1285. package/addon/components/map-container/toolbar.hbs +0 -123
  1286. package/addon/components/map-container/toolbar.js +0 -63
  1287. package/addon/components/operations-pane/pane.hbs +0 -1
  1288. package/addon/components/order-board.hbs +0 -27
  1289. package/addon/components/order-board.js +0 -81
  1290. package/addon/components/order-config/activity-flow-editor.hbs +0 -149
  1291. package/addon/components/order-config/activity-flow-editor.js +0 -374
  1292. package/addon/components/order-config/details-editor.hbs +0 -69
  1293. package/addon/components/order-config/details-editor.js +0 -16
  1294. package/addon/components/order-config/entities-editor.hbs +0 -89
  1295. package/addon/components/order-config/entities-editor.js +0 -120
  1296. package/addon/components/order-config/fields-editor.hbs +0 -169
  1297. package/addon/components/order-config/fields-editor.js +0 -227
  1298. package/addon/components/order-config/selector.js +0 -3
  1299. package/addon/components/order-config-manager-overlay.hbs +0 -36
  1300. package/addon/components/order-config-manager-overlay.js +0 -60
  1301. package/addon/components/order-flow.js +0 -3
  1302. package/addon/components/order-list-overlay.hbs +0 -178
  1303. package/addon/components/order-list-overlay.js +0 -217
  1304. package/addon/components/place-form-panel.hbs +0 -118
  1305. package/addon/components/place-form-panel.js +0 -179
  1306. package/addon/components/place-panel/details.hbs +0 -81
  1307. package/addon/components/place-panel.hbs +0 -40
  1308. package/addon/components/place-panel.js +0 -112
  1309. package/addon/components/settings-window.hbs +0 -39
  1310. package/addon/components/settings-window.js +0 -63
  1311. package/addon/components/split-grid.js +0 -1
  1312. package/addon/components/vehicle-form-panel.hbs +0 -219
  1313. package/addon/components/vehicle-form-panel.js +0 -203
  1314. package/addon/components/vehicle-panel/details.hbs +0 -44
  1315. package/addon/components/vehicle-panel.hbs +0 -79
  1316. package/addon/components/vehicle-panel.js +0 -153
  1317. package/addon/components/vendor-form-panel/create-form.hbs +0 -250
  1318. package/addon/components/vendor-form-panel/create-form.js +0 -153
  1319. package/addon/components/vendor-form-panel/edit-form.hbs +0 -234
  1320. package/addon/components/vendor-form-panel/edit-form.js +0 -57
  1321. package/addon/components/vendor-form-panel.hbs +0 -115
  1322. package/addon/components/vendor-form-panel.js +0 -160
  1323. package/addon/components/vendor-panel/details.hbs +0 -77
  1324. package/addon/components/vendor-panel/details.js +0 -12
  1325. package/addon/components/vendor-panel/drivers.hbs +0 -81
  1326. package/addon/components/vendor-panel/drivers.js +0 -139
  1327. package/addon/components/vendor-panel/personnel.js +0 -3
  1328. package/addon/components/vendor-panel.hbs +0 -73
  1329. package/addon/components/vendor-panel.js +0 -124
  1330. package/addon/controllers/base-controller.js +0 -31
  1331. package/addon/controllers/management.js +0 -3
  1332. package/addon/controllers/operations/orders/index/config/types.js +0 -17
  1333. package/addon/controllers/operations/orders/index/config.js +0 -13
  1334. package/addon/controllers/operations/orders/index/view.js +0 -1028
  1335. package/addon/helpers/feature-group.js +0 -13
  1336. package/addon/helpers/flow-raw-status.js +0 -13
  1337. package/addon/helpers/get-tip-amount.js +0 -19
  1338. package/addon/helpers/is-facilitator-supported-place.js +0 -6
  1339. package/addon/helpers/is-section-visible.js +0 -5
  1340. package/addon/helpers/is-visibility-control-visible.js +0 -18
  1341. package/addon/helpers/is-waypoint-record.js +0 -6
  1342. package/addon/helpers/service-name.js +0 -6
  1343. package/addon/routes/comms/chat.js +0 -3
  1344. package/addon/routes/comms/intercom.js +0 -3
  1345. package/addon/routes/comms.js +0 -3
  1346. package/addon/routes/operations/orders/index/config/types.js +0 -18
  1347. package/addon/routes/operations/orders/index/config.js +0 -3
  1348. package/addon/routes/operations/orders/index/view.js +0 -113
  1349. package/addon/routes/operations/routes/index/view.js +0 -3
  1350. package/addon/services/context-panel.js +0 -352
  1351. package/addon/services/leaflet-router-control.js +0 -64
  1352. package/addon/templates/operations/orders/index/config/types.hbs +0 -30
  1353. package/addon/templates/operations/orders/index/config.hbs +0 -23
  1354. package/addon/templates/operations/orders/index/view.hbs +0 -876
  1355. package/addon/utils/calculate-percentage.js +0 -1
  1356. package/addon/utils/find-leaflet-layer.js +0 -13
  1357. package/addon/utils/fly-to-leaflet-layer.js +0 -32
  1358. package/addon/utils/format-currency.js +0 -1
  1359. package/addon/utils/get-custom-field-type-map.js +0 -34
  1360. package/addon/utils/get-issue-categories.js +0 -30
  1361. package/addon/utils/get-issue-types.js +0 -3
  1362. package/addon/utils/get-leaflet-layer-by-id.js +0 -12
  1363. package/addon/utils/get-vendor-status-options.js +0 -3
  1364. package/addon/utils/get-vendor-type-options.js +0 -44
  1365. package/addon/utils/layer-can-bind-contextmenu.js +0 -3
  1366. package/addon/utils/to-model.js +0 -1
  1367. package/app/components/activity-event-selector.js +0 -1
  1368. package/app/components/activity-form-panel.js +0 -1
  1369. package/app/components/activity-logic-builder.js +0 -1
  1370. package/app/components/contact-form-panel.js +0 -1
  1371. package/app/components/contact-panel/details.js +0 -1
  1372. package/app/components/contact-panel.js +0 -1
  1373. package/app/components/context-panel.js +0 -1
  1374. package/app/components/custom-entity-form-panel.js +0 -1
  1375. package/app/components/custom-field-form-panel/options-input.js +0 -1
  1376. package/app/components/custom-field-form-panel.js +0 -1
  1377. package/app/components/custom-field-value.js +0 -1
  1378. package/app/components/custom-field.js +0 -1
  1379. package/app/components/customer-form-panel.js +0 -1
  1380. package/app/components/customer-panel/details.js +0 -1
  1381. package/app/components/customer-panel.js +0 -1
  1382. package/app/components/driver-card-mini.js +0 -1
  1383. package/app/components/driver-card.js +0 -1
  1384. package/app/components/driver-form-panel.js +0 -1
  1385. package/app/components/driver-panel/details.js +0 -1
  1386. package/app/components/driver-panel/orders.js +0 -1
  1387. package/app/components/driver-panel.js +0 -1
  1388. package/app/components/event-timeline/event.js +0 -1
  1389. package/app/components/fleet-form-panel.js +0 -1
  1390. package/app/components/fleet-panel.js +0 -1
  1391. package/app/components/fuel-report-form-panel.js +0 -1
  1392. package/app/components/fuel-report-panel.js +0 -1
  1393. package/app/components/full-size.js +0 -1
  1394. package/app/components/horizontal-route.js +0 -1
  1395. package/app/components/issue-form-panel.js +0 -1
  1396. package/app/components/issue-panel.js +0 -1
  1397. package/app/components/live-map-drawer/driver-listing.js +0 -1
  1398. package/app/components/live-map-drawer/place-listing.js +0 -1
  1399. package/app/components/live-map-drawer/vehicle-listing.js +0 -1
  1400. package/app/components/live-map-drawer.js +0 -1
  1401. package/app/components/live-map.js +0 -1
  1402. package/app/components/map-container/toolbar/visibility-control-panel.js +0 -1
  1403. package/app/components/map-container/toolbar/zones-panel.js +0 -1
  1404. package/app/components/map-container/toolbar-container.js +0 -1
  1405. package/app/components/map-container/toolbar.js +0 -1
  1406. package/app/components/operations-pane/pane.js +0 -1
  1407. package/app/components/order-board.js +0 -1
  1408. package/app/components/order-config/activity-flow-editor.js +0 -1
  1409. package/app/components/order-config/details-editor.js +0 -1
  1410. package/app/components/order-config/entities-editor.js +0 -1
  1411. package/app/components/order-config/fields-editor.js +0 -1
  1412. package/app/components/order-config/selector.js +0 -1
  1413. package/app/components/order-config-manager-overlay.js +0 -1
  1414. package/app/components/order-flow.js +0 -1
  1415. package/app/components/order-list-overlay.js +0 -1
  1416. package/app/components/place-form-panel.js +0 -1
  1417. package/app/components/place-panel.js +0 -1
  1418. package/app/components/settings-window.js +0 -1
  1419. package/app/components/split-grid.js +0 -1
  1420. package/app/components/vehicle-form-panel.js +0 -1
  1421. package/app/components/vehicle-panel/details.js +0 -1
  1422. package/app/components/vehicle-panel/tracking.js +0 -1
  1423. package/app/components/vehicle-panel.js +0 -1
  1424. package/app/components/vendor-form-panel/create-form.js +0 -1
  1425. package/app/components/vendor-form-panel/edit-form.js +0 -1
  1426. package/app/components/vendor-form-panel.js +0 -1
  1427. package/app/components/vendor-panel/details.js +0 -1
  1428. package/app/components/vendor-panel/drivers.js +0 -1
  1429. package/app/components/vendor-panel/personnel.js +0 -1
  1430. package/app/components/vendor-panel.js +0 -1
  1431. package/app/controllers/base-controller.js +0 -1
  1432. package/app/controllers/management.js +0 -1
  1433. package/app/controllers/operations/orders/index/config/types.js +0 -1
  1434. package/app/controllers/operations/orders/index/config.js +0 -1
  1435. package/app/controllers/operations/orders/index/view.js +0 -1
  1436. package/app/helpers/feature-group.js +0 -1
  1437. package/app/helpers/flow-raw-status.js +0 -1
  1438. package/app/helpers/get-tip-amount.js +0 -1
  1439. package/app/helpers/is-facilitator-supported-place.js +0 -1
  1440. package/app/helpers/is-section-visible.js +0 -1
  1441. package/app/helpers/is-visibility-control-visible.js +0 -1
  1442. package/app/helpers/is-waypoint-record.js +0 -1
  1443. package/app/helpers/service-name.js +0 -1
  1444. package/app/routes/operations/orders/index/config/types.js +0 -1
  1445. package/app/routes/operations/orders/index/config.js +0 -1
  1446. package/app/routes/operations/orders/index/view.js +0 -1
  1447. package/app/routes/operations/routes/index/view.js +0 -1
  1448. package/app/services/context-panel.js +0 -1
  1449. package/app/services/leaflet-router-control.js +0 -1
  1450. package/app/templates/operations/orders/index/config/types.js +0 -1
  1451. package/app/templates/operations/orders/index/config.js +0 -1
  1452. package/app/templates/operations/orders/index/view.js +0 -1
  1453. package/app/templates/operations/routes/index/view.js +0 -1
  1454. package/app/utils/calculate-percentage.js +0 -1
  1455. package/app/utils/find-leaflet-layer.js +0 -1
  1456. package/app/utils/fly-to-leaflet-layer.js +0 -1
  1457. package/app/utils/format-currency.js +0 -1
  1458. package/app/utils/get-custom-field-type-map.js +0 -1
  1459. package/app/utils/get-issue-categories.js +0 -1
  1460. package/app/utils/get-issue-types.js +0 -1
  1461. package/app/utils/get-leaflet-layer-by-id.js +0 -1
  1462. package/app/utils/get-vendor-status-options.js +0 -1
  1463. package/app/utils/get-vendor-type-options.js +0 -1
  1464. package/app/utils/layer-can-bind-contextmenu.js +0 -1
  1465. package/app/utils/to-model.js +0 -1
  1466. /package/addon/components/{order-config/selector.hbs → asset/form.hbs} +0 -0
  1467. /package/addon/components/{order-flow.hbs → customer/leaflet-map.hbs} +0 -0
  1468. /package/addon/components/{vehicle-panel/tracking.hbs → customer/order-details.hbs} +0 -0
  1469. /package/addon/components/{vendor-panel/personnel.hbs → entity/details.hbs} +0 -0
  1470. /package/addon/templates/{comms/chat.hbs → analytics/reports.hbs} +0 -0
  1471. /package/addon/templates/{comms.hbs → analytics.hbs} +0 -0
  1472. /package/addon/templates/{comms/intercom.hbs → connectivity/tracking/index.hbs} +0 -0
  1473. /package/addon/templates/{operations/routes/index/view.hbs → maintenance.hbs} +0 -0
@@ -1,1648 +1,1714 @@
1
1
  fleet-ops:
2
2
  extension-name: Fleet-Ops
3
- common:
4
- active-manpower: Active Manpower
5
- address: Address
6
- amount: Amount
7
- assignee: Assignee
8
- avatar: Avatar
9
- building: Building
10
- bulk-action: Bulk Action
11
- cancel: Cancel
12
- category: Category
13
- city: City
14
- coordinates: Coordinates
15
- cost: Cost
3
+
4
+ common:
5
+ proof-of-delivery: Proof of Delivery
6
+ ad-hoc: As-Hoc
7
+ bulk-dispatch: Bulk Dispatch
8
+ dispatch-orders: Dispatch Orders
9
+ dispatch-order: Dispatch Order
10
+ assign-driver: Dispatch Orders
11
+ no-driver-assigned: No driver assigned
12
+ details: Details
13
+ name: Name
14
+ title: Title
15
+ email: Email
16
+ phone: Phone
17
+ internal-id: Internal ID
18
+ type: Type
19
+ address: Address
20
+ create-order: Create Order
21
+ coordinates: Coordinates
22
+ city: City
23
+ country: Country
24
+ status: Status
25
+ upload-new-photo: Upload a new photo
26
+ resource-actions: >-
27
+ {resource} Actions
28
+ resource-location: >-
29
+ {resource} Location
30
+ search-countries: Search Countries
31
+ select-resource-filter-by: Select {resource} to filter by
32
+ table-view: Table View
33
+ grid-view: Grid View
34
+ livemap: Live map
35
+ tracking: Tracking
36
+ activity: Activity
37
+ eta: ETA
38
+ position: Position
39
+ pos: POS
40
+ edit-address: Edit Address
41
+ new-address: New Address
42
+ select-address: Select Address
43
+
44
+ menu:
45
+ operations: Operations
46
+ dashboard: Dashboard
47
+ orders: Orders
48
+ service-rates: Service Rates
49
+ scheduler: Scheduler
50
+ order-config: Order Config
51
+ resources: Resources
52
+ drivers: Drivers
53
+ vehicles: Vehicles
54
+ fleets: Fleets
55
+ vendors: Vendors
56
+ contacts: Contacts
57
+ places: Places
58
+ fuel-reports: Fuel Reports
59
+ issues: Issues
60
+ maintenance: Maintenance
61
+ work-orders: Work Orders
62
+ equipment: Equipment
63
+ parts: Parts
64
+ connectivity: Connectivity
65
+ telematics: Telematics
66
+ devices: Devices
67
+ sensors: Sensors
68
+ events: Events
69
+ tracking: Tracking
70
+ analytics: Analytics
71
+ reports: Reports
72
+ settings: Settings
73
+ navigator-app: Navigator App
74
+ payments: Payments
75
+ notifications: Notifications
76
+ routing: Routing
77
+ custom-fields: Custom Fields
78
+ order-board: Order Board
79
+
80
+ resource:
81
+ asset: Asset
82
+ assets: Assets
83
+ activity: Activity
84
+ activities: Activities
85
+ contact: Contact
86
+ contacts: Contacts
87
+ customer-contact: Customer Contact
88
+ customer-contacts: Customer Contacts
89
+ customer-vendor: Customer Vendor
90
+ customer-vendors: Customer Vendors
91
+ customer: Customer
92
+ customers: Customers
93
+ custom-entity: Custom Entity
94
+ custom-entities: Custom Entities
95
+ device-event: Device Event
96
+ device-events: Device Events
97
+ device: Device
98
+ devices: Devices
99
+ driver: Driver
100
+ drivers: Drivers
101
+ entity: Entity
102
+ entities: Entities
103
+ equipment: Equipment
104
+ equipments: Equipments
105
+ facilitator-contact: Facilitator Contact
106
+ facilitator-contacts: Facilitator Contacts
107
+ facilitator-customer: Facilitator Customer
108
+ facilitator-customers: Facilitator Customers
109
+ facilitator-integrated-vendor: Facilitator Integrated Vendor
110
+ facilitator-integrated-vendors: Facilitator Integrated Vendors
111
+ facilitator-vendor: Facilitator Vendor
112
+ facilitator-vendors: Facilitator Vendors
113
+ facilitator: Facilitator
114
+ facilitators: Facilitators
115
+ fleet-driver: Fleet Driver
116
+ fleet-drivers: Fleet Drivers
117
+ fleet: Fleet
118
+ fleets: Fleets
119
+ fuel-report: Fuel Report
120
+ fuel-reports: Fuel Reports
121
+ integrated-vendor: Integrated Vendor
122
+ integrated-vendors: Integrated Vendors
123
+ issue: Issue
124
+ issues: Issues
125
+ maintenance: Maintenance
126
+ maintenances: Maintenances
127
+ order-config: Order Config
128
+ order-configs: Order Configs
129
+ order: Order
130
+ orders: Orders
131
+ part: Part
132
+ parts: Parts
133
+ payload: Payload
134
+ payloads: Payloads
135
+ place: Place
136
+ places: Places
137
+ purchase-rate: Purchase Rate
138
+ purchase-rates: Purchase Rates
139
+ route: Route
140
+ routes: Routes
141
+ sensor: Sensor
142
+ sensors: Sensors
143
+ service-area: Service Area
144
+ service-areas: Service Areas
145
+ service-quote-item: Service Quote Item
146
+ service-quote-items: Service Quote Items
147
+ service-quote: Service Quote
148
+ service-quotes: Service Quotes
149
+ service-rate-fee: Service Rate Fee
150
+ service-rate-fees: Service Rate Fees
151
+ service-rate-parcel-fee: Service Rate Parcel Fee
152
+ service-rate-parcel-fees: Service Rate Parcel Fees
153
+ service-rate: Service Rate
154
+ service-rates: Service Rates
155
+ telematic: Telematic
156
+ telematics: Telematics
157
+ tracking-number: Tracking Number
158
+ tracking-numbers: Tracking Numbers
159
+ tracking-status: Tracking Status
160
+ tracking-statuses: Tracking Statuses
161
+ vehicle-device: Vehicle Device
162
+ vehicle-devices: Vehicle Devices
163
+ vehicle: Vehicle
164
+ vehicles: Vehicles
165
+ vendor: Vendor
166
+ vendors: Vendors
167
+ warranty: Warranty
168
+ warranties: Warranties
169
+ waypoint: Waypoint
170
+ waypoints: Waypoints
171
+ work-order: Work Order
172
+ work-orders: Work Orders
173
+ zone: Zone
174
+ zones: Zones
175
+
176
+ order-status:
177
+ created: Created
178
+ ready: Ready
179
+ dispatched: Dispatched
180
+ started: Started
181
+ completed: Completed
182
+ canceled: Canceled
183
+
184
+ column:
185
+ address: Address
186
+ country: Country
187
+ created-at: Created At
188
+ id: ID
189
+ internal-id: Internal ID
190
+ name: Name
191
+ phone: Phone
192
+ status: Status
193
+ type: Type
194
+ updated-at: Updated At
195
+ vehicle: Vehicle
196
+ vendor: Vendor
197
+ created: Created
198
+ email: Email
199
+ title: Title
200
+ updated: Updated
201
+ fleet: Fleet
202
+ license: License
203
+ active-manpower: Active Manpower
204
+ manpower: Manpower
205
+ parent-fleet: Parent Fleet
206
+ service-area: Service Area
207
+ task: Task
208
+ zone: Zone
209
+ driver: Driver
210
+ edit-fuel: Edit Fuel
211
+ odometer: Odometer
212
+ reporter: Reporter
213
+ view: View
214
+ volume: Volume
215
+ assignee: Assignee
216
+ category: Category
217
+ priority: Priority
218
+ city: City
219
+ neighborhood: Neighborhood
220
+ postal-code: Postal Code
221
+ state: State
222
+ make: Make
223
+ model: Model
224
+ plate-number: Plate Number
225
+ year: Year
226
+ website-url: Website URL
227
+ created-by: Created By
228
+ customer: Customer
229
+ driver-assigned: Driver Assigned
230
+ dropoff: Dropoff
231
+ facilitator: Facilitator
232
+ items: Items
233
+ payload: Payload
234
+ pickup: Pickup
235
+ scheduled-at: Scheduled At
236
+ tracking: Tracking
237
+ transaction: Transaction
238
+ updated-by: Updated By
239
+ vehicle-assigned: Vehicle Assigned
240
+ service: Service
241
+ location: Location
242
+ coordinates: Coordinates
243
+ current-job: Current Job
244
+ last-seen: Last Seen
245
+ place: Place
246
+
247
+ map:
248
+ visibility-controls:
249
+ title: Visibility Controls
250
+ hide-places: Hide All Places
251
+ show-places: Show All Places
252
+ driver-controls: Driver Controls
253
+ driver-visibility-controls: Driver Visibility Controls
254
+ show-drivers: Show All Drivers
255
+ hide-drivers: Hide All Drivers
256
+ show-online-drivers: Only Show Online Drivers
257
+ show-offline-drivers: Only Show Offline Drivers
258
+ vehicle-controls: Vehicle Controls
259
+ vehicle-visibility-controls: Vehicle Visibility Controls
260
+ hide-vehicles: Hide All Vehicles
261
+ show-vehicles: Show All Vehicles
262
+ show-online-vehicles: Only Show Online Vehicles
263
+ show-offline-vehicles: Only Show Offline Vehicles
264
+ zones-panel:
265
+ title: Service Areas
266
+ create-service: Create new Service Area
267
+ show: Show all Service Areas
268
+ hide: Hide all Service Areas
269
+ action: Actions
270
+ focus: Focus
271
+ focus-resource: >-
272
+ Focus: {resource}
273
+ blur: Hide Service Area
274
+ blur-resource: >-
275
+ Hide: {resource}
276
+ create-zone: Create Zone Inside
277
+ create-zone-inside: >-
278
+ Create Zone: {serviceAreaName}
279
+ edit-resource-boundaries: Edit {resource} Boundaries
280
+ edit-boundaries: >-
281
+ Edit Boundaries: {resource}
282
+ toolbar:
283
+ create: Create Order
284
+ view-order: View Orders
285
+ view-service-area: View Service Areas
286
+ visibility: Visibility Controls
287
+ scope: Scope
288
+
289
+ activity:
290
+ form:
16
291
  code: Code
17
- country: Country
18
- config: Config
19
- created-at: Created At
20
- date-created: Date Created
21
- delete: Delete
22
- destination: Destination
292
+ code-help-text: Enter a unique identifier specific to this activity.
293
+ completes-order: Completes Order
23
294
  details: Details
295
+ details-help-text: "Provide a detailed description of the activity for the end-user's understanding."
296
+ key: Key
297
+ key-help-text: '"Enter a key used for programmatic decision-making. This key can represent one or several activities with the same identifier. Note: This key is not required to be unique."'
298
+ pod-method-placeholder: Select Proof of Delivery Method
299
+ require-pod: Requires Proof of Delivery
300
+ require-pod-help-text: This activity requires a proof to be created before it can be applied to the order.
301
+ select-pod-method: Proof of Delivery Method
302
+ status: Status
303
+ status-help-text: Specify the status displayed to the end-user when this activity is triggered.
304
+ logic-builder:
305
+ activity-logic: Activity Logic
306
+ activity-logic-help-text: Define custom logic conditions that determine when an activity becomes available in the workflow. This feature allows you to tailor the flow based on specific criteria, ensuring that each activity is triggered only when its predefined conditions are met.
307
+ activity-logic-add-logic-help-text: Create a new set of conditions that will define when an activity should be activated. Click this to start crafting a new logical rule.
308
+ activity-logic-select-logic-type-help-text: Choose the type of logic that this condition will follow. Select 'If' for a direct condition, 'And'/'Or' for compound conditions, or 'Not' to negate a condition.
309
+ activity-logic-add-condition-help-text: Add a specific requirement that must be satisfied within this logic set. Use this to specify additional criteria that control the activity's availability.
310
+ field: Field
311
+ value: Value
312
+ add-logic: Add Logic
313
+ types:
314
+ and: >-
315
+ Logical AND: True if all conditions are true
316
+ or: >-
317
+ Logical OR: True if at least one condition is true
318
+ not: >-
319
+ Logical NOT: Inverts the truth value of the condition
320
+ if: >-
321
+ Conditional logic: Executes the following action if the condition is true
322
+ operators:
323
+ equal: Checks if two values are equal
324
+ not-equal: Checks if two values are not equal
325
+ greater-than: Checks if a value is greater than another
326
+ less-than: Checks if a value is less than another
327
+ greater-than-or-equal: Checks if a value is greater than or equal to another
328
+ less-than-or-equal: Checks if a value is less than or equal to another
329
+ exists: Checks if a field or value exists
330
+ has: Checks if an object has a specific property or if a collection contains a specific element
331
+ contains: Checks if a string contains another string, or if an array includes a specific element
332
+ begins-with: Checks if a string begins with a specified substring
333
+ ends-with: Checks if a string ends with a specified substring
334
+ in: Checks if a value is within a given set or range
335
+ not-in: Checks if a value is not within a given set or range
336
+ and: Logical AND, true if both operands are true
337
+ or: Logical OR, true if at least one operand is true
338
+ not: Logical NOT, inverts the truth value
339
+ event-selector:
340
+ activity-events: Activity Events
341
+ activity-events-select-to-fire: Select which events will be activated when this activity occurs.
342
+ activity-events-select-events-info: Select the specific event you want to trigger in response to this activity.
343
+ select-event-to-add: Select event to add...
344
+ events:
345
+ order:
346
+ dispatched: Triggers when an order is successfully dispatched.
347
+ failed: Triggers when an order fails due to an error or exception.
348
+ canceled: Triggers when an order is canceled by a user, driver, or system process.
349
+ completed: Triggers when an order is completed by a driver, or system process.
350
+
351
+ contact:
352
+ fields:
353
+ contact-details: Contact Details
354
+ upload-new-photo: Upload New Photo
355
+
356
+ customer:
357
+ fields:
358
+ customer-details: Customer Details
359
+ select-address: Select Address
360
+ new-address: New Adddress
361
+ select-user: Select User
362
+ upload-new-photo: Upload New Photo
363
+ user-account: User Account
364
+ user-account-help-text: Each customer profile needs to be connected to a specific user account. This association is essential for handling the authentication process, ensuring that each customer can securely access and manage their profile and other services.
365
+
366
+ custom-entity:
367
+ fields:
24
368
  description: Description
25
- distance: Distance
26
- driver-license: Driver License
27
- driver: Driver
28
- edit: Edit
29
- email: Email
30
- export: Export
31
- fleet: Fleet
369
+ details: Details
370
+ entity-image: Entity Image
32
371
  height: Height
33
- host: Host
34
- id: ID
35
- internal-id: Internal ID
36
- item: Item
37
- key: Key
38
- label: Label
372
+ height-text: Height Text
39
373
  length: Length
40
- license: License
41
- loading: Loading...
42
- loading-resource: Loading {resourceName}...
43
- make: Make
44
- manage-message: Manage your vendors
45
- manpower: Manpower
46
- model: Model
374
+ length-text: Length Text
375
+ measurements: Measurements
47
376
  name: Name
48
- namespace: Namespace
49
- neighborhood: Neighborhood
50
- new: New
51
- odometer: Odometer
52
- options: Options
53
- orders: Orders
377
+ type: Type
378
+ weight: Weight
379
+ weight-text: Weight Text
380
+ width: Width
381
+ width-text: Width Text
382
+
383
+ driver:
384
+ fields:
385
+ avatar: Avatar
386
+ driver-details: Driver Details
387
+ select-user: Select User
388
+ select-vehicle: Select Vehicle
389
+ upload-new-photo: Upload new photo
390
+ user-account: User Account
391
+ user-account-help-text: Each driver profile needs to be connected to a specific user account. This association is essential for handling the authentication process, ensuring that each driver can securely access and manage their profile.
392
+ vendor: Vendor
393
+ select-vendor: Select Vendor
394
+ driver-license: Drivers License
395
+ no-vehicle-assigned: No Vehicle Assigned
396
+ actions:
397
+ assign-order: Assign Order to Driver
398
+ assign-vehicle: Assign Vehicle to Driver
399
+ locate-driver: Locate Driver on Map
400
+
401
+ device:
402
+ fields:
403
+ title: Device Details
404
+ device-name: Device Name
405
+ device-name-placeholder: Device Name
406
+ device-type: Device Type
407
+ device-type-placeholder: Select Device Type
408
+ device-id: Device ID
409
+ device-id-placeholder: Device ID
410
+ device-provider: Device Provider
411
+ device-provider-placeholder: Device Provider
412
+ device-model: Device Model
413
+ device-model-placeholder: Device Model
414
+ manufacturer: Manufacturer
415
+ manufacturer-placeholder: Manufacturer
416
+ serial-number: Serial Number
417
+ serial-number-placeholder: Serial Number
418
+ device-location: Device Location
419
+ device-location-placeholder: Device Location
420
+ installation-date: Installation Date
421
+ installation-date-placeholder: Select Installation Date
422
+ last-maintenance-date: Last Maintenance Date
423
+ last-maintenance-date-placeholder: Select Last Maintenance Date
424
+ data-frequency: Data Frequency
425
+ data-frequency-placeholder: Data Frequency
426
+ status: Status
427
+ status-placeholder: Select Status
428
+ telematic: Telematic
429
+ telematic-placeholder: Select Telematic
430
+ warranty: Warranty
431
+ warranty-placeholder: Select Warranty
432
+ notes: Notes
433
+ notes-placeholder: Notes
434
+
435
+ entity:
436
+ fields:
437
+ declare: Declare
438
+ declare-text: Declare Text
439
+ description: Description
440
+ description-text: Description Text
441
+ height: Height
442
+ height-text: Height Text
443
+ id-text: ID Text
444
+ length: Length
445
+ length-text: Length Text
446
+ measurement-title: Measurement Title
447
+ name-text: Name Text
448
+ price: Price
449
+ price-text: Price Text
450
+ price-title: Price Title
451
+ sale-price: Sale Price
452
+ sale-price-text: Sale Price Text
453
+ sku: SKU
454
+ sku-text: SKU Text
455
+ weight: Weight
456
+ weight-text: Weight Text
457
+ width: Width
458
+ width-text: Width Text
459
+
460
+ fleet:
461
+ fields:
462
+ fleet-details: Fleet Details
463
+ fleet-name: Fleet Name
54
464
  parent-fleet: Parent Fleet
55
- phone: Phone
56
- photos: photos
57
- plate-number: Plate number
58
- postal-code: Postal code
59
- priority: Priority
60
- reload: Reload
61
- reload-data: Reload data
62
- remove: Remove
465
+ select-parent-fleet: Select parent fleet to assign fleet to
466
+ select-service: Select service area to assign fleet to
467
+ select-status: Select status
468
+ select-status-fleet: Select the status of the fleet.
469
+ select-vendor: Select vendor to assign fleet to
470
+ select-zone: Select zone to assign fleet to
471
+ service-title: Assign to Service Area
472
+ task-mission-title: Task/ Mission
473
+ task-text: "Give a description of this fleet's primary task or mission if applicable."
474
+ zone-title: Assign to Zone
475
+ active-manpower: Active Manpower
476
+ task: Task
477
+ driver-listing:
478
+ search-driver: Search drivers in fleet
479
+ add-driver: Add driver to fleet
480
+ loading-message: Loading fleet drivers...
481
+ vehicle-listing:
482
+ search-vehicle: Search vehicle in fleet
483
+ add-vehicle: Add vehicle to fleet
484
+ loading-message: Loading fleet vehicle...
485
+ actions:
486
+ assign-driver: Assign Driver to Fleet
487
+
488
+ fuel-report:
489
+ fields:
490
+ details: Fuel Report Details
63
491
  reporter: Reporter
64
- sandbox: Sandbox
65
- save-changes: Save changes
492
+ select-reporter: Select Reporter
493
+ fuel-cost: Fuel Cost
494
+ odometer: Odometer
495
+ select-volume-help-text: Select the metric unit and volume of fuel to report.
496
+ fuel-volume: Fuel/ Volume
497
+
498
+ issue:
499
+ fields:
500
+ title: Title
501
+ add-tags: Add tags
502
+ assigned-to: Assigned To
503
+ category: Issue Category
504
+ issue-report: Issue Report
505
+ priority: Issue Priority
506
+ report: Issue Report
507
+ reported-by: Reported By
508
+ select-assign: Select Assignee
509
+ select-category: Select issue category
510
+ select-priority: Select issue priority
511
+ select-reporter: Select Reporter
512
+ select-status: Select issue status
513
+ select-type: Select issue type
514
+ tags: Issue Tags
515
+ type: Issue Type
516
+
517
+ order:
518
+ fields:
519
+ ad-hoc: Ad-Hoc
520
+ ad-hoc-help-text: Toggling Ad-Hoc will enable the order to intelligently ping drivers within the order pickup vicinity about the order allowing the first available driver to accept the order. This is an alternative to manually assigning the driver for real-time orders.
521
+ add-entity: Add Entity
522
+ add-item-button: Add Item
523
+ add-item-order: Add Item to Order
524
+ add-waypoint: Add Waypoint
525
+ add-waypoint-help-text: "Use the `Add Waypoint` button to add more stops for this order. The Fleetbase routing engine will automatically optimize the route as each stop is added or removed."
526
+ adhoc-ping: Adhoc Ping Distance
527
+ adhoc-ping-help-text: This setting determines the adhoc distance to ping for this order, if unset it will fallback to the default setting.
528
+ adhoc-ping-message: Distance must be in meters
529
+ apply-service-rate: Apply service rate
530
+ assign-driver: Assign Driver
531
+ assign-driver-help-text: Assign the driver this order will be dispatched to.
532
+ assign-driver-placeholder: Select Driver
533
+ assign-vehicle: Assign Vehicle
534
+ assign-vehicle-help-text: Assign the vehicle this order will be performed with.
535
+ assign-vehicle-placeholder: Select Vehicle
536
+ breakdown: Breakdown
537
+ customer: Customer
538
+ customer-help-text: "Optionally assign the customer of this order. If it's a new customer, use the 'New Customer' button above."
539
+ customer-placeholder: Select Customer
540
+ dispatch: Dispatch
541
+ dispatch-help-text: Toggling dispatch will dispatch this order immediatley following creation.
542
+ documents-panel-title: "Documents & Files"
543
+ dropoff: Dropoff
544
+ edit-address: Edit Address
545
+ edit-item: Edit Item
546
+ facilitator: Facilitator
547
+ facilitator-help-text: Optionally assign a facilitator for this order, a facilitator can be a 3rd party subcontractor or service that will facilitate the transport of this order.
548
+ facilitator-placeholder: Select Facilitator
549
+ info-text: Select a real time service quote to apply to this order. Once a quote is applied to the order, it will become a purchased rate. Transactions will be tracked within the Fleetbase ledger.
550
+ internal-id: Internal ID
551
+ internal-id-help-text: Use this field to optionally set a custom identifier or internal identifier for the order.
552
+ invalid-coordinates: "Invalid coordinates!"
553
+ items-drop: Items drop at
554
+ loading-message: Loading service quotes...
555
+ notes-placeholder: Enter order notes here....
556
+ notes-title: Notes
557
+ optimize-route: Optimize Route
558
+ optimize-route-help-text: Fleetbase will automatically optimize the route.
559
+ order-type: Order Type
560
+ order-type-help-text: Selecting the order type will tell fleetbase what order configurations to use.
561
+ order-type-placeholder: Select Order Type
562
+ payload-entities: Payload / Entities
563
+ pickup: Pickup
564
+ proof-delivery: Proof of Delivery
565
+ proof-delivery-help-text: Select the type of proof of delivery to require. This can either be QR code scan or Signature method.
566
+ proof-delivery-placeholder: Select Proof of Delivery Method
567
+ refresh-button: Refresh
568
+ require-proof: Require Proof of Delivery
569
+ require-proof-help-text: Toggling this will require driver to complete a proof of delivery.
570
+ return: Return
571
+ route: Route
572
+ route-error: Route optimization failed, check route entry and try again.
573
+ route-label: "Multiple Dropoff's"
66
574
  schedule: Schedule
67
- search: Search
68
- security-access-code: Security access code
69
- service-area: Service area
575
+ schedule-help-text: The date and time the order will be dispatched. If no driver is assigned at time of dispatch, the dispatch will fail. If the order is Ad-Hoc the order will be pinged to drivers in vicinity of pickup.
576
+ select-destination: Select Destination
577
+ select-dropoff: Select Dropoff
578
+ select-pickup: Select Pickup
579
+ select-return: Select Return
580
+ select-waypoint: Select Waypoint
70
581
  service: Service
582
+ select-service-rate: Select Service Rate
583
+ service-help-text: Select a defined service rate to generate real time service quotations to apply to this order.
584
+ service-quotes-help-text: Select which service rate to fetch quotes for.
585
+ service-type: Service Type
586
+ service-type-placeholder: Select service Type
587
+ sku: SKU
588
+ activity: Activity
589
+ comments-title: Comments
590
+ date-dispatched: Date Dispatched
591
+ date-scheduled: Date Scheduled
592
+ date-started: Date Started
593
+ driver: Driver
594
+ driver-assigned: Driver Assigned
595
+ no-driver-assigned: No Driver Assigned
596
+ get-label: Get Label
597
+ order-notes-updated: Order notes updated.
598
+ payload: Payload
599
+ proof-of-delivery: Proof of Delivery
600
+ purchase-rate-panel-title: Purchase Rate
601
+ route-panel-title: Route
602
+ save-order-note: Save Order Note
603
+ tracking: Tracking
604
+ tracking-number: Tracking Number
605
+ vehicle-assigned: Vehicle Assigned
606
+ view-activity: View Activity
607
+ waypoint-actions: Waypoint Actions
608
+ documents-files: Documents & Files
609
+ order-metadata: Order Metadata
610
+ order-label: Order Label
611
+ waypoint-label: Waypoint Label
612
+ current-eta: Current ETA
613
+ ect: ECT
614
+ current-destination: Current Destination
615
+ no-service-quotes: No service quotes.
616
+ input-order-routes: Input order route to view service quotes.
617
+ service-quote-info: Select a real time service quote to apply to this order. Once a quote is applied to the order, it will become a purchased rate. Transactions will be tracked within the Fleetbase ledger.
618
+ prompts:
619
+ update-details-success: '{orderId} details has been updated.'
620
+ route-error: Route optimization failed, check route entry and try again.
621
+ route-update-success: '{orderId} route details updated.'
622
+ unassign-driver-title: Are you sure you wish to unassing the driver ({driverName}) from this order?
623
+ unassign-driver-body: Once the driver is unassigned, the driver will no longer have access to this orders details.
624
+ unassign-driver-success: Driver has been unassigned from this order.
625
+ no-driver-assigned-error: No driver assigned to this order.
626
+ failed-to-load-order-label: Failed to load order label.
627
+ failed-to-load-waypoint-label: Failed to load waypoint label.
628
+ unable-to-add-entity: Unable to add new entity to order.
629
+ assign-driver-success: Driver ({driverName}) has been assigned to order {orderId}.
630
+ cancel-title: Are you sure you wish to cancel this order?
631
+ cancel-body: Once this order is canceled, the order record will still be visible but activity cannot be added to this order.
632
+ cancel-success: Order {orderId} has been canceled.
633
+ dispatch-title: Are you sure you want to dispatch this order?
634
+ dispatch-body: Once this order is dispatched the assigned driver will be notified.
635
+ dispatch-success: Order {orderId} has been dispatched.
636
+ order-bulk-search: Input comma delimited order ID's or tracking numbers to perform a bulk search
637
+ actions:
638
+ create-new-customer: Create New Customer
639
+ create-new-facilitator: Create New Facilitator
640
+ create-new-place: Create New Place
641
+ change-driver: Change Driver
642
+ assign-driver: Assign Driver
643
+ update-activity: Update Activity
644
+ reload-activity: Reload Activity
645
+ view-activity-as-timeline: View as Timeline
646
+ view-activity-as-list: View as List
647
+ cancel-order: Cancel Order
648
+ dispatch-order: Dispatch Order
649
+ dispatch-orders: Dispatch Orders
650
+ assign-driver-to-orders: Assign Driver to Orders
651
+ edit-order-details: Edit Order Details
652
+ edit-order-route: Edit Order Route
653
+ edit-order-metadata: Edit Order Metadata
654
+ update-order-activity: Update Order Activity
655
+ submit-new-activity: Submit New Activity
656
+ add-entity: Add Entity
657
+ unassign-driver-name: >-
658
+ Unassign Driver: {driverName}
659
+ schedule-card:
660
+ destination: Destination
661
+ unassign-driver: Unassign Driver?
662
+ unassign-text: You are about to unassign the driver for Order {orderId}. Click continue to confirm removal of driver.
663
+ unassign-button: Continue and unassign driver
664
+ assign-driver: Assign New Driver?
665
+ assign-text: You are about to assign a new driver ({driverName}) to Order {orderId}. Click continue to confirm driver.
666
+ assign-button: Continue and assign driver
667
+ date: Date scheduled
668
+ driver-assigned: Driver
669
+ vehicle-assigned: Vehicle
670
+ no-driver: No Driver
671
+ no-vehicle: No Vehicle
672
+ select-driver: Select Driver
673
+ select-vehicle: Select Vehicle
674
+ kanban:
675
+ status-updated: Order activity updated to {status} status.
676
+ cannot-update-status: Order unable to move to {status} status.
677
+
678
+ order-config-manager:
679
+ title: Orders Configuration
680
+ message: Order configurations allow you to define dynamic configurations which will tell Fleetbase how different types of orders should be executed.
681
+ configuration: Configuration
682
+ new-order-config: New Order Config
683
+ select-order-config: Select Order Config
684
+ create-new-title: Create a new order configuration
685
+ create-warning-message: Order configuration requires a name
686
+ create-success-message: New order config created successfully.
687
+ no-order-config-selected: No order configuration selected.
688
+ saved-success-message: '{orderConfigName} configuration saved.'
689
+ cloned-success-message: Order config successfully cloned.
690
+ enter-clone-name: Enter name of cloned configuration
691
+ no-config-name-warning-message: No config name entered.
692
+ delete-warning-message: Once this order configuration is deleted you will not be able to create orders using it anymore. Are you sure?
693
+ uninstall-order-config: Uninstall Configuration
694
+ uninstall-order-config-success-message: Extension {extensionName} uninstalled.
695
+ select-order-config-to-start: Select or create an order config to start.
696
+ tabs:
697
+ details: Details
698
+ custom-fields: Custom Fields
699
+ activity-flow: Activity Flow
700
+ entities: Entities
701
+ details:
702
+ details: Details
703
+ name: Name
704
+ description: Description
705
+ tags: Tags
706
+ add-tags: Add Tags
707
+ key: Key
708
+ version: Version
709
+ namespace: Namespace
710
+ controls: Controls
711
+ delete-config: Delete Config
712
+ delete:
713
+ delete-title: Delete this order config?
714
+ delete-body-message: Once this order config is deleted it will not be recoverable and you will lose all configurations.
715
+ confirm-delete: Delete
716
+ activity-flow:
717
+ save-activity-flow: Save Activity Flow
718
+ edit-activity-unique-code-warning: Activity code must be unique!
719
+ custom-fields:
720
+ new-field-group: New field group
721
+ new-custom-field: Create new custom field
722
+ grid-size: Grid Size
723
+ delete-custom-field-prompt:
724
+ modal-title: Delete this custom field?
725
+ delete-body-message: Once this custom field is deleted it will not be recoverable and you will lose all configurations.
726
+ confirm-delete: Delete
727
+ delete-custom-field-group-prompt:
728
+ modal-title: Delete this field group?
729
+ delete-body-message: Once this field group is deleted it will not be recoverable and you will lose all custom fields inside.
730
+ confirm-delete: Delete
731
+ entities:
732
+ new-custom-entity: New Custom Entity
733
+ name: Name
734
+ description: Description
735
+ type: Type
736
+ length: Length
737
+ width: Width
738
+ height: Height
739
+ weight: Weight
740
+ delete-custom-entity-title: Delete this custom entity?
741
+ delete-custom-entity-body: Once this custom entity is deleted it will not be recoverable and you will lose all configurations.
742
+ confirm-delete: Confirm
743
+ types:
744
+ no-order-installed: No order configurations installed!
745
+ you-have-no-configs: You currently have no order configs installed, check at the extensions to install an order configuration to get started.
746
+ view-extensions: View extensions
747
+
748
+ place:
749
+ fields:
750
+ details: Place Details
751
+ building: Building
752
+ neighborhood: Neighborhood
753
+ postal-code: Postal Code
754
+ security-access-code: Security Access Code
755
+ city: City
756
+ province: Province
757
+ country: Country
71
758
  state: State
72
- status: Status
73
759
  street-1: Street 1
74
760
  street-2: Street 2
75
- street: Street
76
- task: Task
77
- title: Title
761
+ coordinates: Coordinates
762
+ phone: Phone
763
+ prompts:
764
+ vendor-assigned-success: Vendor assigned {placeName} as new vendor location.
765
+ actions:
766
+ locate-place: Locate Place on Map
767
+
768
+ service-area:
769
+ fields:
770
+ details: Service Area Details
771
+ area-color: Fill Color
772
+ area-color-help-text: Customize the fill color for this service area.
773
+ border-color: Border Color
774
+ border-color-help-text: Customize the border color for this service area.
775
+ country: Country
776
+ country-help-text: Optionally set the country in which this Service Area is located or based in.
777
+ name: Name
778
+ name-help-text: Set a display name for the service area.
78
779
  type: Type
79
- unit: Unit
80
- updated-at: Updated At
81
- upload-new: Upload new
82
- uploading: Uploading...
83
- value: Value
84
- vehicle: Vehicle
85
- vendor: Vendor
780
+ type-help-text: Select the type definition for this service area.
781
+
782
+ service-rate:
783
+ fields:
784
+ details: Service Rate Details
785
+ terms: Terms
786
+ add-drop-off-button: Add drop-off range
787
+ additional-fee: Additional Fee
788
+ algorithm-help-text: Define a formula to be evaluated for this service rate calculation.
789
+ algorithm-label: Algorithm
790
+ algorithm-placeholder: >-
791
+ (( '{distance}' / 50 ) * .05 ) + (( '{time}' / 60 ) * .01)
792
+ base-fee-help-text: Set a base fee which represents the minimum cost for this serice.
793
+ base-fee-label: Base Fee
794
+ calculation-method-help-text: Method used to calculate the COD fee.
795
+ calculation-method-label: COD Fee Calculation Method
796
+ calculation-method-placeholder: Select COD fee calculation method
797
+ cash-delivery-label: "Enable additional fee for `cash on delivery` orders?"
798
+ cash-delivery-title: Cash on Delivery
799
+ custom-algorithm-info-message: "This option is to define a custom calculation for this service's fee with variables."
800
+ custom-algorithm-info-second-message: Note that variables must be wrapped in a single curly brace.
801
+ custom-algorithm-title: Custom Algorithm
802
+ delivery-flat-fee: Cash on Delivery Flat Fee
803
+ delivery-flat-fee-help-text: Defines a flat fee to be added during peak hours.
804
+ deminsions-unit: Dimension
805
+ distance: Distance
806
+ distance-continue-message: >-
807
+ - the distance in meters from the order route.
808
+ distance-message: distance
809
+ distance-unit: Distance Unit
810
+ distance-unit-help-text: The unit of distance can be either per kilometer or meter.
811
+ distance-unit-placeholder: Select distance unit.
812
+ duration-terms-help-text: Add additional terms of service regarding duration for this serice rate.
813
+ duration-terms-label: Duration Terms
814
+ duration-terms-placeholder: Duration terms if applicable
815
+ estimated-days: Estimated Delivery Days
816
+ estimated-days-help-text: "The estimated number of days this service will take. For a same-day service use `0`."
817
+ example: Example
818
+ example-message: If the order request is a distance of 2,200 meters with an ETA of 30 minutes.
819
+ example-second-message: Then the following formula will calculate a service fee of $2.50, which will be added to the base fee.
820
+ fee: Fee
821
+ fee-percentage: Cash on Delivery Fee Percentage
822
+ fee-percentage-help-text: Defines a percentage based fee from the service rate subtotal to be added as the COD fee.
823
+ fixed-meter: Fixed Meter Options
824
+ fixed-meter-example-text: >-
825
+ For example: Every 1 kilometer a fixed fee is defined. If the distance traveled by the order is 3,300 meters the fixed fee for the 3rd kilometer will be added to the sum of the base fee.
826
+ fixed-meter-text: This option defines a fixed fee per kilometer.
827
+ flat-fee-help-text: Defines a flat fee to be added during peak hours.
828
+ flat-fee-label: Peak Hours Flat Fee
829
+ height-label: Height
830
+ height-placeholder: "Height in {parcelFeeDimension}"
831
+ length-label: Length
832
+ length-placeholder: "Length in {parcelFeeDimension}"
833
+ max: Max
834
+ max-drop: Max Drop
835
+ maximum-distance: Maximum Distance
836
+ maximum-distance-help-text: The maximum distance servicable.
837
+ min: Min
838
+ min-drop: Min Drop
839
+ order-type-placeholder: Order Type Placeholder
840
+ peak-hours-end-help-text: Defines the what time the peak hour fee ends.
841
+ peak-hours-end-label: Peak Hours End
842
+ peak-hours-fee-help-text: Method used to calculate the peak hours fee.
843
+ peak-hours-fee-label: Peak Hours Fee Calculation Method
844
+ peak-hours-fee-placeholder: Select peak hours fee calculation method
845
+ peak-hours-label: "Enable additional fee for order made during service defined `peak hours`?"
846
+ peak-hours-percentage-help-text: Defines a percentage based fee from the service rate subtotal to be added during peak hours.
847
+ peak-hours-percentage-label: Peak Hours Fee Percentage
848
+ peak-hours-start-help-text: Defines the what time the peak hour fee starts.
849
+ peak-hours-start-label: Peak Hours Start
850
+ peak-hours-title: Peak Hours
851
+ per-drop-off-example-text: >-
852
+ For example: 1-5 dropoffs in the order will cost $x amount, 5-10 dropoffs per order will cost $x amount. This will be added to the sum of the base fee.
853
+ per-drop-off-text: This option defines a fixed fee per drop-offs.
854
+ per-drop-off-title: Per Drop-off Options
855
+ per-meter: Per Meter
856
+ per-meter-example-text: >-
857
+ For example: '{fee}' * '{distance}' + '{baseFee}'
858
+ per-meter-rate-fee: Per Meter Flat Rate Fee
859
+ per-meter-rate-fee-help-text: The single flat fee which will be multipled by the distance.
860
+ per-meter-text: This option allows the service to be calculated per kilometer or meter, that means you define a flat fee which is then multiplied by the distance which can be either meter or kilometer.
861
+ percel-fee-title: "Parcel Fee's"
862
+ percentage-placeholder: Percentage
863
+ rate-calculation-help-text: The method this service will use to calculate rates when queried.
864
+ rate-calculation-label: Rate Calculation Method
865
+ rate-calculation-placeholder: Select rate calculation method
866
+ restrict-service-title: Restrict Service
867
+ select-unit-placeholder: Select unit
868
+ select-order-type: Select order type
869
+ service-area-help-text: Restrict this service to order request originating from a service area.
870
+ service-area-label: Service Area
871
+ service-area-placeholder: Restrict to service area
872
+ service-name: Service Name
873
+ service-name-help-text: Display name for this service.
874
+ service-order-help-text: Select an order configuration to which this service rate will be exclusively applied. This ensures that only orders created with the selected order configuration can utilize this specific service rate.
875
+ service-order-label: Service Order Type
876
+ time-continue-message: >-
877
+ - the route ETA in seconds.
878
+ time-message: time
879
+ weight-label: Weight
880
+ weight-unit: Weight Unit
881
+ width-label: Width
882
+ width-placeholder: "Width in {parcelFeeDimension}"
883
+ zone-help-text: Restrict this service to order request originating from a specific zone.
884
+ zone-label: Zone
885
+ zone-placeholder: Restrict to zone
886
+ cod-fee-label: Cod Fee Label
887
+
888
+ vehicle:
889
+ fields:
890
+ avatar: Avatar
891
+ driver-assigned: Driver Assigned
892
+ make: Make
893
+ model: Model
894
+ plate-number: Plate Number
895
+ select-driver: Select Driver
896
+ upload-new-photo: Upload New Photo
897
+ vehicle-make: Vehicle make
898
+ vehicle-model: Vehicle model
899
+ vehicle-year: Vehicle year
86
900
  vin-number: VIN Number
87
- volume: Volume
901
+ year: Year
902
+ actions:
903
+ locate-vehicle: Locate Vehicle on Map
904
+
905
+ vendor:
906
+ fields:
907
+ setup-vendor: Setup Vendor
908
+ choose-vendor: Choose integrated vendor provider
909
+ email-help-text: The vendor's email, this can be used to trigger emails to the vendor.
910
+ name-help-text: The vendor's name, typically the name of a business.
911
+ phone-text: >-
912
+ The vendor's phone #, this can be used to trigger SMS or messages to the vendor.
913
+ website: Website URL
914
+ edit-address: Edit Address
915
+ new-address: New Address
916
+ select-address: Select Address
917
+ select-vendor-status: Select vendor status
918
+ select-vendor-type: Select vendor type
919
+ title: Setup
920
+ vendor-details: Vendor Details
921
+ website-help-text: The vendor's website, optionally add the vendors website for reference.
922
+
923
+ integrated-vendor:
924
+ fields:
925
+ provider: Provider
926
+ credentials: Credentials
927
+ credentials-configure-help-text: Optionally supply your own {param} to configure this vendor.
928
+ options: Options
929
+ choose-vendor: Choose integrated vendor provider
930
+ select-integrated: Select an integrated vendor provider.
931
+ advanced-options: Advanced Options
932
+ cancel-credentials: Cancel credentials reset
933
+ sensitive-credentials: Sensitive credentials can only be reset, to update credentials you must re-enter the credentials.
934
+ reset-credentials: Click here to reset credentials
935
+ sandbox: Sandbox
936
+ webhook: Webhook URL
937
+ webhook-help-text: Integrated vendors will typically require this so that Fleetbase can receive activity updates on the order. Do not change unless you know what you are doing! Changing this may break your order updates!
938
+ host: Custom Host
939
+ host-help-text: Optionally provide a custom host that should be used for this integration.
940
+ namespace: Custom Namespace
941
+ namespace-help-text: Optionally provide a custom namespace or api version that should be used for the integration.
942
+
943
+ zone:
944
+ fields:
945
+ details: Zone Details
946
+ border-color: Border Color
947
+ customize-border: Customize Border
948
+ customize-fill-color: Customize Fill Color
949
+ description: Description
950
+ name: Name
951
+ name-help-text: Input a name for thiz zone.
952
+ zone-color: Zone Color
953
+
954
+ # Legacy Translations Refactoring IN Progress
955
+ activity-logic-builder:
956
+ activity-logic: Activity Logic
957
+ activity-logic-help-text: Define custom logic conditions that determine when an activity becomes available in the workflow. This feature allows you to tailor the flow based on specific criteria, ensuring that each activity is triggered only when its predefined conditions are met.
958
+ activity-logic-add-logic-help-text: Create a new set of conditions that will define when an activity should be activated. Click this to start crafting a new logical rule.
959
+ activity-logic-select-logic-type-help-text: Choose the type of logic that this condition will follow. Select 'If' for a direct condition, 'And'/'Or' for compound conditions, or 'Not' to negate a condition.
960
+ activity-logic-add-condition-help-text: Add a specific requirement that must be satisfied within this logic set. Use this to specify additional criteria that control the activity's availability.
961
+ field: Field
962
+ value: Value
963
+ add-logic: Add Logic
964
+
965
+ activity-event-selector:
966
+ activity-events: Activity Events
967
+ activity-events-select-to-fire: Select which events will be activated when this activity occurs.
968
+ activity-events-select-events-info: Select the specific event you want to trigger in response to this activity.
969
+ select-event-to-add: Select event to add...
970
+
971
+ custom-field-form-panel:
972
+ meta-col-span: 'Meta: Column-Span'
973
+ col-span-size: Column Span Size
974
+ custom-field-title-concat: 'Custom Field: '
975
+ new-custom-field: New custom field
976
+ close-new-custom-field: Cancel custom field changes
977
+ save-custom-field: Save Changes
978
+ create-custom-field: Create New Field
979
+ field-name: Field Name
980
+ field-label: Field Label
981
+ field-type: Field Type
982
+ select-field-type: Select field type...
983
+ field-description: Field Description
984
+ field-help-text: Field Help Text
985
+ field-default-value: Field Default Value
986
+ field-is-required: Field is Required
987
+ field-is-editable: Field is Editable
988
+ field-options: Field Options
989
+ field-validation-rules: Field Validation Rules
990
+ field-model-type: Field Model Type
991
+ field-select-model-type: Select model type
992
+ add-new-option: Add new option
993
+
994
+ activity-form-panel:
995
+ title-concat: 'Activity: '
996
+ new-activity-title: Create new activity
997
+ key: Key
998
+ code: Code
999
+ status: Status
1000
+ details: Details
1001
+ proof-of-delivery: Proof of Delivery
1002
+ require-pod: Requires Proof of Delivery
1003
+ require-pod-help-text: This activity requires a proof to be created before it can be applied to the order.
1004
+ select-pod-method: Proof of Delivery Method
1005
+ pod-method-placeholder: Select Proof of Delivery Method
1006
+ completes-order: Completes Order
1007
+ complete: Complete
1008
+ key-help: "Enter a key used for programmatic decision-making. This key can represent one or several activities with the same identifier. Note: This key is not required to be unique."
1009
+ code-help: Enter a unique identifier specific to this activity.
1010
+ status-help: Specify the status displayed to the end-user when this activity is triggered.
1011
+ details-help: Provide a detailed description of the activity for the end-user's understanding.
1012
+ custom-entity-issue-form-panel:
1013
+ new-custom-entity: New Custom Entity
1014
+ name: Name
1015
+ description: Description
1016
+ details: Details
1017
+ type: Type
1018
+ length: Length
1019
+ width: Width
1020
+ height: Height
88
1021
  weight: Weight
89
- website-url: Website URL
90
- website: Website
1022
+ entity-image: Entity Image
1023
+ measurements: Measurements
1024
+
1025
+ avatar-picker:
1026
+ avatar: Avatar
1027
+ select-map-avatar: Select map avatar
1028
+ select-avatar-rendering: Select an avatar to be used for rendering on maps when using geolocation tracking features.
1029
+ select-avatar: Select avatar
1030
+ select-for-preview: Select for preview
1031
+
1032
+ admin:
1033
+ navigator-app:
1034
+ title: Navigator App
1035
+ name: Instance Linking URL
1036
+ message: Use this URL to link the official Navigator app to this {companyName} instance. Opening this URL on a mobile device will open the Navigator app and update it's configuration and branding.
1037
+ settings: Entity Settings
1038
+ select-input: Allow driver to update entity details
1039
+ driver-settings: Driver Settings
1040
+ description: Enable driver on-board
1041
+ upload-document: Require driver to upload documents
1042
+ upload-body: Add documents
1043
+ document: Document
1044
+ avatar-management:
1045
+ upload-avatar: Upload Avatar
1046
+ view-avatar: View Avatar
1047
+ vehicles : Vehicles
1048
+ drivers : Drivers
1049
+ places : Places
1050
+
1051
+ entity-field-editing-settings:
1052
+ entitiy-field-editing-settings: Entity Field Editing Settings
1053
+ entity-field-editing-settings-help-text: These settings determine which fields of an entity are editable by a driver via Navigator App
1054
+ select-order-config: Select Order Config
1055
+ select-order-config-help-text: Select an order config which these settings will apply to
1056
+ enable-driver-to-edit-entity-fields: Allow driver to edit entity details
1057
+ enable-driver-to-edit-entity-fields-help-text: Enabling this toggle grants the driver permission to modify specific entity fields chosen below.
1058
+
1059
+ driver-onboard-settings:
1060
+ driver-onboard-settings: Driver Onboard Settings
1061
+ enable-driver-onboard-from-app: Enable driver onboard from Navigator App
1062
+ enable-driver-onboard-from-app-help-text: Enabling this setting allows drivers to independently onboard (create their own account) via the Navigator App.
1063
+ select-onboard-method: Select driver onboard method
1064
+ select-onboard-method-help-text: This setting determines how drivers are permitted to create their accounts through the Navigator App. Choose 'Invite' if drivers need to receive an email invitation to create their account. Select 'Button' if you wish to enable a button within the app that allows anyone to create a driver account.
1065
+ require-driver-to-upload-onboard-documents: Require driver to upload onboard documents
1066
+ require-driver-to-upload-onboard-documents-help-text: This setting enforces documents that a driver must provide before their account can be created.
1067
+ required-onboard-documents: Required onboard documents
1068
+ required-onboard-documents-help-text: Input all the onboard documents required for a driver to provide below using the "Add onboard document" button.
1069
+ enter-document-name: Enter document name
1070
+ add-onboard-document: Add onboard document
1071
+
1072
+ cell:
1073
+ driver-name:
1074
+ not-assigned: No driver assigned
1075
+
1076
+ live-map-drawer:
1077
+ driver-listing:
1078
+ location: Location
1079
+ current-job: Current Job
1080
+ last-seen: Last Seen
1081
+ view-driver: View driver details...
1082
+ edit-driver: Edit driver...
1083
+ locate-driver: Locate driver...
1084
+ delete-driver: Delete driver...
1085
+ warning-message: Unable to locate driver.
1086
+ message: Filter drivers by keyword...
1087
+ place-listing:
1088
+ location: Location
1089
+ place: Place
1090
+ view-place: View place details...
1091
+ edit-place: Edit place...
1092
+ locate-place: Locate place...
1093
+ delete-place: Delete place...
1094
+ warning-message: Unable to locate place.
1095
+ message: Filter places by keyword...
1096
+ vehicle-listing:
1097
+ location: Location
1098
+ last-seen: Last Seen
1099
+ view-vehicle: View vehicle details...
1100
+ edit-vehicle: Edit vehicle...
1101
+ locate-vehicle: Locate vehicle...
1102
+ delete-vehicle: Delete vehicle...
1103
+ warning-message: Unable to locate vehicle.
1104
+ message: Filter vehicles by keyword...
1105
+
1106
+ scheduler:
1107
+ success-message: Order {orderId} has been scheduled at {orderAt}.
1108
+ info-message: Order {orderId} has been unscheduled.
1109
+ title: Scheduler
1110
+ unscheduled-orders: Unscheduled Orders
1111
+ scheduled-orders: Scheduled Orders
1112
+ unauthorized-to-schedule: You are not authorized to schedule orders.
1113
+ scheduling-for: Scheduling for {orderId}
1114
+
1115
+ modals:
1116
+ new-custom-field-group:
1117
+ modal-title: Create a new custom field group
1118
+ group-name: Group Name
1119
+
1120
+ assign-driver:
1121
+ select-driver: Select Driver
1122
+ select-assign: Select Driver to Assign
1123
+
1124
+ clone-config-form:
1125
+ name: Config Name
1126
+ description: Config Description
1127
+
1128
+ driver-assign-order:
1129
+ order: Select Order
1130
+ assign-order: Select Order to Assign
1131
+
1132
+ driver-assign-vehicle:
1133
+ vehicle: Select Vehicle
1134
+ assign-vehicle: Select Vehicle to Assign
1135
+
1136
+ driver-assign-vendor:
1137
+ vendor: Select Vendor
1138
+
1139
+ driver-details:
1140
+ job: Current Job
1141
+ view: View on map
1142
+
1143
+ driver-form:
1144
+ select-vendor: Select Vendor
1145
+ select-vehicle: Select Vehicle
1146
+
1147
+ edit-meta-form:
1148
+ add: Add metafield
1149
+
1150
+ entity-form:
1151
+ name-text: Name of item or entity.
1152
+ id-text: Use this field to optionally set a custom identifier or internal identifier for the entity.
1153
+ sku: SKU
1154
+ sku-text: Stock keeping unit number if applicable.
1155
+ description: Description
1156
+ description-text: Additional description text of entity.
1157
+ price-title: Pricing & Value
1158
+ price: Price
1159
+ price-text: Price of entity.
1160
+ sale-price: Sale Price
1161
+ sale-price-text: Sale price or discounted price of entity.
1162
+ declare: Declared Value
1163
+ declare-text: Declared value of entity, useful is insurable.
1164
+ measurement-title: Measurements & Weight
1165
+ length: Length
1166
+ length-text: The length of the entity.
91
1167
  width: Width
92
- year: Year
93
- zone: Zone
94
- total: Total
95
- back: Back
96
- done: Done
97
- tracking: Tracking Number
1168
+ width-text: The width of the entity.
1169
+ height: Height
1170
+ height-text: The height of the entity.
1171
+ weight: Weight
1172
+ weight-text: The weight of the entity.
1173
+
1174
+ entity-meta-field-prompt:
1175
+ name: Meta Field Key
1176
+
1177
+ fleet-form:
1178
+ title: Fleet Name
1179
+ assign: Assign to Service Area
1180
+ assign-text: Select service area to assign fleet to
1181
+ zone: Assign to Zone
1182
+ zone-text: Select zone to assign fleet to
1183
+ task: Task/ Mission
1184
+ task-text: Give a description of this fleet's primary task or mission if applicable.
1185
+ select-task: Select task
1186
+ status-text: Select the status of the fleet.
1187
+ select-status: Select status
1188
+
1189
+ fuel-report-details:
1190
+ fuel: Fuel/ Volume
1191
+
1192
+ fuel-report-form:
1193
+ select-driver: Select Driver
1194
+ select-vehicle: Select Vehicle
1195
+ volume: Volume
1196
+ volume-text: Select the metric unit and volume of fuel to report.
1197
+
1198
+ group-details:
1199
+ name: Group Name
1200
+ member: Members
1201
+ address: Address
1202
+
1203
+ group-form:
1204
+ title: Group Name
1205
+ users-add: Select users to add to group
1206
+ search: Search and select users to add to this group.
1207
+ select-user: Select user to add to group
1208
+ no-users: No users added to group
1209
+
1210
+ install-prompt:
1211
+ message: You are attempting to install the extension {extensionName}. Are you sure you wish to proceed with this installation?
1212
+ sub-message: Some extensions require access to your resources.
1213
+
1214
+ issue-details:
1215
+ assigned: Assigned To
1216
+ type: Issue Type
1217
+ category: Issue Category
1218
+
1219
+ issue-form:
1220
+ reported: Reported By
1221
+ select-reporter: Select Reporter
1222
+ assigned: Assigned To
1223
+ select-assignee: Select Assignee
1224
+ select-driver: Select Driver
1225
+ select-vehicle: Select Vehicle
1226
+ select-type: Select Type
1227
+ select-category: Select Category
1228
+ type: Issue Type
1229
+ type-text: Select issue type
1230
+ category: Issue Category
1231
+ category-text: Select issue category
1232
+ report: Issue Report
1233
+ tags: Issue tags
1234
+ add-tags: Add tags
1235
+ select-status: Select issue status
1236
+
1237
+ map-layer-form:
1238
+ layer-type: Layer Type
1239
+ layer-type-text: Select the type of layer you wish to create.
1240
+ select-layer-type: Select layer type...
1241
+ service-area: Service Area
1242
+ service-area-text: Select the Service Area to attribute this Zone to.
1243
+ select-service-area: Select service area to assign fleet to
1244
+ set-name: Set a display name for the {options}.
1245
+ service-type: Service Area Type
1246
+ service-type-text: Select the type definition for this service area .
1247
+ select-service-type: Select service area type...
1248
+ customize-border: Customize the border color for this {options}.
1249
+ customize-fill-color: Customize the fill color for this {options}.
1250
+ service-area-country: Service Area Country
1251
+ service-area-country-text: Optionally set the country in which this Service Area is located or based in.
1252
+
1253
+ new-order-config:
1254
+ name: Config Name
1255
+ description: Config Description
1256
+ tags: Config Tags
1257
+ add-tags: Add tags
1258
+
1259
+ order-assign-driver:
1260
+ select-driver: Select Driver
1261
+ select-assign: Select Driver to Assign
1262
+
1263
+ order-config-new-status:
1264
+ new-status: New Status
1265
+ status-text: Enter a new activity status to add to the flow
1266
+
1267
+ order-event:
1268
+ schedule: Schedule
1269
+ unschedule: Unschedule
1270
+
1271
+ order-form:
1272
+ id-text: Use this field to optionally set a custom identifier or internal identifier for the order.
1273
+ schedule-text: The date and time the order will be dispatched. If no driver is assigned at time of dispatch, the dispatch will fail. If the order is Ad-Hoc the order will be pinged to drivers in vicinity of pickup.
98
1274
  customer: Customer
99
- vehicle-name: Vehicle Name
1275
+ customer-text: Optionally assign the customer of this order. If it's a new customer, use the 'New Customer' button above.
1276
+ select-customer: Select Customer
1277
+ facilitator: Facilitator
1278
+ facilitator-text: Optionally assign a facilitator for this order, a facilitator can be a 3rd party subcontractor or service that will facilitate the transport of this order.
1279
+ select-facilitator: Select Facilitator
1280
+ assign-driver: Assign Driver
1281
+ assign-driver-text: Assign the driver this order will be dispatched to.
1282
+ select-driver: Select Driver
1283
+ assign-vehicle: Assign Vehicle
1284
+ assign-vehicle-text: Assign the vehicle this order will be performed with.
1285
+ select-vehicle: Select Vehicle
1286
+
1287
+ order-import:
1288
+ loading-message: Processing import...
1289
+ drop-upload: Drop to upload
1290
+ invalid: Invalid
1291
+ ready-upload: ready for upload.
1292
+ upload-spreadsheets: Upload Spreadsheets
1293
+ drag-drop: Drag and drop spreadsheet files onto this dropzone
1294
+ button-text: or select spreadsheets to upload
1295
+ spreadsheets: spreadsheets
1296
+ upload-queue: Upload Queue
1297
+
1298
+ order-label:
1299
+ loading: Loading Label...
1300
+
1301
+ order-new-activity:
1302
+ select-message: Select an activity status to update order tracking activity, or input a custom activity.
1303
+ order-currently-message: This order is currently {options}, additional activity will overwrite this status.
1304
+ not-recommend-message: Fleetbase does not recommend this unless you absolutely know what you're doing.
1305
+ activity-options: Activity Options
1306
+ activity: activity
1307
+ dispatch: This will trigger the order to dispatch.
1308
+ status: Custom activity status
1309
+ details: Custom activity details
1310
+ code: Custom activity code
1311
+ fleetbase-message: Fleetbase does not recommend this unless you absolutely know what you're doing.
1312
+
1313
+ order-route-form:
1314
+ toggle: Toggle Multiple Dropoff's
1315
+ optimize: Optimize Route
1316
+ optimize-text: Fleetbase will automatically optimize the route.
1317
+ add: Add Waypoint
1318
+ add-text: Use the `Add Waypoint` button to add more stops for this order. The Fleetbase routing engine will automatically optimize the route as each stop is added or removed.
1319
+ select-waypoint: Select Waypoint
100
1320
  pickup: Pickup
1321
+ edit-address: Edit Address
1322
+ select-pickup: Select Pickup
1323
+ invalid: Invalid coordinates!
101
1324
  dropoff: Dropoff
102
- import: Import
103
- order: Order
104
- create-order: Create Order
105
- dispatch-order: Dispatch Order
106
- assign-driver: Assign Driver
1325
+ select-dropoff: Select Dropoff
1326
+ return: Return
1327
+ select-return: Select Return
1328
+
1329
+ place-assign-vendor:
1330
+ select-vendor: Select Vendor
1331
+
1332
+ place-details:
1333
+ view: View on map
1334
+
1335
+ policy-form:
1336
+ name: Policy Name
1337
+ name-text: Enter a name for your policy
1338
+ description: Policy Description
1339
+ description-text: Enter a description for your policy
1340
+ permissions: Select Permissions
1341
+
1342
+ role-form:
1343
+ name: Role name
1344
+ name-text: Enter a name for this role
1345
+ permissions: Select Permissions
1346
+
1347
+ select-payment-method:
1348
+ card-ending: Card ending in {method}
1349
+
1350
+ service-area-form:
1351
+ name: Service Area Name
1352
+ name-text: Set a display name for the service area.
1353
+ type: Service Area Type
1354
+ type-text: Select the type definition for this service area .
1355
+ select-type: Select service area type...
1356
+ border-color: Service Area Border Color
1357
+ customize-border-color: Customize the border color for this service area.
1358
+ area-color: Service Area Color
1359
+ customize-area-color: Customize the fill color for this service area.
1360
+ country: Service Area Country
1361
+ country-text: Optionally set the country in which this service area is located or based in.
1362
+
1363
+ set-password:
1364
+ message: Welcome to Fleetbase! Before you get started, set a new password to continue below.
1365
+ new-password: New Password
1366
+ confirm-password: Confirm Password
1367
+ help-text: Enter a password at-least 8 characters to continue.
1368
+
1369
+ uninstall-prompt:
1370
+ message: You are attempting to uninstall the extension "{options}". Are you sure you wish to proceed with this uninstallation?
1371
+ sub-message: All configuration and customized settings will be lost.
1372
+
1373
+ vehicle-details:
1374
+ make: Make
1375
+ model: Model
1376
+ year: Year
1377
+ driver-assigned: Driver Assigned
1378
+ no-driver-assigned: No driver assigned
1379
+ vehicle-assigned: Vehicle Assigned
1380
+ no-vehicle-assigned: No vehicle assigned
1381
+ avatar: Avatar
1382
+ model-information: Model Information
1383
+ acceleration: 0 to 100 Kph
1384
+ body: Body
1385
+ doors: Doors
1386
+ length: Length (mm)
1387
+ seats: Seats
1388
+ top-speed: Top Speed (kph)
1389
+ transmission: Transmission Type
1390
+ weight: Weight (kg)
1391
+ wheelbase: Wheelbase (mm)
1392
+ width: Width (mm)
1393
+ engine-information: Engine Information
1394
+ engine-bore: Engine Bore (mm)
1395
+ cc: CC
1396
+ compression: Compression
1397
+ cylinder: Cylinders
1398
+ position: Position
1399
+ power-ps: Power (ps)
1400
+ power-rpm: Power (rpm)
1401
+ stroke: Stroke (mm)
1402
+ torque-nm: Torque (nm)
1403
+ torque-rpm: Torque (rpm)
1404
+ valves: Valves Per Cylinder
1405
+ fuel-information: Fuel Information
1406
+ fuel: Fuel
1407
+ fuel-cap: Fuel Cap (l)
1408
+ liters-city: Liters Per km City
1409
+ liters-highway: Liters Per km Highway
1410
+ liters-mixed: Liters Per km Mixed
1411
+ vehicle-form:
1412
+
1413
+ map-avatar: Select map avatar
1414
+ map-avatar-text: Select an avatar to be used for rendering on maps when using geolocation tracking features.
1415
+ select-avatar: Select avatar
1416
+ make: Vehicle Make
1417
+ model: Vehicle Model
1418
+ year: Vehicle Year
107
1419
  select-driver: Select Driver
108
- component:
109
- activity-logic-builder:
110
- activity-logic: Activity Logic
111
- activity-logic-help-text: Define custom logic conditions that determine when an activity becomes available in the workflow. This feature allows you to tailor the flow based on specific criteria, ensuring that each activity is triggered only when its predefined conditions are met.
112
- activity-logic-add-logic-help-text: Create a new set of conditions that will define when an activity should be activated. Click this to start crafting a new logical rule.
113
- activity-logic-select-logic-type-help-text: Choose the type of logic that this condition will follow. Select 'If' for a direct condition, 'And'/'Or' for compound conditions, or 'Not' to negate a condition.
114
- activity-logic-add-condition-help-text: Add a specific requirement that must be satisfied within this logic set. Use this to specify additional criteria that control the activity's availability.
115
- field: Field
116
- value: Value
117
- add-logic: Add Logic
118
- activity-event-selector:
119
- activity-events: Activity Events
120
- activity-events-select-to-fire: Select which events will be activated when this activity occurs.
121
- activity-events-select-events-info: Select the specific event you want to trigger in response to this activity.
122
- select-event-to-add: Select event to add...
123
- custom-field-form-panel:
124
- meta-col-span: 'Meta: Column-Span'
125
- col-span-size: Column Span Size
126
- custom-field-title-concat: 'Custom Field: '
127
- new-custom-field: New custom field
128
- close-new-custom-field: Cancel custom field changes
129
- save-custom-field: Save Changes
130
- create-custom-field: Create New Field
131
- field-name: Field Name
132
- field-label: Field Label
133
- field-type: Field Type
134
- select-field-type: Select field type...
135
- field-description: Field Description
136
- field-help-text: Field Help Text
137
- field-default-value: Field Default Value
138
- field-is-required: Field is Required
139
- field-is-editable: Field is Editable
140
- field-options: Field Options
141
- field-validation-rules: Field Validation Rules
142
- field-model-type: Field Model Type
143
- field-select-model-type: Select model type
144
- add-new-option: Add new option
145
- activity-form-panel:
146
- title-concat: 'Activity: '
147
- new-activity-title: Create new activity
148
- key: Key
149
- code: Code
150
- status: Status
151
- details: Details
152
- proof-of-delivery: Proof of Delivery
153
- require-pod: Requires Proof of Delivery
154
- require-pod-help-text: This activity requires a proof to be created before it can be applied to the order.
155
- select-pod-method: Proof of Delivery Method
156
- pod-method-placeholder: Select Proof of Delivery Method
157
- completes-order: Completes Order
158
- complete: Complete
159
- key-help: "Enter a key used for programmatic decision-making. This key can represent one or several activities with the same identifier. Note: This key is not required to be unique."
160
- code-help: Enter a unique identifier specific to this activity.
161
- status-help: Specify the status displayed to the end-user when this activity is triggered.
162
- details-help: Provide a detailed description of the activity for the end-user's understanding.
163
- custom-entity-issue-form-panel:
164
- new-custom-entity: New Custom Entity
165
- name: Name
166
- description: Description
167
- details: Details
168
- type: Type
169
- length: Length
170
- width: Width
171
- height: Height
172
- weight: Weight
173
- entity-image: Entity Image
174
- measurements: Measurements
175
- order-config-manager:
176
- title: Orders Configuration
177
- message: Order configurations allow you to define dynamic configurations which will tell Fleetbase how different types of orders should be executed.
178
- configuration: Configuration
179
- new-order-config: New Order Config
180
- select-order-config: Select Order Config
181
- create-new-title: Create a new order configuration
182
- create-warning-message: Order configuration requires a name
183
- create-success-message: New order config created successfully.
184
- no-order-config-selected: No order configuration selected.
185
- saved-success-message: '{orderConfigName} configuration saved.'
186
- cloned-success-message: Order config successfully cloned.
187
- enter-clone-name: Enter name of cloned configuration
188
- no-config-name-warning-message: No config name entered.
189
- delete-warning-message: Once this order configuration is deleted you will not be able to create orders using it anymore. Are you sure?
190
- uninstall-order-config: Uninstall Configuration
191
- uninstall-order-config-success-message: Extension {extensionName} uninstalled.
192
- select-order-config-to-start: Select or create an order config to start.
193
- details:
194
- details: Details
195
- name: Name
196
- description: Description
197
- tags: Tags
198
- add-tags: Add Tags
199
- key: Key
200
- version: Version
201
- namespace: Namespace
202
- controls: Controls
203
- delete-config: Delete Config
204
- delete:
205
- delete-title: Delete this order config?
206
- delete-body-message: Once this order config is deleted it will not be recoverable and you will lose all configurations.
207
- confirm-delete: Delete
208
- activity-flow:
209
- save-activity-flow: Save Activity Flow
210
- edit-activity-unique-code-warning: Activity code must be unique!
211
- custom-fields:
212
- new-field-group: New field group
213
- new-custom-field: Create new custom field
214
- grid-size: Grid Size
215
- delete-custom-field-prompt:
216
- modal-title: Delete this custom field?
217
- delete-body-message: Once this custom field is deleted it will not be recoverable and you will lose all configurations.
218
- confirm-delete: Delete
219
- delete-custom-field-group-prompt:
220
- modal-title: Delete this field group?
221
- delete-body-message: Once this field group is deleted it will not be recoverable and you will lose all custom fields inside.
222
- confirm-delete: Delete
223
- entities:
224
- new-custom-entity: New Custom Entity
225
- name: Name
226
- description: Description
227
- type: Type
228
- length: Length
229
- width: Width
230
- height: Height
231
- weight: Weight
232
- delete-custom-entity-title: Delete this custom entity?
233
- delete-custom-entity-body: Once this custom entity is deleted it will not be recoverable and you will lose all configurations.
234
- confirm-delete: Confirm
235
- types:
236
- no-order-installed: No order configurations installed!
237
- you-have-no-configs: You currently have no order configs installed, check at the extensions to install an order configuration to get started.
238
- view-extensions: View extensions
239
- avatar-picker:
240
- avatar: Avatar
241
- select-map-avatar: Select map avatar
242
- select-avatar-rendering: Select an avatar to be used for rendering on maps when using geolocation tracking features.
243
- select-avatar: Select avatar
244
- admin:
245
- navigator-app:
246
- title: Navigator App
247
- name: Instance Linking URL
248
- message: Use this URL to link the official Navigator app to this {companyName} instance. Opening this URL on a mobile device will open the Navigator app and update it's configuration and branding.
249
- settings: Entity Settings
250
- select-input: Allow driver to update entity details
251
- driver-settings: Driver Settings
252
- description: Enable driver on-board
253
- upload-document: Require driver to upload documents
254
- upload-body: Add documents
255
- document: Document
256
- visibility-controls:
257
- title: Visibility Controls
258
- message: Visibility controls allow you to disable sections of Fleet-Ops. Toggle the checkbox to enable or disable sections to hide in Fleet-ops.
259
- checkbox-text: Enable or disable visibility for this section in Fleet-Ops.
260
- avatar-management:
261
- upload-avatar: Upload Avatar
262
- view-avatar: View Avatar
263
- vehicles : Vehicles
264
- drivers : Drivers
265
- places : Places
266
- entity-field-editing-settings:
267
- entitiy-field-editing-settings: Entity Field Editing Settings
268
- entity-field-editing-settings-help-text: These settings determine which fields of an entity are editable by a driver via Navigator App
269
- select-order-config: Select Order Config
270
- select-order-config-help-text: Select an order config which these settings will apply to
271
- enable-driver-to-edit-entity-fields: Allow driver to edit entity details
272
- enable-driver-to-edit-entity-fields-help-text: Enabling this toggle grants the driver permission to modify specific entity fields chosen below.
273
- driver-onboard-settings:
274
- driver-onboard-settings: Driver Onboard Settings
275
- enable-driver-onboard-from-app: Enable driver onboard from Navigator App
276
- enable-driver-onboard-from-app-help-text: Enabling this setting allows drivers to independently onboard (create their own account) via the Navigator App.
277
- select-onboard-method: Select driver onboard method
278
- select-onboard-method-help-text: This setting determines how drivers are permitted to create their accounts through the Navigator App. Choose 'Invite' if drivers need to receive an email invitation to create their account. Select 'Button' if you wish to enable a button within the app that allows anyone to create a driver account.
279
- require-driver-to-upload-onboard-documents: Require driver to upload onboard documents
280
- require-driver-to-upload-onboard-documents-help-text: This setting enforces documents that a driver must provide before their account can be created.
281
- required-onboard-documents: Required onboard documents
282
- required-onboard-documents-help-text: Input all the onboard documents required for a driver to provide below using the "Add onboard document" button.
283
- enter-document-name: Enter document name
284
- add-onboard-document: Add onboard document
285
- cell:
286
- driver-name:
287
- not-assigned: No driver assigned
288
- fleet-panel:
289
- details:
290
- active-manpower: Active Manpower
291
- driver-listing:
292
- search-driver: Search drivers in fleet
293
- add-driver: Add driver to fleet
294
- loading-driver: Loading fleet drivers...
295
- vehicle-listing:
296
- search-vehicle: Search vehicle's in fleet
297
- add-vehicle: Add vehicle to fleet
298
- loading-vehicle: Loading fleet vehicles...
299
- layout:
300
- fleet-ops-sidebar:
301
- routing: Routing
302
- notifications: Notifications
303
- payments: Payments
304
- navigator-app: Navigator App
305
- resources: Resources
306
- operations: Operations
307
- dashboard: Dashboard
308
- service-rates: Service Rates
309
- scheduler: Scheduler
310
- drivers: Drivers
311
- vehicles: Vehicles
312
- fleets: Fleets
313
- vendors: Vendors
314
- contacts: Contacts
315
- places: Places
316
- fuel-reports: Fuel Reports
317
- issues: Issues
318
- title: Create new order
319
- settings: Settings
320
- order-config: Order Config
321
- live-map-drawer:
322
- driver-listing:
323
- location: Location
324
- current-job: Current Job
325
- last-seen: Last Seen
326
- view-driver: View driver details...
327
- edit-driver: Edit driver...
328
- locate-driver: Locate driver...
329
- delete-driver: Delete driver...
330
- warning-message: Unable to locate driver.
331
- message: Filter drivers by keyword...
332
- place-listing:
333
- location: Location
334
- place: Place
335
- view-place: View place details...
336
- edit-place: Edit place...
337
- locate-place: Locate place...
338
- delete-place: Delete place...
339
- warning-message: Unable to locate place.
340
- message: Filter places by keyword...
341
- vehicle-listing:
342
- location: Location
343
- last-seen: Last Seen
344
- view-vehicle: View vehicle details...
345
- edit-vehicle: Edit vehicle...
346
- locate-vehicle: Locate vehicle...
347
- delete-vehicle: Delete vehicle...
348
- warning-message: Unable to locate vehicle.
349
- message: Filter vehicles by keyword...
350
- map-container:
351
- visibility-control-panel:
352
- title: Visibility Controls
353
- hide-places: Hide all places...
354
- show-places: Show all places...
355
- vehicles: Vehicles
356
- vehicle-controls: Vehicle Visibility Controls...
357
- hide-vehicles: Hide all vehicles...
358
- show-vehicles: Show all vehicles...
359
- online-vehicles: Only show online vehicles...
360
- offline-vehicles: Only show offline vehicles...
361
- zones-panel:
362
- title: Service Areas
363
- create-service: Create new service area...
364
- show: Show all service areas
365
- hide: Hide all service areas
366
- action: Actions...
367
- focus: Focus
368
- blur: Hide service area...
369
- create-zone: Create zone inside...
370
- toolbar:
371
- create: Create Order
372
- view-order: View Orders
373
- view-service-area: View Service Areas
374
- visibility: Visibility Controls
375
- scope: Scope
376
- modals:
377
- new-custom-field-group:
378
- modal-title: Create a new custom field group
379
- group-name: Group Name
380
- assign-driver:
381
- select-driver: Select Driver
382
- select-assign: Select Driver to Assign
383
- clone-config-form:
384
- name: Config Name
385
- description: Config Description
386
- driver-assign-order:
387
- order: Select Order
388
- assign-order: Select Order to Assign
389
- driver-assign-vehicle:
390
- vehicle: Select Vehicle
391
- assign-vehicle: Select Vehicle to Assign
392
- driver-assign-vendor:
393
- vendor: Select Vendor
394
- driver-details:
395
- job: Current Job
396
- view: View on map
397
- driver-form:
398
- select-vendor: Select Vendor
399
- select-vehicle: Select Vehicle
400
- edit-meta-form:
401
- add: Add metafield
402
- entity-form:
403
- name-text: Name of item or entity.
404
- id-text: Use this field to optionally set a custom identifier or internal identifier for the entity.
405
- sku: SKU
406
- sku-text: Stock keeping unit number if applicable.
407
- description: Description
408
- description-text: Additional description text of entity.
409
- price-title: Pricing & Value
410
- price: Price
411
- price-text: Price of entity.
412
- sale-price: Sale Price
413
- sale-price-text: Sale price or discounted price of entity.
414
- declare: Declared Value
415
- declare-text: Declared value of entity, useful is insurable.
416
- measurement-title: Measurements & Weight
417
- length: Length
418
- length-text: The length of the entity.
419
- width: Width
420
- width-text: The width of the entity.
421
- height: Height
422
- height-text: The height of the entity.
423
- weight: Weight
424
- weight-text: The weight of the entity.
425
- entity-meta-field-prompt:
426
- name: Meta Field Key
427
- fleet-form:
428
- title: Fleet Name
429
- assign: Assign to Service Area
430
- assign-text: Select service area to assign fleet to
431
- zone: Assign to Zone
432
- zone-text: Select zone to assign fleet to
433
- task: Task/ Mission
434
- task-text: Give a description of this fleet's primary task or mission if applicable.
435
- select-task: Select task
436
- status-text: Select the status of the fleet.
437
- select-status: Select status
438
- fuel-report-details:
439
- fuel: Fuel/ Volume
440
- fuel-report-form:
441
- select-driver: Select Driver
442
- select-vehicle: Select Vehicle
443
- volume: Volume
444
- volume-text: Select the metric unit and volume of fuel to report.
445
- group-details:
446
- name: Group Name
447
- member: Members
448
- address: Address
449
- group-form:
450
- title: Group Name
451
- users-add: Select users to add to group
452
- search: Search and select users to add to this group.
453
- select-user: Select user to add to group
454
- no-users: No users added to group
455
- install-prompt:
456
- message: You are attempting to install the extension {extensionName}. Are you sure you wish to proceed with this installation?
457
- sub-message: Some extensions require access to your resources.
458
- issue-details:
459
- assigned: Assigned To
460
- type: Issue Type
461
- category: Issue Category
462
- issue-form:
463
- reported: Reported By
464
- select-reporter: Select Reporter
465
- assigned: Assigned To
466
- select-assignee: Select Assignee
467
- select-driver: Select Driver
468
- select-vehicle: Select Vehicle
469
- select-type: Select Type
470
- select-category: Select Category
471
- type: Issue Type
472
- type-text: Select issue type
473
- category: Issue Category
474
- category-text: Select issue category
475
- report: Issue Report
476
- tags: Issue tags
477
- add-tags: Add tags
478
- select-status: Select issue status
479
- map-layer-form:
480
- layer-type: Layer Type
481
- layer-type-text: Select the type of layer you wish to create.
482
- select-layer-type: Select layer type...
483
- service-area: Service Area
484
- service-area-text: Select the Service Area to attribute this Zone to.
485
- select-service-area: Select service area to assign fleet to
486
- set-name: Set a display name for the {options}.
487
- service-type: Service Area Type
488
- service-type-text: Select the type definition for this service area .
489
- select-service-type: Select service area type...
490
- customize-border: Customize the border color for this {options}.
491
- customize-fill-color: Customize the fill color for this {options}.
492
- service-area-country: Service Area Country
493
- service-area-country-text: Optionally set the country in which this Service Area is located or based in.
494
- new-order-config:
495
- name: Config Name
496
- description: Config Description
497
- tags: Config Tags
498
- add-tags: Add tags
499
- order-assign-driver:
500
- select-driver: Select Driver
501
- select-assign: Select Driver to Assign
502
- order-config-new-status:
503
- new-status: New Status
504
- status-text: Enter a new activity status to add to the flow
505
- order-event:
506
- schedule: Schedule
507
- unschedule: Unschedule
508
- order-form:
509
- id-text: Use this field to optionally set a custom identifier or internal identifier for the order.
510
- schedule-text: The date and time the order will be dispatched. If no driver is assigned at time of dispatch, the dispatch will fail. If the order is Ad-Hoc the order will be pinged to drivers in vicinity of pickup.
511
- customer: Customer
512
- customer-text: Optionally assign the customer of this order. If it's a new customer, use the 'New Customer' button above.
513
- select-customer: Select Customer
514
- facilitator: Facilitator
515
- facilitator-text: Optionally assign a facilitator for this order, a facilitator can be a 3rd party subcontractor or service that will facilitate the transport of this order.
516
- select-facilitator: Select Facilitator
517
- assign-driver: Assign Driver
518
- assign-driver-text: Assign the driver this order will be dispatched to.
519
- select-driver: Select Driver
520
- assign-vehicle: Assign Vehicle
521
- assign-vehicle-text: Assign the vehicle this order will be performed with.
522
- select-vehicle: Select Vehicle
523
- order-import:
524
- loading-message: Processing import...
525
- drop-upload: Drop to upload
526
- invalid: Invalid
527
- ready-upload: ready for upload.
528
- upload-spreadsheets: Upload Spreadsheets
529
- drag-drop: Drag and drop spreadsheet files onto this dropzone
530
- button-text: or select spreadsheets to upload
531
- spreadsheets: spreadsheets
532
- upload-queue: Upload Queue
533
- order-label:
534
- loading: Loading Label...
535
- order-new-activity:
536
- select-message: Select an activity status to update order tracking activity, or input a custom activity.
537
- order-currently-message: This order is currently {options}, additional activity will overwrite this status.
538
- not-recommend-message: Fleetbase does not recommend this unless you absolutely know what you're doing.
539
- activity-options: Activity Options
540
- activity: activity
541
- dispatch: This will trigger the order to dispatch.
542
- status: Custom activity status
543
- details: Custom activity details
544
- code: Custom activity code
545
- fleetbase-message: Fleetbase does not recommend this unless you absolutely know what you're doing.
546
- order-route-form:
547
- toggle: Toggle Multiple Dropoff's
548
- optimize: Optimize Route
549
- optimize-text: Fleetbase will automatically optimize the route.
550
- add: Add Waypoint
551
- add-text: Use the `Add Waypoint` button to add more stops for this order. The Fleetbase routing engine will automatically optimize the route as each stop is added or removed.
552
- select-waypoint: Select Waypoint
553
- pickup: Pickup
554
- edit-address: Edit Address
555
- select-pickup: Select Pickup
556
- invalid: Invalid coordinates!
557
- dropoff: Dropoff
558
- select-dropoff: Select Dropoff
559
- return: Return
560
- select-return: Select Return
561
- place-assign-vendor:
562
- select-vendor: Select Vendor
563
- place-details:
564
- view: View on map
565
- policy-form:
566
- name: Policy Name
567
- name-text: Enter a name for your policy
568
- description: Policy Description
569
- description-text: Enter a description for your policy
570
- permissions: Select Permissions
571
- role-form:
572
- name: Role name
573
- name-text: Enter a name for this role
574
- permissions: Select Permissions
575
- select-payment-method:
576
- card-ending: Card ending in {method}
577
- service-area-form:
578
- name: Service Area Name
579
- name-text: Set a display name for the service area.
580
- type: Service Area Type
581
- type-text: Select the type definition for this service area .
582
- select-type: Select service area type...
583
- border-color: Service Area Border Color
584
- customize-border-color: Customize the border color for this service area.
585
- area-color: Service Area Color
586
- customize-area-color: Customize the fill color for this service area.
587
- country: Service Area Country
588
- country-text: Optionally set the country in which this service area is located or based in.
589
- set-password:
590
- message: Welcome to Fleetbase! Before you get started, set a new password to continue below.
591
- new-password: New Password
592
- confirm-password: Confirm Password
593
- help-text: Enter a password at-least 8 characters to continue.
594
- uninstall-prompt:
595
- message: You are attempting to uninstall the extension "{options}". Are you sure you wish to proceed with this uninstallation?
596
- sub-message: All configuration and customized settings will be lost.
597
- vehicle-details:
598
- make: Make
599
- model: Model
600
- year: Year
601
- driver-assigned: Driver Assigned
602
- no-driver-assigned: No driver assigned
603
- vehicle-assigned: Vehicle Assigned
604
- no-vehicle-assigned: No vehicle assigned
605
- avatar: Avatar
606
- model-information: Model Information
607
- acceleration: 0 to 100 Kph
608
- body: Body
609
- doors: Doors
610
- length: Length (mm)
611
- seats: Seats
612
- top-speed: Top Speed (kph)
613
- transmission: Transmission Type
614
- weight: Weight (kg)
615
- wheelbase: Wheelbase (mm)
616
- width: Width (mm)
617
- engine-information: Engine Information
618
- engine-bore: Engine Bore (mm)
619
- cc: CC
620
- compression: Compression
621
- cylinder: Cylinders
622
- position: Position
623
- power-ps: Power (ps)
624
- power-rpm: Power (rpm)
625
- stroke: Stroke (mm)
626
- torque-nm: Torque (nm)
627
- torque-rpm: Torque (rpm)
628
- valves: Valves Per Cylinder
629
- fuel-information: Fuel Information
630
- fuel: Fuel
631
- fuel-cap: Fuel Cap (l)
632
- liters-city: Liters Per km City
633
- liters-highway: Liters Per km Highway
634
- liters-mixed: Liters Per km Mixed
635
- vehicle-form:
636
- map-avatar: Select map avatar
637
- map-avatar-text: Select an avatar to be used for rendering on maps when using geolocation tracking features.
638
- select-avatar: Select avatar
639
- make: Vehicle Make
640
- model: Vehicle Model
641
- year: Vehicle Year
642
- select-driver: Select Driver
643
- body: Vehicle Body Type
644
- doors: Number of Doors
645
- type: Vehicle Drive Type
646
- length: Vehicle Length (mm)
647
- seats: Number of Seats
648
- top-speed: Vehicle Top Speed (kph)
649
- transmission: Vehicle Transmission Type
650
- weight: Vehicle Weight (kg)
651
- wheelbase: Vehicle Wheelbase (mm)
652
- width: Vehicle Width (mm)
653
- engine-bore: Engine Bore (mm)
654
- cc: CC
655
- compression: Engine Compression
656
- cylinder: Engine Cylinders
657
- position: Engine Position
658
- power-ps: Engine Power (ps)
659
- power-rpm: Engine Power (rpm)
660
- stroke: Stroke Length (mm)
661
- torque-nm: Engine Torque (nm)
662
- torque-rpm: Engine Torque (rpm)
663
- fuel-type: Fuel Type
664
- fuel-cap: Fuel Cap Volume (L)
665
- vendor-details:
666
- sandbox: Sandbox
667
- host: Host
668
- namespace: Namespace
669
- vendor-form:
670
- choose-vendor: Choose Integrated Vendor
671
- create-vendor: Create Custom Vendor
672
- credentials: Credentials
673
- options: Options
674
- hide-advanced: Hide Advanced
675
- show-advanced: Show Advanced
676
- custom-host: Custom Host
677
- host-text: Optionally provide a custom host that should be used for this integration.
678
- custom-namespace: Custom Namespace
679
- namespace-text: Optionally provide a custom namespace or api version that should be used for the integration.
680
- webhook: Webhook URL
681
- webhook-text: Integrated vendors will typically require this so that Fleetbase can receive activity updates on the order. Do not change unless you know what you are doing! Changing this may break your order updates!
682
- cancel-credentials: Cancel credentials reset
683
- reset-message: Sensitive credentials can only be reset, to update credentials you must re-enter the credentials.
684
- optionally: Optionally supply your own
685
- configure-vendor: to configure this vendor.
686
- select: Select
687
- sandbox: Sandbox
688
- name-text: The vendor's name, typically the name of a business.
689
- email-text: The vendor's email, this can be used to trigger emails to the vendor.
690
- phone-text: The vendor's phone \#, this can be used to trigger SMS or messages to the vendor.
691
- website-text: The vendor's website, optionally add the vendors website for reference.
692
- select-address: Select Address
693
- zone-form:
694
- name: Zone Name
695
- name-text: Set a display name for the zone.
696
- border-color: Zone Border Color
697
- customize-border: Customize the border color for this zone.
698
- zone-color: Zone color
699
- customize-fill-color: Customize the fill color for this zone.
700
- optionally: Optionally give the zone a description.
701
- description-zone: Description of Zone
702
- order:
703
- header:
704
- dispatched-order: Dispatched at {order}
705
- dispatched: Dispatched
706
- dispatched-at: Dispatched at
707
- edit: Edit Details
708
- update: Update Activity
709
- assign: Assign Driver
710
- get-order: Get Order Label
711
- split-order: Split Order
712
- reschedule: Reschedule Order
713
- cancel-order: Cancel Order
714
- place-card:
715
- show-less: Show less details
716
- show-more: Show more details
717
- schedule-card:
718
- destination: Destination
719
- unassign-driver: Unassign Driver?
720
- unassign-text: You are about to unassign the driver for Order {orderId}. Click continue to confirm removal of driver.
721
- unassign-button: Continue and unassign driver
722
- assign-driver: Assign New Driver?
723
- assign-text: You are about to assign a new driver ({driverName}) to Order {orderId}. Click continue to confirm driver.
724
- assign-button: Continue and assign driver
725
- date: Date scheduled
726
- driver-assigned: Driver
727
- vehicle-assigned: Vehicle
728
- no-driver: No Driver
729
- no-vehicle: No Vehicle
730
- select-driver: Select Driver
731
- select-vehicle: Select Vehicle
732
- widget:
733
- fleet-ops-quickstart:
734
- message: Let's see what you can do to jumpstart operations...
735
- start-task: Start Task
736
- key-metrics:
737
- title: Fleet-Ops Metrics
738
- earnings: Earnings
739
- fuel-expenses: Fuel Expenses
740
- traveled: Distance Traveled
741
- total-time: Total Time
742
- order-scheduled: Orders Scheduled
743
- order-completed: Orders Completed
744
- order-progress: Orders In Progress
745
- order-canceled: Orders Canceled
746
- driver-online: Drivers Online
747
- customers: Customers
748
- open-issue: Open Issue
749
- closed-issues: Closed Issues
750
- live-order-map:
751
- loading: Loading orders in progress...
752
- assigned: Driver Assigned
753
- no-order: No orders in progress
754
- message: When orders are in progress they will display in this widget and show real time activity.
755
- recent-orders:
756
- title: Recent Orders
757
- loading: Loading recent orders...
758
- no-orders: No orders for this week
759
- message-part-1: There hasn't been any orders this week, get movement going by
760
- message-part-2: creating a new order
761
- message-part-3: or allow your customers to submit orders via API.
762
- transactions:
763
- title: Recent Transactions
764
- loading: Loading recent transactions...
765
- no-transactions: No transactions this week
766
- message: When orders are going through with service rates, Fleetbase tracks transactions automatically.
767
- contact-form-panel:
768
- success-message: contact {contactName} saved successfully.
769
- view-contact-button: View contact details
770
- save-contact: Save Contact
771
- create-contact: Create Contact
772
- cancel-edit-button: Cancel edit contact
773
- cancel-new-button: Cancel new contact
774
- new-contact: New Contact
775
- select-address: Select Address
776
- edit: Edit
777
- new-address: New Address
778
- contact-details: Contact Details
779
- customer-form-panel:
780
- user-account: User Account
781
- user-account-help-text: Each customer profile needs to be connected to a specific user account. This association is essential for handling the authentication process, ensuring that each customer can securely access and manage their profile and other services.
782
- select-user: Select User
783
- success-message: Customer {customerName} saved successfully.
784
- view-customer-button: View customer details
785
- save-customer: Save Customer
786
- create-customer: Create Customer
787
- cancel-edit-button: Cancel edit customer
788
- cancel-new-button: Cancel new customer
789
- new-customer: New Customer
790
- select-address: Select Address
791
- edit: Edit
792
- new-address: New Address
793
- customer-details: Customer Details
794
- contact-panel:
795
- details:
796
- web-url: Website URL
797
- edit-button: Edit contact
798
- cancel-edit-button: Cancel edit contact
799
- cancel-new-button: Cancel new contact
800
- customer-panel:
801
- details:
802
- web-url: Website URL
803
- edit-button: Edit customer
804
- cancel-edit-button: Cancel edit customer
805
- cancel-new-button: Cancel new customer
806
- user-account: User Account
807
- display-panel:
808
- no-address: No {type} address!
809
- no-address-message: No address!
810
- driver-card:
811
- no-fleets: No fleets
812
- driver-form-panel:
813
- driver-details: Driver Details
814
- user-account: User Account
815
- user-account-help-text: Each driver profile needs to be connected to a specific user account. This association is essential for handling the authentication process, ensuring that each driver can securely access and manage their profile.
816
- success-message: Driver ({driverName}) saved successfully.
817
- driver-detail: View driver details
818
- save-driver: Save Driver
819
- create-driver: Create Driver
820
- cancel-edit-driver: Cancel edit driver
821
- cancel-new-driver: Cancel new driver
822
- upload-new-photo: Upload new photo
823
- new-driver: New Driver
824
- vendor: Vendor
825
- select-vehicle: Select Vehicle
826
- driver-status: Select driver status
827
- order-history: Order History
828
- select-user: Select User
829
- driver-panel:
830
- user-account: User Account
831
- driver-details: Driver Details
832
- locate-button-text: Locate driver
833
- edit-button-text: Edit driver
834
- close-button-text: Close driver details
835
- no-vehicle-message: No vehicle assigned
836
- assign-vehicle-button: Assign a vehicle to driver
837
- fleet-driver-listing:
838
- search-driver: Search drivers in fleet
839
- add-driver: Add driver to fleet
840
- loading-message: Loading fleet drivers...
841
- fleet-form-panel:
842
- success-message: Fleet ({fleetName}) saved successfully.
843
- title: New Fleet
844
- save-fleet: Save Fleet
845
- create-fleet: Create Fleet
846
- view-details: View fleet details
847
- cancel-edit-fleet: Cancel edit fleet
848
- cancel-new-fleet: Cancel new fleet
849
- fleet-name: Fleet Name
850
- parent-fleet: Parent Fleet
851
- select-parent-fleet: Select parent fleet to assign fleet to
852
- select-vendor: Select vendor to assign fleet to
853
- service-title: Assign to Service Area
854
- select-service: Select service area to assign fleet to
855
- zone-title: Assign to Zone
856
- select-zone: Select zone to assign fleet to
857
- select-status-fleet: Select the status of the fleet.
858
- select-status: Select status
859
- task-mission-title: Task/ Mission
860
- task-text: Give a description of this fleet's primary task or mission if applicable.
861
- fleet-details: Fleet Details
862
- fleet-vehicle-listing:
863
- search-vehicle: Search vehicle in fleet
864
- add-vehicle: Add vehicle to fleet
865
- loading-message: Loading fleet vehicle...
866
- fuel-report-form-panel:
867
- success-message: Fuel report saved successfully.
868
- new-fuel-report: New Fuel Report
869
- fuel-report: Fuel Report
870
- fuel-reported: Fuel Reported
871
- save-fuel-report: Save Fuel Report
872
- create-fuel-report: Create Fuel Report
873
- view-details: View fuel report details
874
- cancel-edit-fuel-report: Cancel edit fuel report
875
- cancel-new-fuel-report: Cancel new fuel report
876
- select-reporter: Select Reporter
877
- select-driver: Select Driver
878
- select-vehicle: Select Vehicle
879
- select-fuel-report: Select fuel-report status
880
- odometer: Odometer
881
- cost: Cost
882
- volume: Volume
883
- select-volume-text: Select the metric unit and volume of fuel to report.
884
- fuel-report-panel:
885
- title: Fuel Report Details
886
- edit-button: Edit fuel report
887
- cancel-edit-fuel-report: Cancel edit fuel report
888
- cancel-new-fuel-report: Cancel new fuel report
889
- details:
890
- fuel: Fuel/ Volume
891
- global-search:
892
- search: Search by keyword...
893
- integrated-order-details:
894
- order-id: Order ID
895
- quotation-id: Quotation ID
896
- driver-id: Driver ID
897
- link: Shareable Link
898
- price-breakdown: Price Breakdown
899
- metadata: Metadata
900
- issue-form-panel:
901
- success-message: Issue ({publicId}) saved successfully.
902
- new-issue: New Issue
903
- save-issue: Save Issue
904
- create-issue: Create Issue
905
- view-details: View issue details
906
- cancel-edit-issue: Cancel edit issue
907
- cancel-new-issue: Cancel new issue
908
- reported-by: Reported By
909
- assigned: Assigned To
910
- select-assign: Select Assignee
911
- select-reporter: Select Reporter
912
- select-driver: Select Driver
913
- select-vehicle: Select Vehicle
914
- type: Issue Type
915
- select-type: Select issue type
916
- category: Issue Category
917
- select-category: Select issue category
918
- report: Issue Report
919
- tags: Issue Tags
920
- add-tags: Add tags
921
- priority: Issue Priority
922
- select-priority: Select issue priority
923
- select-status: Select issue status
924
- issue-report: Issue Report
925
- issue: Issue
926
- issue-panel:
927
- details:
928
- assigned: Assigned To
929
- type: Issue Type
930
- category: Issue Category
931
- priority: Issue Priority
932
- report: Report
933
- title: Issue Details
934
- edit-issue: Edit Issue
935
- cancel-edit-issue: Cancel edit issue
936
- cancel-new-issue: Cancel new issue
937
- live-map:
938
- onText: Hide draw controls...
939
- offText: Enable draw controls...
940
- show-coordinates: Show coordinates...
941
- center-map: Center map here...
942
- zoom-in: Zoom in...
943
- zoom-out: Zoom out...
944
- hide-draw: Hide draw controls...
945
- enable-draw: Enable draw controls...
946
- create-new-service: Create new Service Area...
947
- focus-service: 'Focus Service Area: {serviceName}'
948
- view-driver: 'View Driver: {driverName}'
949
- edit-driver: 'Edit Driver: {driverName}'
950
- delete-driver: 'Delete Driver: {driverName}'
951
- view-vehicle-for: 'View Vehicle for: {driverName}'
952
- view-vehicle: 'View vehicle: {vehicleName}'
953
- edit-vehicle: 'Edit vehicle: {vehicleName}'
954
- delete-vehicle: 'Delete vehicle: {vehicleName}'
955
- edit-zone: 'Edit zone: {zoneName}'
956
- delete-zone: 'Delete zone: {zoneName}'
957
- assign-zone: 'Assign Fleet to Zone: {zoneName}'
958
- blur-service: 'Hide Service Area: {serviceName}'
959
- create-zone: 'Create Zone within: {serviceName}'
960
- assign-fleet: 'Assign Fleet to Service Area: {serviceName}'
961
- edit-service: 'Edit Service Area: {serviceName}'
962
- delete-service: 'Delete Service Area: {serviceName}'
963
- service-area: Service Area
964
- zone: Zone
965
- order-config:
966
- create-new-title: Create a new order configuration
967
- warning-message: Order configuration requires a name
968
- success-message: New order config created successfully.
969
- no-order-warning: No order configuration selected.
970
- saved-success: '{orderName} order configuration saved.'
971
- enter-name-title: Enter name of cloned configuration
972
- no-config-warning: No config name entered.
973
- cloned-success: Order config successfully cloned.
974
- body: Once this order configuration is deleted you will not be able to create orders using it anymore. Are you sure?
975
- uninstall-title: Uninstall Configuration
976
- uninstall-success: Extension {extensionName} uninstalled.
977
- activity-flow-editor:
978
- add-status: Add new status to flow
979
- no-status: No status entered.
980
- overwrite: This will overwrite an existing status!
981
- overwrite-text: There is another {statusName} status already existing in this flow, if you continue this status will be overwritten. Would you like to overwrite the previous {statusName} status?
982
- overwrite-button: Yes, overwrite!
983
- remove: Remove status
984
- remove-text: Are you sure you wish to delete this status? All related activites and logic will be deleted along with the status.
985
- delete-button: Yes, delete
986
- unable-warning: The {status} must be in this order of sequence, unable to shift.
987
- order-warning: The created status must always be the first sequence of an order flow.
988
- title: Activity Flow
989
- message: Activity flow configuration will allow you to define the different types of tracking status activities that apply for this order type. Logic of the activity flow can also be configured.
990
- order-flow: Order Flow
991
- waypoint-flow: Waypoint Flow
992
- new-activity: New Activity
993
- activity-details: Activity Details
994
- logic-stack: Logic Stack
995
- add-logic: Add logic condition
996
- select-field: Select field
997
- select-operator: Select operator
998
- enter-value: Enter value to compare
999
- no-logic: No logic conditions applied
1000
- details-editor:
1001
- success: Installed
1002
- key-text: Pass this key into your order type to configure the order using this config.
1003
- namespace-text: Unique namespace for this extension.
1004
- id: Extension ID
1005
- id-text: Unique ID for this extension.
1006
- version: Extension Version
1007
- version-text: Version of this extension.
1008
- clone: Clone Configuration
1009
- uninstall: Uninstall Configuration
1010
- delete: Delete Configuration
1011
- entities-editor:
1012
- warning-message: No meta field key name entered.
1013
- title: Entities
1014
- message: Entities configuration will allow you to define the different type of entities that should be selectable for this order type. These should be used like templates to make manual order creation faster.
1015
- type: Entity Type
1016
- add-meta: Add meta field
1017
- fields-editor:
1018
- text-field: Text Field
1019
- boolean: Boolean
1020
- boolean-text: Allows user to toggle a true or false property by checkbox
1021
- dropdown: Dropdown Select
1022
- dropdown-text: Allows user to select an option from a dropdown of options
1023
- datetime: Datetime Selector
1024
- datetime-text: Allows user to select a date & time
1025
- port: Port Selector
1026
- port-text: Allows user to select a port
1027
- vessel: Vessel Selector
1028
- vessel-text: Allows user to select a vessel
1029
- warning-message: No group name entered.
1030
- field-title: Meta Fields
1031
- new-field: New Custom Field
1032
- new-custom-field: New Custom Fields Group
1033
- field-text: Meta fields configuration will allow you to define custom input fields that will be applied to orders.
1034
- custom-field-group: Custom Fields Group
1035
- default-field: Default Fields
1036
- custom-field: Custom Field
1037
- type: Field Type
1038
- select-type: Select field type
1039
- add-option: Add Option
1040
- select-message: Select an order configuration to modify, or click "New Config" to create a new order configuration.
1041
- new-config: New Config
1042
- loading-configuration: Loading your order configurations...
1043
- select-order: Select order configuration
1044
- save-changes: Save Changes
1045
- details: Details
1046
- fields: Custom Fields
1047
- flow: Activity Flow
1048
- entities: Entities
1049
- order-list-overlay:
1050
- search: Search orders...
1051
- selected: Selected
1052
- assign: Assign to driver...
1053
- cancel: Cancel orders...
1054
- delete: Delete orders...
1055
- dispatch: Dispatch orders...
1056
- actions: Actions
1057
- create-order: Create new order...
1058
- create-fleet: Create new fleet...
1059
- active-orders: Active Orders
1060
- unassigned-orders: Unassigned Orders
1061
- place-form-panel:
1062
- success-message: place ({placeAddress}) saved successfully.
1063
- place: New Place
1064
- save-place: Save Place
1065
- create-place: Create Place
1066
- view-details: View place details
1067
- cancel-edit-place: Cancel edit place
1068
- cancel-new-place: Cancel new place
1069
- street-1: Street 1
1070
- street-2: Street 2
1071
- neighborhood: Neighborhood
1072
- building: Building
1073
- security-code: Security Access Code
1074
- postal-code: Postal Code
1075
- state: State
1076
- place-details: Place Details
1077
- place-panel:
1078
- edit-place: Edit place
1079
- cancel-edit-place: Cancel edit place
1080
- cancel-new-place: Cancel new place
1081
- route-list:
1082
- expand: Tap to expand
1083
- collapse: Tap to collapse
1084
- more-waypoints: more waypoints
1085
- settings-window:
1086
- success-message: Settings successfully saved.
1087
- title: FleetOps Settings
1088
- save: Save Changes
1089
- name: Default Adhoc Ping Distance
1090
- name-text: This setting determines the default distance in meters adhoc orders should ping drivers within vicinity of the order pickup point.
1091
- message: Distance must be in meters
1092
- vehicle-form-panel:
1093
- success-message: Vehicle ({vehicleName}) saved successfully.
1094
- view-details: View vehicle details
1095
- save-vehicle: Save Vehicle
1096
- create-vehicle: Create Vehicle
1097
- cancel-edit-vehicle: Cancel edit vehicle
1098
- cancel-new-vehicle: Cancel new vehicle
1099
- upload-photo: Upload new photo
1100
- new-vehicle: New Vehicle
1101
- not-assigned: No driver assigned
1102
- plate-number: Plate Number
1103
- vin-number: VIN Number
1104
- make: Make
1105
- vehicle-make: Vehicle make
1106
- model: Model
1107
- vehicle-model: Vehicle model
1108
- year: Year
1109
- vehicle-year: Vehicle year
1110
- driver-assigned: Driver Assigned
1111
- vehicle-assigned: Vehicle Assigned
1112
- select-driver: Select Driver
1113
- select-vehicle: Select Vehicle
1114
- avatar: Avatar
1115
- select-map-avatar: Select map avatar
1116
- select-avatar-rendering: Select an avatar to be used for rendering on maps when using geolocation tracking features.
1117
- select-avatar: Select avatar
1118
- vehicle-panel:
1119
- edit: Edit vehicle
1120
- close: Close vehicle details
1121
- not-assigned: No driver assigned
1122
- assign-driver: Assign a driver to vehicle
1123
- vendor-form-panel:
1124
- success-message: Vendor ({vendorName}) saved successfully.
1125
- create-form:
1126
- integrated-vendor: Choose a integrated vendor
1127
- custom-vendor: Create a custom vendor
1128
- title: Setup
1129
- select-vendor-type: Select vendor type
1130
- choose-vendor: Choose integrated vendor provider
1131
- provider: Provider
1132
- credentials: Credentials
1133
- advanced-options: Advanced Options
1134
- hide-advanced-options: Hide Advanced Options
1135
- show-advanced-options: Show Advanced Options
1136
- host: Custom Host
1137
- host-text: Optionally provide a custom host that should be used for this integration.
1138
- namespace: Custom Namespace
1139
- namespace-text: Optionally provide a custom namespace or api version that should be used for the integration.
1140
- webhook: Webhook URL
1141
- webhook-text: Integrated vendors will typically require this so that Fleetbase can receive activity updates on the order. Do not change unless you know what you are doing! Changing this may break your order updates!
1142
- select-integrated: Select an integrated vendor provider.
1143
- vendor-details: Vendor Details
1144
- select-vendor-status: Select vendor status
1145
- select-address: Select Address
1146
- edit: Edit
1147
- new-address: New Address
1148
- optionally: Optionally supply your own
1149
- configure-vendor: to configure this vendor.
1150
- select: Select
1151
- name-text: The vendor's name, typically the name of a business.
1152
- email-text: The vendor's email, this can be used to trigger emails to the vendor.
1153
- phone-text: >-
1154
- The vendor's phone #, this can be used to trigger SMS or messages to the vendor.
1155
- website-text: The vendor's website, optionally add the vendors website for reference.
1156
- edit-form:
1157
- cancel-credentials: Cancel credentials reset
1158
- sensitive-credentials: Sensitive credentials can only be reset, to update credentials you must re-enter the credentials.
1159
- reset-credentials: Click here to reset credentials
1160
- select-address: Select Address
1161
- view-details: View vendor details
1162
- save-vendor: Save Vendor
1163
- create-vendor: Create Vendor
1164
- cancel-edit-vendor: Cancel edit vendor
1165
- cancel-new-vendor: Cancel new vendor
1166
- upload-photo: Upload new photo
1167
- new-vendor: New Vendor
1168
- vendor-panel:
1169
- edit: Edit vendor
1170
- close: Close vendor details
1171
- new-vendor: New Vendor
1172
- drivers:
1173
- search-driver: Search vendor drivers
1174
- add-driver: Assign driver to vendor
1175
- loading-driver: Loading vendor drivers...
1176
- management:
1177
- contacts:
1178
- index:
1179
- delete-button: Delete Contacts
1180
- updated: Updated At
1181
- created: Created At
1182
- view-contact: View Contact Details
1183
- edit-contact: Edit Contact
1184
- delete-contact: Delete Contact
1185
- edit:
1186
- title: Continue Without Saving?
1187
- body: Unsaved changes to this contact will be lost. Click continue to proceed.
1188
- button: Continue without saving
1189
- title: Contacts
1190
- delete-contacts: Delete Contacts
1191
- customers:
1192
- delete-button: Delete Customers
1193
- updated: Updated At
1194
- created: Created At
1195
- view-customer: View Customer Details
1196
- edit-customer: Edit Customer
1197
- delete-customer: Delete Customer
1198
- edit:
1199
- title: Continue Without Saving?
1200
- body: Unsaved changes to this customer will be lost. Click continue to proceed.
1201
- button: Continue without saving
1202
- title: Customers
1203
- delete-customers: Delete Customers
1204
- drivers:
1205
- index:
1206
- assign-driver: Assign Driver
1207
- view-details: View driver details...
1208
- edit-details: Edit driver details...
1209
- assign-order-driver: Assign order to driver...
1210
- assign-vehicle-driver: Assign vehicle to driver...
1211
- locate-driver-map: Locate driver on map...
1212
- delete-driver: Delete driver...
1213
- delete-button: Delete Drivers
1214
- order-driver: Assign Order to this Driver
1215
- assign-order: Assign Order
1216
- no-order-warning: No order selected!
1217
- assign-success: '{driverName} assigned to order.'
1218
- title-vehicle: Assign Vehicle to this Driver
1219
- confirm-button: Confirm & Create
1220
- assign-vehicle: '{driverName} assigned to vehicle.'
1221
- locate-driver: Current Location of {driverName}
1222
- edit:
1223
- title: Continue Without Saving?
1224
- body: Unsaved changes to this driver will be lost. Click continue to proceed.
1225
- button: Continue without saving
1226
- title: Drivers
1227
- delete-drivers: Delete Drivers
1228
- search-placeholder: Search Drivers
1229
- new:
1230
- warning-message: No files in queue to upload!
1231
- import-success: Import completed.
1232
-
1233
- fleets:
1234
- index:
1235
- view-fleet: View fleet details...
1236
- edit-fleet: Edit fleet details...
1237
- assign-driver: Assign driver to fleet...
1238
- delete-fleet: Delete fleet...
1239
- delete-button: Delete Fleets
1240
- edit:
1241
- body: Unsaved changes to this fleet will be lost. Click continue to proceed.
1242
- title: Fleets
1243
- delete-fleets: Delete Fleets
1244
- fuel-reports:
1245
- index:
1246
- view: View Details
1247
- edit-fuel: Edit Fuel Report
1248
- delete: Delete Fuel Report
1249
- delete-button: Delete Fuel Reports
1250
- edit:
1251
- body: Unsaved changes to this fuel-report will be lost. Click continue to proceed.
1252
- title: Fuel Reports
1253
- delete-fuel-reports: Delete Fuel Reports
1254
- issues:
1255
- index:
1256
- view: View Details
1257
- edit-issues: Edit Issues
1258
- delete: Delete Issues
1259
- delete-button: Delete Issues
1260
- edit:
1261
- body: Unsaved changes to this issue will be lost. Click continue to proceed.
1262
- title: Issues
1263
- delete-issues: Delete Issues
1264
- places:
1265
- index:
1266
- view-details: View Place Details
1267
- edit-place: Edit Place
1268
- view-place: View Place on Map
1269
- delete: Delete Place
1270
- title: Assign this Place to a Vendor
1271
- confirm-button: Confirm & Create
1272
- delete-button: Delete Places
1273
- success-message: '{placeName} details has been updated.'
1274
- locate-title: Location of {placeName}
1275
- edit:
1276
- body: Unsaved changes to this place will be lost. Click continue to proceed.
1277
- places-title: Places
1278
- delete-places: Delete Places
1279
- vehicles:
1280
- index:
1281
- view-vehicle: View vehicle details...
1282
- edit-vehicle: Edit vehicle details...
1283
- delete-vehicle: Delete vehicle...
1284
- delete-button: Delete Vehicles
1285
- locate-action-title: Locate Vehicles
1286
- locate-title: Current Location of {vehicleName}
1287
- edit:
1288
- body: Unsaved changes to this vehicle will be lost. Click continue to proceed.
1289
- title: Vehicles
1290
- delete-vehicles: Delete Vehicles
1291
- vendors:
1292
- index:
1293
- delete-button: Delete Vendors
1294
- view-vendor: View vendor Details
1295
- edit-vendor: Edit vendor
1296
- delete-vendor: Delete vendor
1297
- edit:
1298
- body: Unsaved changes to this vendor will be lost. Click continue to proceed.
1299
- title: Vendors
1300
- delete-vendors: Delete Vendors
1301
- operations:
1302
- order-config:
1303
- route-loading-message: Loading Order Config Builder
1304
- orders:
1305
- index:
1306
- payload: Payload
1307
- customer: Customer
1308
- facilitator: Facilitator
1309
- pickup: Pickup
1310
- dropoff: Dropoff
1311
- scheduled-at: Scheduled At
1312
- items: Items
1313
- transaction: Transaction Total
1314
- tracking: Tracking Number
1315
- driver-assigned: Driver
1316
- vehicle-assigned: Vehicle
1317
- created-by: Created By
1318
- updated-by: Updated By
1319
- view-order: View Order
1320
- cancel-order: Cancel Order
1321
- delete-order: Delete Order
1322
- dispatch-order: Dispatch Order
1323
- cancel-title: Are you sure you wish to cancel this order?
1324
- cancel-body: Once this order is canceled, the order record will still be visible but activity cannot be added to this order.
1325
- cancel-success: Order {orderId} has been canceled.
1326
- dispatch-title: Are you sure you want to dispatch this order?
1327
- dispatch-body: Once this order is dispatched the assigned driver will be notified.
1328
- dispatch-success: Order {orderId} has been dispatched.
1329
- map: Map
1330
- table: Table
1331
- cancel-orders: Cancel Orders
1332
- delete-orders: Delete Orders
1333
- dispatch-orders: Dispatch Orders
1334
- assign-driver: Assign Driver
1335
- route-optimization: Route Optimization
1336
- bulk-assign-driver-helptext: Select a driver to assign to multiple orders.
1337
- new:
1338
- create-new-customer: Create new customer
1339
- create-new-facilitator: Create new facilitator
1340
- create-new-place: Create new place
1341
- add-order: Add entity to order
1342
- edit-order: Edit order metadata
1343
- add-field: Add custom field
1344
- order-type: Order Type
1345
- order-type-help-text: Selecting the order type will tell fleetbase what order configurations to use.
1346
- order-type-placeholder: Select Order Type
1347
- internal-id: Internal ID
1348
- internal-id-help-text: Use this field to optionally set a custom identifier or internal identifier for the order.
1349
- schedule: Schedule
1350
- schedule-help-text: The date and time the order will be dispatched. If no driver is assigned at time of dispatch, the dispatch will fail. If the order is Ad-Hoc the order will be pinged to drivers in vicinity of pickup.
1351
- customer: Customer
1352
- customer-help-text: Optionally assign the customer of this order. If it's a new customer, use the 'New Customer' button above.
1353
- customer-placeholder: Select Customer
1354
- facilitator: Facilitator
1355
- facilitator-help-text: Optionally assign a facilitator for this order, a facilitator can be a 3rd party subcontractor or service that will facilitate the transport of this order.
1356
- facilitator-placeholder: Select Facilitator
1357
- service-type: Service Type
1358
- service-type-placeholder: Select service Type
1359
- service-type-help-text: Select the service type you wish to use for
1360
- assign-driver: Assign Driver
1361
- assign-driver-help-text: Assign the driver this order will be dispatched to.
1362
- assign-driver-placeholder: Select Driver
1363
- assign-vehicle: Assign Vehicle
1364
- assign-vehicle-help-text: Assign the vehicle this order will be performed with.
1365
- assign-vehicle-placeholder: Select Vehicle
1366
- proof-delivery: Proof of Delivery
1367
- proof-delivery-help-text: Select the type of proof of delivery to require. This can either be QR code scan or Signature method.
1368
- proof-delivery-placeholder: Select Proof of Delivery Method
1369
- adhoc-ping: Adhoc Ping Distance
1370
- adhoc-ping-help-text: This setting determines the adhoc distance to ping for this order, if unset it will fallback to the default setting.
1371
- adhoc-ping-message: Distance must be in meters
1372
- ad-hoc: Ad-Hoc
1373
- ad-hoc-help-text: Toggling Ad-Hoc will enable the order to intelligently ping drivers within the order pickup vicinity about the order allowing the first available driver to accept the order. This is an alternative to manually assigning the driver for real-time orders.
1374
- dispatch: Dispatch Immediately
1375
- dispatch-help-text: Toggling dispatch will dispatch this order immediatley following creation.
1376
- require-proof: Require Proof of Delivery
1377
- require-proof-help-text: Toggling this will require driver to complete a proof of delivery.
1378
- additional-details: Additional Details
1379
- metadata: Metadata
1380
- route: Route
1381
- route-label: Multiple Dropoff's
1382
- optimize-route: Optimize Route
1383
- optimize-route-help-text: Fleetbase will automatically optimize the route.
1384
- add-waypoint: Add Waypoint
1385
- add-waypoint-help-text: Use the `Add Waypoint` button to add more stops for this order. The Fleetbase routing engine will automatically optimize the route as each stop is added or removed.
1386
- select-waypoint-placeholder: Select Waypoint
1387
- infoblock-text: is not able to support this location.
1388
- invalid-coordinates: Invalid coordinates!
1389
- pickup: Pickup
1390
- select-pickup: Select Pickup
1391
- dropoff: Dropoff
1392
- select-dropoff: Select Dropoff
1393
- return: Return
1394
- edit-address: Edit Address
1395
- select-return: Select Return
1396
- payload-entities: Payload / Entities
1397
- add-item-order: Add Item to Order
1398
- items-drop: Items drop at
1399
- add-item-button: Add Item
1400
- add-entity: Add Entity
1401
- sku: SKU
1402
- select-destination: Select Destination
1403
- edit-item: Edit Item
1404
- apply-service-rate: Apply service rate
1405
- service-help-text: Select a defined service rate to generate real time service quotations to apply to this order.
1406
- service-quotes: Service Quotes
1407
- service-quotes-help-text: Select which service rate to fetch quotes for.
1408
- select-service-rate: Select Service Rate
1409
- refresh-button: Refresh
1410
- loading-message: Loading service quotes...
1411
- info-text: Select a real time service quote to apply to this order. Once a quote is applied to the order, it will become a purchased rate. Transactions will be tracked within the Fleetbase ledger.
1412
- breakdown: Breakdown
1413
- no-service-info-text: No service quotes.
1414
- input-order-info-text: Input order route to view service quotes.
1415
- notes-title: Notes
1416
- notes-placeholder: Enter order notes here....
1417
- success-message: New Order {orderId} Created
1418
- warning-message: No files in queue to upload!
1419
- import-success: Import completed.
1420
- service-warning: Failed to fetch service quotes for this order.
1421
- no-route-warning: No route to preview.
1422
- route-error: Route optimization failed, check route entry and try again.
1423
- custom-field-title: Add custom field to order
1424
- label-warning: Custom field must have a label
1425
- value-warning: Custom field must have a value
1426
- edit-field-title: Edit custom field
1427
- edit-metadata: Edit Metadata
1428
- input-field-required: The {inputFieldName} is required.
1429
- proof-of-delivery: Proof of Delivery
1430
- no-proof-of-delivery: No Proof of Delivery Captured.
1431
- view:
1432
- purchase-rate-panel-title: Purchase Rate
1433
- documents-panel-title: Documents & Files
1434
- route-panel-title: Route
1435
- currency: Currency
1436
- comments-title: Comments
1437
- notes-title: Notes
1438
- dispatch: Dispatch
1439
- order-actions: Order Actions
1440
- edit-details: Edit Details
1441
- update-activity: Update Activity
1442
- unassign-driver: Unassign Driver
1443
- assign-driver: Assign Driver
1444
- get-order-label: Get Order Label
1445
- listen-socket-channel: Listen to socket channel
1446
- view-metadata: View metadata
1447
- cancel-order: Cancel Order
1448
- delete-order: Delete Order
1449
- activity: Activity
1450
- unable-load-order-activity: Unable to load order activity.
1451
- no-order-activity: No order activity yet.
1452
- ad-hoc: Ad-Hoc
1453
- customer: Customer
1454
- facilitator: Facilitator
1455
- driver-assigned: Driver Assigned
1456
- vehicle-assigned: Vehicle Assigned
1457
- change-driver: Change Driver
1458
- tracking-number: Tracking Number
1459
- date-scheduled: Date Scheduled
1460
- date-dispatched: Date Dispatched
1461
- date-started: Date Started
1462
- order-details-title: Order Details
1463
- additional-details-title: Additional Details
1464
- route: Route
1465
- pickup: Pickup
1466
- dropoff: Dropoff
1467
- return: Return
1468
- order-summary: Order Summary
1469
- subtotal: Subtotal
1470
- delivery-fee: Delivery fee
1471
- tip: Tip
1472
- delivery-tip: Delivery Tip
1473
- total: Total
1474
- payload: Payload
1475
- items-drop: Items drop at
1476
- tracking: Tracking
1477
- waypoint-actions: Waypoint Actions
1478
- get-label: Get Label
1479
- view-activity: View Activity
1480
- add-item-button: Add Item
1481
- edit-item-button: Edit Item
1482
- edit-order-title: Edit Order Details
1483
- update-success: '{orderId} details has been updated.'
1484
- order-metadata: Order Metadata
1485
- unassign-title: Are you sure you wish to unassing the driver ({driverName}) from this order?
1486
- unassign-body: Once the driver is unassigned, the driver will no longer have access to this orders details.
1487
- unassign-success: Driver has been unassigned from this order.
1488
- edit-route-title: Edit Order Route
1489
- route-error: Route optimization failed, check route entry and try again.
1490
- route-update-success: '{orderId} route details updated.'
1491
- add-activity-title: Add new activity to order
1492
- invalid-warning: Invalid custom status entry.
1493
- change-order: Change order driver
1494
- assign-order: Assign driver to order
1495
- assign-success: '{orderId} assigned driver updated.'
1496
- order-title: Order Label
1497
- waypoint-title: Waypoint Label
1498
- proof-of-delivery: Proof of Delivery
1499
- notes-placeholder: Enter order notes here....
1500
- save-order-note: Save Order Note
1501
- order-notes-updated: Order notes updated.
1502
- no-proof-of-delivery: No Proof of Delivery Captured.
1503
- view-label: View Label
1504
- config:
1505
- title: Orders Configuration
1506
- message: Order configurations allow you to define dynamic configurations which will tell Fleetbase how different types of orders should be executed.
1507
- configuration: Configuration
1508
- types:
1509
- no-order-installed: No order configurations installed!
1510
- you-have-no-configs: You currently have no order configs installed, check at the extensions to install an order configuration to get started.
1511
- view-extensions: View extensions
1512
- scheduler:
1513
- index:
1514
- success-message: Order {orderId} has been scheduled at {orderAt}.
1515
- info-message: Order {orderId} has been unscheduled.
1516
- title: Scheduler
1517
- unscheduled-orders: Unscheduled Orders
1518
- scheduled-orders: Scheduled Orders
1519
- unauthorized-to-schedule: You are not authorized to schedule orders.
1520
- service-rates:
1521
- index:
1522
- edit-service: Edit Service Rate
1523
- delete-service: Delete Service Rate
1524
- accept-button: Delete Service's
1525
- edit:
1526
- success-message: Service rate {serviceName} updated
1527
- title: Service Rates
1528
- reload-data: Reload data
1529
- delete-service-rates: Delete Service Rates
1530
- new:
1531
- success-message: New Service Rate {serviceName} Created
1532
- new-service-rate-title: New service rate
1533
- save-service-button: Save Service Rate
1534
- create-service-button: Create Service Rate
1535
- service-name: Service Name
1536
- service-name-help-text: Display name for this service.
1537
- service-order-label: Service Order Type
1538
- service-order-help-text: Select an order configuration to which this service rate will be exclusively applied. This ensures that only orders created with the selected order configuration can utilize this specific service rate.
1539
- service-order-placeholder: Select order type to restrict service to
1540
- base-fee-label: Base Fee
1541
- base-fee-help-text: Set a base fee which represents the minimum cost for this serice.
1542
- rate-calculation-label: Rate Calculation Method
1543
- rate-calculation-help-text: The method this service will use to calculate rates when queried.
1544
- rate-calculation-placeholder: Select rate calculation method
1545
- estimated-days: Estimated Delivery Days
1546
- estimated-days-help-text: The estimated number of days this service will take. For a same-day service use `0`.
1547
- duration-terms-label: Duration Terms
1548
- duration-terms-help-text: Add additional terms of service regarding duration for this serice rate.
1549
- duration-terms-placeholder: Duration terms if applicable
1550
- fixed-meter: Fixed Meter Options
1551
- fixed-meter-text: This option defines a fixed fee per kilometer.
1552
- fixed-meter-example-text: >-
1553
- For example: Every 1 kilometer a fixed fee is defined. If the distance traveled by the order is 3,300 meters the fixed fee for the 3rd kilometer will be added to the sum of the base fee.
1554
- maximum-distance: Maximum Distance
1555
- maximum-distance-help-text: The maximum distance servicable.
1556
- distance: Distance
1557
- fee: Fee
1558
- per-drop-off-title: Per Drop-off Options
1559
- per-drop-off-text: This option defines a fixed fee per drop-offs.
1560
- per-drop-off-example-text: >-
1561
- For example: 1-5 dropoffs in the order will cost $x amount, 5-10 dropoffs per order will cost $x amount. This will be added to the sum of the base fee.
1562
- add-drop-off-button: Add drop-off range
1563
- min-drop: Min Drop
1564
- max-drop: Max Drop
1565
- min: Min
1566
- max: Max
1567
- per-meter: Per Meter
1568
- per-meter-text: This option allows the service to be calculated per kilometer or meter, that means you define a flat fee which is then multiplied by the distance which can be either meter or kilometer.
1569
- per-meter-example-text: >-
1570
- For example: '{fee}' * '{distance}' + '{baseFee}'
1571
- per-meter-rate-fee: Per Meter Flat Rate Fee
1572
- per-meter-rate-fee-help-text: The single flat fee which will be multipled by the distance.
1573
- distance-unit: Distance Unit
1574
- distance-unit-help-text: The unit of distance can be either per kilometer or meter.
1575
- distance-unit-placeholder: Select distance unit.
1576
- custom-algorithm-title: Custom Algorithm
1577
- custom-algorithm-info-message: This option is to define a custom calculation for this service's fee with variables.
1578
- custom-algorithm-info-second-message: Note that variables must be wrapped in a single curly brace.
1579
- distance-message: distance
1580
- distance-continue-message: >-
1581
- - the distance in meters from the order route.
1582
- time-message: time
1583
- time-continue-message: >-
1584
- - the route ETA in seconds.
1585
- example: Example
1586
- example-message: If the order request is a distance of 2,200 meters with an ETA of 30 minutes.
1587
- example-second-message: Then the following formula will calculate a service fee of $2.50, which will be added to the base fee.
1588
- algorithm-label: Algorithm
1589
- algorithm-help-text: Define a formula to be evaluated for this service rate calculation.
1590
- algorithm-placeholder: >-
1591
- (( '{distance}' / 50 ) * .05 ) + (( '{time}' / 60 ) * .01)
1592
- percel-fee-title: Parcel Fee's
1593
- length-label: Length
1594
- length-placeholder: Length in {parcelFeeDimension}
1595
- width-label: Width
1596
- width-placeholder: Width in {parcelFeeDimension}
1597
- height-label: Height
1598
- height-placeholder: Height in {parcelFeeDimension}
1599
- weight-label: Weight
1600
- weight-placeholder: Weight in {parcelFeeWeight}
1601
- deminsions-unit: Dimensions Unit
1602
- select-unit-placeholder: Select unit
1603
- weight-unit: Weight Unit
1604
- additional-fee: Additional Fee
1605
- cash-delivery-title: Cash on Delivery
1606
- cash-delivery-label: Enable additional fee for `cash on delivery` orders?
1607
- calculation-method-label: Cash on Delivery Fee Calculation Method
1608
- calculation-method-help-text: Method used to calculate the COD fee.
1609
- calculation-method-placeholder: Select COD fee calculation method
1610
- delivery-flat-fee: Cash on Delivery Flat Fee
1611
- delivery-flat-fee-help-text: Defines a flat fee to be added during peak hours.
1612
- fee-percentage: Cash on Delivery Fee Percentage
1613
- fee-percentage-help-text: Defines a percentage based fee from the service rate subtotal to be added as the COD fee.
1614
- percentage-placeholder: Percentage
1615
- peak-hours-title: Peak Hours
1616
- peak-hours-label: Enable additional fee for order made during service defined `peak hours`?
1617
- peak-hours-start-label: Peak Hours Start
1618
- peak-hours-start-help-text: Defines the what time the peak hour fee starts.
1619
- peak-hours-end-label: Peak Hours End
1620
- peak-hours-end-help-text: Defines the what time the peak hour fee ends.
1621
- peak-hours-fee-label: Peak Hours Fee Calculation Method
1622
- peak-hours-fee-help-text: Method used to calculate the peak hours fee.
1623
- peak-hours-fee-placeholder: Select peak hours fee calculation method
1624
- flat-fee-label: Peak Hours Flat Fee
1625
- flat-fee-help-text: Defines a flat fee to be added during peak hours.
1626
- peak-hours-percentage-label: Peak Hours Fee Percentage
1627
- peak-hours-percentage-help-text: Defines a percentage based fee from the service rate subtotal to be added during peak hours.
1628
- restrict-service-title: Restrict Service
1629
- service-area-label: Service Area
1630
- service-area-help-text: Restrict this service to order request originating from a service area.
1631
- service-area-placeholder: Restrict to service area
1632
- zone-label: Zone
1633
- zone-help-text: Restrict this service to order request originating from a specific zone.
1634
- zone-placeholder: Restrict to zone
1635
- settings:
1636
- notifications:
1637
- fleet-ops-notification-settings: Fleet-Ops Notification Settings
1638
- fleet-ops-notifications: Fleet-Ops Notifications
1639
- configure-notifications: Configure Notifications
1640
- routing:
1641
- fleet-ops-routing-settings: Fleet-Ops Routing Settings
1642
- fleet-ops-routing: Fleet-Ops Routing
1643
- configure-routing: Configure Routing
1644
- navigator-app:
1645
- navigator-app-settings: Navigator App Settings
1646
- payments:
1647
- payments: Payments
1648
- payment-settings: Payment Settings
1420
+ body: Vehicle Body Type
1421
+ doors: Number of Doors
1422
+ type: Vehicle Drive Type
1423
+ length: Vehicle Length (mm)
1424
+ seats: Number of Seats
1425
+ top-speed: Vehicle Top Speed (kph)
1426
+ transmission: Vehicle Transmission Type
1427
+ weight: Vehicle Weight (kg)
1428
+ wheelbase: Vehicle Wheelbase (mm)
1429
+ width: Vehicle Width (mm)
1430
+ engine-bore: Engine Bore (mm)
1431
+ cc: CC
1432
+ compression: Engine Compression
1433
+ cylinder: Engine Cylinders
1434
+ position: Engine Position
1435
+ power-ps: Engine Power (ps)
1436
+ power-rpm: Engine Power (rpm)
1437
+ stroke: Stroke Length (mm)
1438
+ torque-nm: Engine Torque (nm)
1439
+ torque-rpm: Engine Torque (rpm)
1440
+ fuel-type: Fuel Type
1441
+ fuel-cap: Fuel Cap Volume (L)
1442
+
1443
+ vendor-details:
1444
+ sandbox: Sandbox
1445
+ host: Host
1446
+ namespace: Namespace
1447
+
1448
+ vendor-form:
1449
+ choose-vendor: Choose Integrated Vendor
1450
+ create-vendor: Create Custom Vendor
1451
+ credentials: Credentials
1452
+ options: Options
1453
+ hide-advanced: Hide Advanced
1454
+ show-advanced: Show Advanced
1455
+ custom-host: Custom Host
1456
+ host-text: Optionally provide a custom host that should be used for this integration.
1457
+ custom-namespace: Custom Namespace
1458
+ namespace-text: Optionally provide a custom namespace or api version that should be used for the integration.
1459
+ webhook: Webhook URL
1460
+ webhook-text: Integrated vendors will typically require this so that Fleetbase can receive activity updates on the order. Do not change unless you know what you are doing! Changing this may break your order updates!
1461
+ cancel-credentials: Cancel credentials reset
1462
+ reset-message: Sensitive credentials can only be reset, to update credentials you must re-enter the credentials.
1463
+ optionally: Optionally supply your own
1464
+ configure-vendor: to configure this vendor.
1465
+ select: Select
1466
+ sandbox: Sandbox
1467
+ name-text: The vendor's name, typically the name of a business.
1468
+ email-text: The vendor's email, this can be used to trigger emails to the vendor.
1469
+ phone-text: The vendor's phone \#, this can be used to trigger SMS or messages to the vendor.
1470
+ website-text: The vendor's website, optionally add the vendors website for reference.
1471
+ select-address: Select Address
1472
+
1473
+ zone-form:
1474
+ name: Zone Name
1475
+ name-text: Set a display name for the zone.
1476
+ border-color: Zone Border Color
1477
+ customize-border: Customize the border color for this zone.
1478
+ zone-color: Zone color
1479
+ customize-fill-color: Customize the fill color for this zone.
1480
+ optionally: Optionally give the zone a description.
1481
+ description-zone: Description of Zone
1482
+
1483
+ widget:
1484
+ fleet-ops-quickstart:
1485
+ message: Let's see what you can do to jumpstart operations...
1486
+ start-task: Start Task
1487
+ key-metrics:
1488
+ title: Fleet-Ops Metrics
1489
+ earnings: Earnings
1490
+ fuel-expenses: Fuel Expenses
1491
+ traveled: Distance Traveled
1492
+ total-time: Total Time
1493
+ order-scheduled: Orders Scheduled
1494
+ order-completed: Orders Completed
1495
+ order-progress: Orders In Progress
1496
+ order-canceled: Orders Canceled
1497
+ driver-online: Drivers Online
1498
+ customers: Customers
1499
+ open-issue: Open Issue
1500
+ closed-issues: Closed Issues
1501
+ live-order-map:
1502
+ loading: Loading orders in progress...
1503
+ assigned: Driver Assigned
1504
+ no-order: No orders in progress
1505
+ message: When orders are in progress they will display in this widget and show real time activity.
1506
+ recent-orders:
1507
+ title: Recent Orders
1508
+ loading: Loading recent orders...
1509
+ no-orders: No orders for this week
1510
+ message-part-1: There hasn't been any orders this week, get movement going by
1511
+ message-part-2: creating a new order
1512
+ message-part-3: or allow your customers to submit orders via API.
1513
+ transactions:
1514
+ title: Recent Transactions
1515
+ loading: Loading recent transactions...
1516
+ no-transactions: No transactions this week
1517
+ message: When orders are going through with service rates, Fleetbase tracks transactions automatically.
1518
+
1519
+ display-panel:
1520
+ no-address: No {type} address!
1521
+ no-address-message: No address!
1522
+
1523
+ driver-card:
1524
+ no-fleets: No Fleets
1525
+
1526
+ global-search:
1527
+ search: Search by keyword...
1528
+
1529
+ integrated-order-details:
1530
+ order-id: Order ID
1531
+ quotation-id: Quotation ID
1532
+ driver-id: Driver ID
1533
+ link: Shareable Link
1534
+ price-breakdown: Price Breakdown
1535
+ metadata: Metadata
1536
+
1537
+ geofence:
1538
+ prompts:
1539
+ use-draw-controls-create-service-area: Use drawing controls to the right to draw a service area, complete point connections to save service area.
1540
+ use-draw-controls-create-zone: Use drawing controls to the right to draw a zone within the service area, complete point connections to save zone.
1541
+ no-layer-found-for-resource: No layer found for this {resource}.
1542
+ editing-enabled: Editing enabled — adjust vertices then click the edit check to apply.
1543
+ resource-boundaries-updated: >-
1544
+ {resource} boundaries updared successfully.
1545
+ edit-canceled: Edit Canceled.
1546
+ failed-to-update-resource: Failed to update {resource}.
1547
+
1548
+ live-map:
1549
+ show-coordinates: Show Coordinates
1550
+ center-map: Center Map Here
1551
+ zoom-in: Zoom In
1552
+ zoom-out: Zoom Out
1553
+ toggle-draw-controls: Toggle Draw Controls
1554
+ hide-draw: Hide Draw Controls
1555
+ enable-draw: Enable Draw Controls
1556
+ create-new-service: Create new Service Area
1557
+ focus-service: 'Focus Service Area: {serviceName}'
1558
+ view-driver: 'View Driver: {driverName}'
1559
+ edit-driver: 'Edit Driver: {driverName}'
1560
+ delete-driver: 'Delete Driver: {driverName}'
1561
+ view-vehicle-for: 'View Vehicle for: {driverName}'
1562
+ view-vehicle: 'View Vehicle: {vehicleName}'
1563
+ edit-vehicle: 'Edit Vehicle: {vehicleName}'
1564
+ delete-vehicle: 'Delete Vehicle: {vehicleName}'
1565
+ edit-zone: 'Edit Zone: {zoneName}'
1566
+ delete-zone: 'Delete Zone: {zoneName}'
1567
+ assign-zone: 'Assign Fleet to Zone: {zoneName}'
1568
+ blur-service: 'Hide Service Area: {serviceName}'
1569
+ create-zone: 'Create Zone Within: {serviceName}'
1570
+ assign-fleet: 'Assign Fleet to Service Area: {serviceName}'
1571
+ edit-service: 'Edit Service Area: {serviceName}'
1572
+ delete-service: 'Delete Service Area: {serviceName}'
1573
+ service-area: Service Area
1574
+ edit-boundaries: 'Edit Boundaries: {resource}'
1575
+ zone: Zone
1576
+
1577
+ order-config:
1578
+ create-new-title: Create a new order configuration
1579
+ warning-message: Order configuration requires a name
1580
+ success-message: New order config created successfully.
1581
+ no-order-warning: No order configuration selected.
1582
+ saved-success: '{orderName} order configuration saved.'
1583
+ enter-name-title: Enter name of cloned configuration
1584
+ no-config-warning: No config name entered.
1585
+ cloned-success: Order config successfully cloned.
1586
+ body: Once this order configuration is deleted you will not be able to create orders using it anymore. Are you sure?
1587
+ uninstall-title: Uninstall Configuration
1588
+ uninstall-success: Extension {extensionName} uninstalled.
1589
+ activity-flow-editor:
1590
+ add-status: Add new status to flow
1591
+ no-status: No status entered.
1592
+ overwrite: This will overwrite an existing status!
1593
+ overwrite-text: There is another {statusName} status already existing in this flow, if you continue this status will be overwritten. Would you like to overwrite the previous {statusName} status?
1594
+ overwrite-button: Yes, overwrite!
1595
+ remove: Remove status
1596
+ remove-text: Are you sure you wish to delete this status? All related activites and logic will be deleted along with the status.
1597
+ delete-button: Yes, delete
1598
+ unable-warning: The {status} must be in this order of sequence, unable to shift.
1599
+ order-warning: The created status must always be the first sequence of an order flow.
1600
+ title: Activity Flow
1601
+ message: Activity flow configuration will allow you to define the different types of tracking status activities that apply for this order type. Logic of the activity flow can also be configured.
1602
+ order-flow: Order Flow
1603
+ waypoint-flow: Waypoint Flow
1604
+ new-activity: New Activity
1605
+ activity-details: Activity Details
1606
+ logic-stack: Logic Stack
1607
+ add-logic: Add logic condition
1608
+ select-field: Select field
1609
+ select-operator: Select operator
1610
+ enter-value: Enter value to compare
1611
+ no-logic: No logic conditions applied
1612
+ details-editor:
1613
+ success: Installed
1614
+ key-text: Pass this key into your order type to configure the order using this config.
1615
+ namespace-text: Unique namespace for this extension.
1616
+ id: Extension ID
1617
+ id-text: Unique ID for this extension.
1618
+ version: Extension Version
1619
+ version-text: Version of this extension.
1620
+ clone: Clone Configuration
1621
+ uninstall: Uninstall Configuration
1622
+ delete: Delete Configuration
1623
+ entities-editor:
1624
+ warning-message: No meta field key name entered.
1625
+ title: Entities
1626
+ message: Entities configuration will allow you to define the different type of entities that should be selectable for this order type. These should be used like templates to make manual order creation faster.
1627
+ type: Entity Type
1628
+ add-meta: Add meta field
1629
+ fields-editor:
1630
+ text-field: Text Field
1631
+ boolean: Boolean
1632
+ boolean-text: Allows user to toggle a true or false property by checkbox
1633
+ dropdown: Dropdown Select
1634
+ dropdown-text: Allows user to select an option from a dropdown of options
1635
+ datetime: Datetime Selector
1636
+ datetime-text: Allows user to select a date & time
1637
+ port: Port Selector
1638
+ port-text: Allows user to select a port
1639
+ vessel: Vessel Selector
1640
+ vessel-text: Allows user to select a vessel
1641
+ warning-message: No group name entered.
1642
+ field-title: Meta Fields
1643
+ new-field: New Custom Field
1644
+ new-custom-field: New Custom Fields Group
1645
+ field-text: Meta fields configuration will allow you to define custom input fields that will be applied to orders.
1646
+ custom-field-group: Custom Fields Group
1647
+ default-field: Default Fields
1648
+ custom-field: Custom Field
1649
+ type: Field Type
1650
+ select-type: Select field type
1651
+ add-option: Add Option
1652
+ select-message: Select an order configuration to modify, or click "New Config" to create a new order configuration.
1653
+ new-config: New Config
1654
+ loading-configuration: Loading your order configurations...
1655
+ select-order: Select order configuration
1656
+ save-changes: Save Changes
1657
+ details: Details
1658
+ fields: Custom Fields
1659
+ flow: Activity Flow
1660
+ entities: Entities
1661
+
1662
+ order-list-overlay:
1663
+ search: Search orders...
1664
+ selected: Selected
1665
+ assign: Assign to driver...
1666
+ cancel: Cancel orders...
1667
+ delete: Delete orders...
1668
+ dispatch: Dispatch orders...
1669
+ actions: Actions
1670
+ create-order: Create new order...
1671
+ create-fleet: Create new fleet...
1672
+ active-orders: Active Orders
1673
+ unassigned-orders: Unassigned Orders
1674
+
1675
+ route-list:
1676
+ expand: Tap to expand
1677
+ collapse: Tap to collapse
1678
+ more-waypoints: more waypoints
1679
+
1680
+ settings:
1681
+ custom-fields: Custom Fields
1682
+ notifications:
1683
+ fleet-ops-notification-settings: Fleet-Ops Notification Settings
1684
+ fleet-ops-notifications: Fleet-Ops Notifications
1685
+ configure-notifications: Configure Notifications
1686
+ select-notifiables: Select Notifiables
1687
+ routing:
1688
+ fleet-ops-routing-settings: Fleet-Ops Routing Settings
1689
+ fleet-ops-routing: Fleet-Ops Routing
1690
+ configure-routing: Configure Routing
1691
+ select-routing-service: Select Routing Service
1692
+ routing-service: Routing Service
1693
+ routing-service-help-text: Select the service which is responsible for calculating and plotting routes on the map.
1694
+ select-routing-distance-unit: Select Routing Distance Unit
1695
+ routing-distance-unit: Routing Distance Unit
1696
+ routing-distance-unit-help-text: The unit used for calculating distance and routes.
1697
+ navigator-app:
1698
+ navigator-app-settings: Navigator App Settings
1699
+ payments:
1700
+ payments: Payments
1701
+ payment-settings: Payment Settings
1702
+ account-not-setup-for-payments: Your account is not setup to accept payments yet.
1703
+ to-accept-payments: To accept and process payments, you must complete the onboard process via Stripe.
1704
+ system-stripe-not-setup: This system is unable to acceot or process payments at this time, contact the system administrator to configure payments.
1705
+ loading-settings: Loading payment settings...
1706
+ onboard:
1707
+ header-title: Payments Onboard
1708
+ title-completed: Onboarding was completed successfully!
1709
+ title-incomplete: Complete this onboard process to accept payments.
1710
+ subtitle-completed: Your onboard was successful and you're now able to accept and receive payments from customers and 3rd parties.
1711
+ subtitle-incomplete: This onboard process must be completed for payments to be accepted for orders.
1712
+ button-continue: Continue
1713
+ button-start: Start onboard now
1714
+ button-in-progress: Onboard in progress