Add tag to results

This commit is contained in:
2024-01-10 21:43:49 +01:00
parent 84ce71a915
commit d7e74f5e71

View File

@@ -50,6 +50,7 @@ let tproducts = computed(() => {
prod.calcPrice = prod.salesPrice; prod.calcPrice = prod.salesPrice;
prod.currency = 'EUR' prod.currency = 'EUR'
} }
if (prod.tag == 'NONE') prod.tag = '';
prod.calcPrice = (prod.calcPrice * currencyCoef.value).toFixed(2); prod.calcPrice = (prod.calcPrice * currencyCoef.value).toFixed(2);
prod.rate = currencyHash.value[prod.currency]; prod.rate = currencyHash.value[prod.currency];
@@ -95,7 +96,7 @@ const hrates = ref([
// { "country": "AT", "code": "50161321", "url": "https://www.ikea.com/at/de/p/hol-aufbewahrungstisch-akazie-50161321/", "name": "HOL", "typeName": "Aufbewahrungstisch", "mainImageUrl": "https://www.ikea.com/at/de/images/products/hol-aufbewahrungstisch-akazie__0104310_pe251255_s5.jpg", "itemNoGlobal": "50161321", "salesPrice": "80.99", "tag": "FAMILY_PRICE", "last_mod": "2023-12-03 16:44:24" }, // { "country": "AT", "code": "50161321", "url": "https://www.ikea.com/at/de/p/hol-aufbewahrungstisch-akazie-50161321/", "name": "HOL", "typeName": "Aufbewahrungstisch", "mainImageUrl": "https://www.ikea.com/at/de/images/products/hol-aufbewahrungstisch-akazie__0104310_pe251255_s5.jpg", "itemNoGlobal": "50161321", "salesPrice": "80.99", "tag": "FAMILY_PRICE", "last_mod": "2023-12-03 16:44:24" },
const hproducts = ref([ const hproducts = ref([
{ text: "Country", value: "countryName", sortable: true }, { text: "Country", value: "countryName", sortable: true },
// { text: "Name", value: "name", sortable: true }, { text: "Tag", value: "tag", sortable: true },
{ text: "Local Price", value: "salesPrice", sortable: true }, { text: "Local Price", value: "salesPrice", sortable: true },
{ text: "Cur", value: "currency", sortable: false }, { text: "Cur", value: "currency", sortable: false },
{ text: "Rate", value: "rate" }, { text: "Rate", value: "rate" },