Centre d'aide caisse enregistreuse
This help will guide you through the setup and usage of our point of sale cash register software.
Rechercher par mot clé dans l'aide :
Télécharger vos rapports
Téléchargez vos rapports quotidiens au format HTML, PDF, XLS, CSV...
GET /workers/getSales.php
URL de base : https://kash.click/workers/getSales.php
Paramètres
| Naam | Type | Verplicht | Beschrijving |
|---|---|---|---|
shopID | string | Ja | Identifiant de compte boutique (SHOPID) |
key | string | Ja | Votre token (APIKEY) |
d | int | Neen | dag (si non précisé, le rapport porte sur le mois entier) |
m | int | Neen | maand (si jour et mois non précisé, le rapport porte sur l'année entière) |
y | int | Neen | Année (si jour, mois et année non précisés, le rapport porte sur hier) |
formatExport | string | Ja | Std (rapport HTML), PDF, XLS, CSV, frafec (FEC), saft |
Exemples JavaScript
// Aide pour construire une URL GETfunction buildUrl(path, params){ const qs = new URLSearchParams(params); return `${path}?${qs.toString()}`;}const SHOPID = SHOPID;const APIKEY = APIKEY;// 1) Export CSV pour date préciseconst urlCsv = buildUrl("https://kash.click/workers/getSales.php", { shopID: SHOPID, key: APIKEY, d: 16, m: 10, y: 2025, formatExport: "CSV"});fetch(urlCsv).then(r=>r.text()).then(csv=>console.log(csv));// 2) Rapport HTML (Std) pour la veille (sans date)const urlStd = buildUrl("https://kash.click/workers/getSales.php", { shopID: SHOPID, key: APIKEY, formatExport: "Std"});fetch(urlStd).then(r=>r.text()).then(html=>{ document.getElementById("rapport").innerHTML = html;});// 3) Rapport PDF (Blob)const urlPdf = buildUrl("https://kash.click/workers/getSales.php", { shopID: SHOPID, key: APIKEY, d: 16, m: 10, y: 2025, formatExport: "PDF"});fetch(urlPdf).then(r=>r.blob()).then(pdf=>{ const a = document.createElement("a"); a.href = URL.createObjectURL(pdf); a.download = "rapport-ventes.pdf"; a.click();});
Ce document est mis à disposition selon les termes de la licence Creative Commons Attribution 4.0 International (CC BY 4.0) .