(function() { var take = function() { //DDP const chatform=localStorage.getItem("chatform") var TrackingExec=()=>{ var TrackingInterval = setInterval(function () { const Tracking = document.querySelector('#order-number') if(chatform && Tracking){ clearInterval(TrackingInterval); console.log("at complete") var url = "https://pr.aqur.com/track"; function track(trackingData) { fetch(url, { method: "POST", headers: { "Content-Type": "application/json" }, body: trackingData }) .then(response => response.json()) .then(data => { trackingData.Completed = true // toLocaleString with the sv-SE locale to get a format and replaces the space and hyphens to match the format. let currentDateTime = new Date().toLocaleString('sv-SE', { timeZone: 'Asia/Tokyo', hour12: false }).replace(' ', '_').replace(/-/g, '/') trackingData.data = { "Date": currentDateTime, "uuId": trackingData.uuId } trackingData.status = "finished" var param = { method: 'POST', headers: { "Content-Type": "application/json" }, body: JSON.stringify(trackingData) }; const url = "https://pr.aqur.com/pdi/set"; fetch(url, param) .then(response => response.json()) .then(data => { console.log('Update PDI succes') }).catch(error => { console.log("fail"); }); console.log("Conversion Tracked!!") localStorage.removeItem("chatform") }) } track(chatform) } }, 100); } TrackingExec() } setTimeout(take, 0); }())