top of page

In der Natur auftanken, bevor der Winter beginnt

  • 21. Aug. 2024
  • 1 Min. Lesezeit

Aktualisiert: 23. Aug. 2024

In unserer „Co-Work-and-Chill-Woche“ könnt ihr noch mal mit eurem Team in der Natur auftanken, bevor der Winter beginnt! Arbeitet konzentriert und lasst euch gleichzeitig mit leckerem, herbstlichen Soulfood, Waldbaden, einem Pizza-Event oder Picknick, Lagerfeuer, Yoga am Morgen oder Bewegung im Freien und Self-Care-Meditationen verwöhnen.


Interessiert? Dann schaut unser Angebot an und schickt uns eure Anfrage unter info@projektraum-drahnsdorf.de oder ruft uns an 0160 98584578.


Meldet euch gerne auch bei Rückfragen.











Kommentare


bottom of page
import wixData from 'wix-data'; let allProducts = []; let categories = []; $w.onReady(async function () { console.log("Loading products..."); await loadProducts(); console.log("✓ Products loaded:", allProducts.length); console.log("✓ Categories:", categories); // Wait for custom element to be ready $w('#quoteCalculator').onReady(() => { console.log("Custom element ready, building calculator..."); buildCalculator(); }); }); async function loadProducts() { try { const results = await wixData.query("Prices") .limit(1000) .find(); allProducts = results.items.map(item => ({ _id: item._id, category: item.Category, title: item.Product, price: item.Price, vat: item.VAT, factor: item.Factor })); categories = [...new Set(allProducts.map(p => p.category))]; } catch (error) { console.error("✗ Error:", error); } } function buildCalculator() { const customElement = $w('#quoteCalculator'); // Set HTML content customElement.setAttribute('innerHTML', `
Subtotal (Net): 0.00 €
VAT 7%: 0.00 €
VAT 19%: 0.00 €
Total VAT: 0.00 €
TOTAL (Gross): 0.00 €
`); }