Documentation développeur Entités PosInterfaceTab
November 26, 2025 at 2:48 AMPosInterfaceTab
Configuration d’une caisse - onglet
Description
Configuration clavier d’une caisse : onglet
Import AS400 : oui
Job : PosInterfaceTabStream
Odoo : non
Structure
PosInterfaceTab
Configuration d’un onglet
{
"_id": "string", // id
"label": "string", // libellé de l'onglet
"icon": "string", // icône de l'onglet
"type": "string", // type d'onglet (films, produits, ...)
"layout": { // dimensions de la grille d'affichage
"width": 0,
"height": 0
},
"buttons": [{ /* PosConfigButton */}] // boutons à afficher
}
PosInterfaceTabButton
Configuration d’un bouton
{
"_id": "string", // id
"product": "string", // id produit vendu
"label": "string", // libellé du bouton (si null = libellé produit)
"icon": "string", // icône du bouton (si null = image produit)
"layout": { // position/dimensions sur la grille
"left": 0,
"top": 0,
"width": 0, // colspan
"height": 0 // rowspan
},
"productId":"string", // produit vendu
}