diff --git a/public/assets/images/icon-destination.png b/public/assets/images/icon-destination.png
new file mode 100644
index 00000000..2ef2fdff
Binary files /dev/null and b/public/assets/images/icon-destination.png differ
diff --git a/templates/job-order/form.html.twig b/templates/job-order/form.html.twig
index 1849f14d..8bd64bdc 100644
--- a/templates/job-order/form.html.twig
+++ b/templates/job-order/form.html.twig
@@ -71,6 +71,11 @@
+
@@ -403,7 +408,8 @@ $(function() {
map.setCenter(lat, lng);
map.addMarker({
lat: lat,
- lng: lng
+ lng: lng,
+ icon: '/assets/images/icon-destination.png'
});
// set value in hidden input
@@ -462,7 +468,10 @@ $(function() {
omap.addMarker({
lat: {{ obj.getCoordinates.getLatitude }},
- lng: {{ obj.getCoordinates.getLongitude }}
+ lng: {{ obj.getCoordinates.getLongitude }},
+ icon: '/assets/images/icon-destination.png',
+ title: "Destination",
+ content: "Destination"
});
{% for outlet in outlets %}
@@ -593,6 +602,7 @@ $(function() {
$("#customer-first-name").val(vdata.customer.first_name);
$("#customer-last-name").val(vdata.customer.last_name);
$("#customer-mobile-numbers").val(vdata.customer.mobile_numbers.join("\r\n"));
+ $("#customer-customer-notes").val(vdata.customer.customer_notes);
$("#vmfg").val(vdata.vehicle.mfg_name);
$("#vehicle-make").val(vdata.vehicle.make);
$("#vehicle-year").val(vdata.vehicle.model_year);