var mensagemSucesso = document.querySelector('.DialogMessage.MessagePositiveResult'); var confirmacaoCompra = document.querySelector('h1'); if (confirmacaoCompra && confirmacaoCompra.innerText.includes('Confirma')) { gtagEcommercePurchase(); } // Comércio Eletrônico function gtagEcommercePurchase(){ var transaction_id = document.querySelector("body > div > div.Middle > div > div > div > div > div.InPrintViewNotVisible > p:nth-child(4)").textContent.trim().replace("O número da sua encomenda é: ", "").replace(/(\r\n|\n|\r\ \t)/gm, "").replace(/\s/g, "").replace("Imprimir", ""); var order_total = parseFloat(document.querySelector(".Total .Total").textContent.replace("€","").replace(",",".")); var items = []; var htmlItems = document.querySelectorAll(".productBasketImage"); for (var i = 0; i < htmlItems.length; i++) { let htmlProduct = htmlItems[i].parentNode.parentNode; let item = { } let produto = htmlProduct; item.id = /[^/]*$/.exec(htmlProduct.querySelector("a").href)[0]; item.name = htmlProduct.querySelector("a").textContent; item.quantity = parseFloat(htmlProduct.querySelector('td[data-th="Quantidade"]').textContent.split(' ')[0]); item.price = parseFloat(htmlProduct.querySelector('td[data-th="Preço total"]').textContent.replace(",",'.').replace("€","")); items.push(item); } }
from manuel maia on 19/02/2022
from Sofia Garnecho on 18/04/2022
from Cátia on 18/04/2022
from Paulo Lopes on 05/05/2022
from Anonymous on 03/06/2022
from Liga Portuguesa Contra o Cancro on 11/07/2022
from LPCC NRS on 23/01/2023
from Andreia N on 14/10/2024
from Sofia Garnecho on 09/12/2024