Skip to content

Commit f21f6a7

Browse files
Update script.js
Not sure if anything changed, but updated to match v2.3
1 parent 4c0572f commit f21f6a7

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

script.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
var spinner = $('#loader');
2-
const scriptURLC ='https://script.google.com/macros/s/AKfycbwupao1b1HXH_BnO-Rl1GHYvnSIn09dxs-xBamcI1UHvuyU-z5OyEYouGbaPjjr-oyX/exec';
2+
const scriptURLC ='https://script.google.com/macros/s/AKfycbxB8ZYOIRQoGRcB8nm4rTXR6kBaP2JM9m6hrp1qgVEfdFOoDc20CKC-iqsihtA6YD_B/exec';
33
const serverlessForm = document.forms['serverless-form'];
44
var timerOn = false;
55
var bgAnimate = false;
@@ -154,6 +154,7 @@ $('#tape-num').change(function(){
154154

155155
$('#existing-qc-notes').html("Retrieving Tape Notes");
156156
getOrderDetails(currentOrderID, $('#tape-num').val(), currentTech);
157+
157158
})
158159

159160
//If the initials have been updated, update order Status on Order Tracking.
@@ -350,7 +351,7 @@ function getOrderDetails(orderID, tapeNum, initials){
350351
}
351352

352353
$("#existing-qc-notes").html(formattedNotes);
353-
$("#order-notes").html(data.orderNotes);
354+
$("#order-notes").html('<a href="' + data.orderURL + '" target="_blank">Link to File Log</a>' + '</br>' + data.orderNotes);
354355
$("#last-name").val(data.customerName);
355356

356357
copyToClipboard($('#order-id').val() + "_" + $('#last-name').val() + "_" + ('000' + $('#tape-num').val()).slice(-3))

0 commit comments

Comments
 (0)