v20220429
authorKilian Saffran <ksaffran@dks.lu>
Fri, 29 Apr 2022 14:29:19 +0000 (16:29 +0200)
committerKilian Saffran <ksaffran@dks.lu>
Fri, 29 Apr 2022 14:29:19 +0000 (16:29 +0200)
20 files changed:
.gitignore
public_html/index.php
public_html/js/askprice.js
public_html/js/shop.js
public_html/js/shop/askprice.js
public_html/js/shop/nouse/contratcadre.js [deleted file]
public_html/js/shop/nouse/dataform.js [deleted file]
public_html/js/shop/nouse/number.js [deleted file]
public_html/js/shop/nouse/orders.js [deleted file]
public_html/js/shop/nouse/shop.js [deleted file]
public_html/js/site.js
public_html/lib/config.php
public_html/lib/email.php
public_html/lib/modules/ArticleGroups.php
public_html/lib/modules/Articles.php
public_html/lib/modules/Orders.php
public_html/lib/version.php
public_html/log/sql.log [deleted file]
public_html/pages/product.php
public_html/shop/tmpl/elements/articlecart.html

index ccfa16a..1a61ffc 100644 (file)
@@ -35,5 +35,6 @@ api/data/art_image/*
 nouse/*\r
 public_html/shop/media/*\r
 api/data/live/*\r
-dev/tmp/"\r
+dev/tmp/*\r
+public_html/log/*\r
 \r
index 260e80b..d1f2620 100644 (file)
@@ -185,12 +185,14 @@ $site = new Site($db,$cfg);
 <script type="text/javascript" src="<?php echo $cfg["basepath"]; ?>js/shop.js?v=<?php echo $cfg["version"];?>"></script>
 <script type="text/javascript" src="<?php echo $cfg["basepath"]; ?>js/site.js?v=<?php echo $cfg["version"];?>"></script>
 <script type="text/javascript" src="<?php echo $cfg["basepath"]; ?>js/login.js?v=<?php echo $cfg["version"];?>"></script>
+
 <?php if (isset($sess["id_user"])) {?>
+  <script type="text/javascript" src="<?php echo $cfg["basepath"]; ?>js/shop/askprice.js?v=<?php echo $cfg["version"];?>"></script>
   <script type="text/javascript" src="<?php echo $cfg["basepath"]; ?>js/shop/shopapp.js?v=<?php echo $cfg["version"];?>"></script>
   <script type="text/javascript" src="<?php echo $cfg["basepath"]; ?>js/shop/request.js?v=<?php echo $cfg["version"];?>"></script>
   <script type="text/javascript" src="<?php echo $cfg["basepath"]; ?>js/shop/profile.js?v=<?php echo $cfg["version"];?>"></script>
   <script type="text/javascript" src="<?php echo $cfg["basepath"]; ?>js/shop/basket.js?v=<?php echo $cfg["version"];?>"></script>
-  <script type="text/javascript" src="<?php echo $cfg["basepath"]; ?>js/shop/askprice.js?v=<?php echo $cfg["version"];?>"></script>
+  
   <script type="text/javascript" src="<?php echo $cfg["basepath"]; ?>js/shop/favorites.js?v=<?php echo $cfg["version"];?>"></script>
 <?php } ?>
 <script type="text/javascript">
index 0b215cb..ea9025e 100644 (file)
@@ -88,6 +88,7 @@ let publicaskprice = {
   },
   
   getItemCount: function(){
+    console.log("mysite",mysite);
     postData({"ac":"getOrderItemCount","id_user":mysite.iduser,"type":'askprice'}).then(data => {
       publicaskprice.itemscount = data.data.cnt;
       //console.log("Items",data.data);
@@ -239,7 +240,6 @@ let publicaskprice = {
   },
   setFormValue: function(obj){
     localStorage.setItem(obj.id,obj.value);
-  },
-  
+  }
 }
 
index dc6b901..8dccaf9 100644 (file)
@@ -262,6 +262,7 @@ let shop = {
     
   },
   search: function(objid){
+    //console.log("Start Search");
     let type='askprice';  
     if (preferences.id_user){
       type='shop';
@@ -294,25 +295,31 @@ let shop = {
       }).catch(e => { console.log(e); myModal.hide();});
     });
   },
-}
-
-if (document.getElementById("searchtopnav")){
-  document.getElementById("searchtopnav").addEventListener("keypress", function(event) {
-    //console.log("Keypress ",event.keyCode);
-    if (event.keyCode === 13) {
-      //console.log("Keypress ",event.keyCode);
-      event.preventDefault();
-      shop.search("searchtopnav");
+  initEvents(){
+    if (document.getElementById("searchtopnav")){
+      //console.log("Shop SET search event!");
+      document.getElementById("searchtopnav").addEventListener("keypress", function(event) {
+        console.log("Enter Search",event.keyCode)
+        //console.log("Keypress ",event.keyCode);
+        if (event.keyCode === 13) {
+          //console.log("Keypress ",event.keyCode);
+          event.preventDefault();
+          shop.search("searchtopnav");
+        }
+      });
     }
-  });
-}
-if (document.getElementById("navbottomsearch")){
-  document.getElementById("navbottomsearch").addEventListener("keypress", function(event) {
-    //console.log("Keypress ",event.keyCode);
-    if (event.keyCode === 13) {
-      //console.log("Keypress ",event.keyCode);
-      event.preventDefault();
-      shop.search("navbottomsearch");
+    if (document.getElementById("navbottomsearch")){
+      //console.log("Shop SET search event!");
+      document.getElementById("navbottomsearch").addEventListener("keypress", function(event) {
+        //console.log("Keypress ",event.keyCode);
+        if (event.keyCode === 13) {
+          //console.log("Keypress ",event.keyCode);
+          event.preventDefault();
+          shop.search("navbottomsearch");
+        }
+      });
     }
-  });
+  }
 }
+
+
index 60ec46f..1081d49 100644 (file)
@@ -71,7 +71,7 @@ let askprice = {
       cval = parseFloat(cval);
     }
     console.log("RecalcValue",cval);
-    console.log("Send",{"ac":"setUserItem","article":obj.dataset.article,"quantity":cval,"id_user":preferences.id_user,"type":'askprice'});
+    console.log("Send",{"ac":"setUserItem","article":obj.dataset.article,"quantity":cval,"id_user":mysite.id_user,"type":'askprice'});
     postData({"ac":"setUserItem","article":obj.dataset.article,"quantity":cval,"id_user":preferences.id_user,"type":'askprice'}).then(data => {
       //console.log("AC quRecalc returned",data);
     });
@@ -85,8 +85,8 @@ let askprice = {
   },
   
   getItemCount: function(){
-    console.log("Start get ItemCount","Askprice");
-    postData({"ac":"getOrderItemCount","id_user":preferences.id_user,"type":'askprice'}).then(data => {
+    console.log("Start get ItemCount","Askprice",);
+    postData({"ac":"getOrderItemCount","id_user":mysite.id_user,"type":'askprice'}).then(data => {
       publicaskprice.itemscount = data.data.cnt;
       //console.log("Items",data.data);
       publicaskprice.askitems = ((data.data.articles)?JSON.parse(data.data.articles):[]);
@@ -240,7 +240,7 @@ let askprice = {
   },
   articletoaskprice: function(artidx,grpidx){
     let grparticle = shop.article_groups[grpidx].article;
-     let article = shop.articles[grparticle][artidx].article;
-     askprice.setItem(article,1);
+    let article = shop.articles[grparticle][artidx].article;
+    askprice.setItem(article,1);
    },
 };
\ No newline at end of file
diff --git a/public_html/js/shop/nouse/contratcadre.js b/public_html/js/shop/nouse/contratcadre.js
deleted file mode 100644 (file)
index 2a8aee3..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-let contratcadre ={
-  loadContratCadre(init){
-    let lst = document.getElementById("lst_contratcadre");
-    lst.innerHTML='';
-    if ((contratcadre.ccnum > 1) && (init == false)) {
-      contratcadre.idclient = contratcadre.selects["ccclient"].selected();
-    } else if (contratcadre.ccnum == 0){
-      return;
-    } 
-    //console.log("CC:",contratcadre.idclient);
-    if (contratcadre.idclient){
-      postData({"cl":"ContratCadre","fn":"getArticleGroups","idclient":contratcadre.idclient,"lang":"{{lang}}"}).then(agrps => {
-        contratcadre.article_groups = agrps.data;
-        
-        postData({"cl":"ContratCadre","fn":"getArticles","idclient":contratcadre.idclient,"lang":"{{lang}}"}).then(arts => {
-          contratcadre.articles = arts.data;
-          for (var g=0;g< contratcadre.article_groups.length;g++){
-            let agrp = shop.setArticleGroup(g,contratcadre.article_groups[g],contratcadre.articles,'cc');
-            lst.insertAdjacentHTML('beforeend',agrp);
-          }
-          
-        
-      });
-    }).catch(e => { console.log(e)});
-    }
-
-  },
-}
\ No newline at end of file
diff --git a/public_html/js/shop/nouse/dataform.js b/public_html/js/shop/nouse/dataform.js
deleted file mode 100644 (file)
index ebcbce2..0000000
+++ /dev/null
@@ -1,221 +0,0 @@
-let dataform = {
-  formsaved: function(colorclass,msg,tmout=3000){
-    var sb = document.getElementById("snackbar");
-    sb.className="show" + colorclass;
-    sb.innerHTML = msg;
-    setTimeout(function(){ sb.className = sb.className.replace(sb.className, ""); }, tmout);
-    return false;
-  },
-  getformcontent: function(frmid,dataflds,selects){
-    var frm = document.getElementById("frm_" + frmid);
-    var flds = {};
-    if (dataflds){
-       flds = dataflds;
-    } 
-    for (var i = 0; i < frm.elements.length; i++) {
-      var field = frm.elements[i];
-      if ((field.tagName == "INPUT" || field.tagName == "SELECT" || field.tagName == "TEXTAREA") && (field.id)){
-        if (field.tagName == "TEXTAREA" ){
-          if (field.classList.contains("richeditarea")){
-            flds[field.dataset.table][field.dataset.column] = selects[field.id].getContents();
-          } else {
-            flds[field.dataset.table][field.dataset.column] = field.value;
-          }
-        } else if (field.type == "checkbox" ){
-          if (field.checked){
-            flds[field.dataset.table][field.dataset.column] = "1";
-          } else {
-            flds[field.dataset.table][field.dataset.column] = "";
-          }
-        }
-        else if (field.tagName == "SELECT" && field.multiple == true){
-            var opts = field.selectedOptions;
-            var vals = [];
-            for (var o in opts){
-              if (opts[o].value){
-                vals.push(opts[o].value);
-              }
-            }
-            if (vals.length > 0) {
-              flds[field.dataset.table][field.dataset.column] = JSON.stringify(vals);
-            } else {
-              flds[field.dataset.table][field.dataset.column] = "";
-            }    
-        } 
-        else {
-          //console.log("Field",field,field.id, field.value);
-          flds[field.dataset.table][field.dataset.column] = field.value;
-        }
-      }
-    }
-    return flds;
-  },
-  cleanform: function(frmname,selects){
-    var frm = document.getElementById("frm_" + frmname);
-    for (var f in frm){
-      if (frm[f] && frm[f].id){
-      if (frm[f].tagName == 'INPUT'){
-        if (frm[f].type == "checkbox"){
-          frm[f].checked = false;
-        } else if (frm[f].classList.contains("datefield")){
-            if (frm[f]._flatpickr){ frm[f]._flatpickr.clear(); }
-        }  
-        else {
-          frm[f].value = "";
-        }
-      }
-      if (frm[f].tagName == 'SELECT'){
-        if (frm[f].multiple == true){
-          // if (frm[f].classList.contains("choices__input")){
-          //   choice[frmname][frm[f].id].removeActiveItems();
-          // }
-        } else {
-          frm[f].value = "";
-        }
-        
-      }
-      if (frm[f].tagName == 'TEXTAREA'){
-        if (frm[f].classList.contains("richeditarea")){
-          selects[frm[f].id].setContents("");
-          //tinymce.get(frm[f].id).setContent("");
-        } else {
-          frm[f].innerHTML = "";
-        } 
-      }
-    }
-    }
-    return false;
-  },
-  
-  fillform: function(dataclass,choices,data,setid=true){
-    var frm = document.querySelectorAll('.data_'+ dataclass);
-    //console.log("frmdata",frm);
-    if (data){
-      for (var f in frm){
-        
-        var tblid = null;
-        console.log("ID",frm[f].id);
-        if (frm[f].id){
-            if (setid){
-              tblid = frm[f].id.replace(dataclass + "_","");
-              frm[f].dataset.id=data['id'];
-            }
-            else {
-              if (frm[f].dataset){
-                //console.log("Fill dataset",frm[f].dataset);
-              tblid=frm[f].dataset.id;
-              }
-            }   
-        }
-        if (tblid != null && data[tblid]){
-  
-          if (frm[f].tagName == 'INPUT'){
-            if (frm[f].type == "checkbox"){
-              if (data[tblid] == "1"){
-                frm[f].checked = true;
-              } else {
-                frm[f].checked = false;
-              }
-            } 
-            else if (frm[f].classList.contains("datefield")){ 
-              frm[f]._flatpickr.setDate(data[tblid]);
-            } 
-            else if (frm[f].classList.contains("timefield")){
-              frm[f].value = timecalc.StringToTime(data[tblid]);
-            } 
-            else if (frm[f].classList.contains("number")){
-              frm[f].value = dataform.setNumber(data[tblid],null);
-            }
-            else if (frm[f].classList.contains("currency")){
-              frm[f].value = dataform.setNumber(data[tblid],2);
-            }
-            else if (frm[f].classList.contains("percent")){
-              frm[f].value = dataform.setNumber(data[tblid],2);
-            }
-            else {
-              frm[f].value=data[tblid];
-            }
-          }
-          if (frm[f].tagName == 'SELECT'){
-            if (frm[f].multiple == true){
-              var jsdata = [];
-              let newjsdata=[];
-              if ((data[tblid] && data[tblid].startsWith("[") && data[tblid].endsWith("]"))){
-                jsdata = JSON.parse(data[tblid]);
-              } else if (data[tblid] && data[tblid] != "") {
-                jsdata.push(data[tblid]);
-              }
-              for (var i in jsdata){
-                newjsdata.push({'value':jsdata[i],'text':jsdata[i]});
-              }
-              choices[frm[f].id].setData(newjsdata);
-              choices[frm[f].id].set(jsdata);
-            } else {
-              if (choices[frm[f].id]){choices[frm[f].id].set(data[tblid]);}
-              
-              //frm[f].value=data[tblid];
-            }
-          }
-          if (frm[f].tagName == "TEXTAREA"){
-            //console.log("Set TextArea: " + frm[f].id + " => "+ data[tblid]);
-            if (frm[f].classList.contains("richeditarea")){
-              choices[frm[f].id].setContents(data[tblid]);
-            } else {
-              frm[f].value = data[tblid];
-            } 
-          }
-        } 
-      }
-    }
-  },
-  setNumber(numdata,decimals){
-    //console.log("Number in ",numdata);
-    if (numdata == null || numdata == ''){
-      return "";
-    } 
-    if (decimals){
-      numdata = parseFloat(numdata).toFixed(decimals).toString();    
-    }
-    numdata.toString().replace(/./,',');
-    //console.log("Number out ",numdata);
-    return numdata;
-  },
-  fillselectlist: function(obj,listdata,vidcol,vvalcol){
-    var sellist = [];
-    let csel = obj.value;
-    if (listdata.length > 0){
-      for (var i=0;i<listdata.length;i++){
-        
-        sellist.push({value:listdata[i][vidcol],text:listdata[i][vvalcol]});
-      }
-    }
-    //console.log("sellist to set",sellist);
-    obj.setData(sellist);
-    if (obj.select.element.dataset.selected && obj.select.element.dataset.selected != ""){
-       obj.set(obj.select.element.dataset.selected);
-    }
-    return false;
-  },
-  filldatalist: function(obj,optdata,element){
-    obj.innerHTML = '';
-    for (d=0;d < optdata.length;d++){
-      obj.insertAdjacentHTML('beforend','<option vale="' + optdata[d][element] + '"/>');
-    }
-  },
-  setValue: function(obj,newvalue){
-    if (obj.tagName == 'INPUT' || obj.tagName == 'SELECT'){
-      if (obj.type == 'checkbox' || obj.type == 'radio'){
-        obj.checked = true;
-      }else {
-        obj.value=newvalue;
-      }
-    }
-    if (obj.tagName == 'TEXTAREA'){
-      obj.innerHTML = newvalue;
-    }
-    //dataform.savefield(obj);
-  },
-  cleanfield: function(objxid){
-    document.getElementById(objxid).value='';
-  }
-}
\ No newline at end of file
diff --git a/public_html/js/shop/nouse/number.js b/public_html/js/shop/nouse/number.js
deleted file mode 100644 (file)
index bd348b8..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-let number = {
-  clean: function(value){
-    value = value.replace(/[^\d.,-]/g, '');
-    if (value.indexOf(',') == 0 || value.indexOf('.') == 0) {
-      value = 0 + value;
-    }
-    return value;
-  },
-  setFloat: function(value){
-    value = number.clean();
-    if (value.lastIndexOf(',')){
-      value = value.replace(/\./g,'');
-    }
-    if (value.lastIndexOf('.')){
-      value = value.replace(/\,/g,'');
-    }
-    value = value.replace(/,/,'.');
-    return parseFloat(value);
-  },
-  isFloat: function(value){
-    value = number.clean();
-    if (value.lastIndexOf(',')){
-      return true;
-    }
-    if (value.lastIndexOf('.')){
-      return true;
-    }
-    return false;
-  }
-}
\ No newline at end of file
diff --git a/public_html/js/shop/nouse/orders.js b/public_html/js/shop/nouse/orders.js
deleted file mode 100644 (file)
index b4a0c50..0000000
+++ /dev/null
@@ -1,221 +0,0 @@
-let orders = {
-  tbl: null,
-  selects: {},
-  editors: {},
-  init: function(){
-    flatpickr("#basket_prefereddeliverydate",{altInput: true,
-      altFormat: "d.m.Y",
-      dateFormat: "Y-m-d",
-      "locale": "{{lang}}",
-    });
-    orders.selects["askprice_type"] = new SlimSelect({
-      select: "#askprice_type",
-      showSearch: false
-    });
-    orders.selects["ccaddress"] = new SlimSelect({
-      select: "#ccaddress",
-      showSearch: false,
-      afterClose: function(){
-        orders.setOrderAddress();
-      }
-    });
-    orders.selects["aaaddress"] = new SlimSelect({
-      select: "#aaaddress",
-      showSearch: false,
-      afterClose: function(){
-        orders.setAskPriceAddress();
-      }
-    });
-    orders.getAddresses();
-    orders.getItemCount('basket');
-    orders.getItemCount('askprice');
-  },
-  cleanBasket: function(otype){
-    postData({"cl":"Orders","fn":"removeItems","type":otype,"id_user":"{{session.id_user}}","artricle":null}).then( data => {
-      orders.viewTable(otype);
-    });
-  },
-  
-  setTable: function(odata,otype){
-    console.log("set data in " + otype + "!")
-    let bs = document.getElementById("lst_order_"+otype);
-    //bs.innerHTML ='';
-    if (odata.length == 0){
-      bs.innerHTML ='<h4>Panier vide</h4>';
-      return;
-    } else {
-      bs.innerHTML ='';
-    }
-    //orders.basketitems = 0;
-    console.log(odata);
-    for (var g in odata){
-
-      let stf= shop.getCounterfield([odata[g].c01_label,odata[g].c02_label,odata[g].c03_label,odata[g].c04_label,odata[g].c05_label],odata[g]['articles'][0].unite_quantite);
-      console.log(stf);
-      var bsr = '<div class="row" id="'+ otype+'_grouprow_'+odata[g].id+'" class="container">';
-      bsr += '<header><h4 style="text-decoration: underline;text-align: left!important;">'+ odata[g].titre+'</h4></header>';
-      bsr += '<div class="row">';
-      bsr += '<div class="row light-grey left">';
-      bsr += '<div class="cell bold" style="width: 160px;min-width: 160px;color: #fafafa;">'+odata[g]['titre']+ '</div>';
-      bsr += '<div class="cell" style="width: 105px;min-width: 105px;white-space: nowrap;">&nbsp;<label class="label" style="font-weight: bold;">'+((odata[g].c01_label != null)?odata[g].c01_label:'&nbsp;')+'</label></div>';
-      bsr += '<div class="cell" style="width: 105px;min-width: 105px;white-space: nowrap;">&nbsp;<label class="label" style="font-weight: bold;">'+((odata[g].c02_label != null)?odata[g].c02_label:'&nbsp;')+'</label></div>';
-      bsr += '<div class="cell" style="width: 105px;min-width: 105px;white-space: nowrap;">&nbsp;<label class="label" style="font-weight: bold;">'+((odata[g].c03_label != null)?odata[g].c03_label:'&nbsp;')+'</label></div>';
-      bsr += '<div class="cell" style="width: 105px;min-width: 105px;white-space: nowrap;">&nbsp;<label class="label" style="font-weight: bold;">'+((odata[g].c04_label != null)?odata[g].c04_label:'&nbsp;')+'</label></div>';
-      bsr += '<div class="cell" style="width: 105px;min-width: 105px;white-space: nowrap;">&nbsp;<label class="label" style="font-weight: bold;">'+((odata[g].c05_label != null)?odata[g].c05_label:'&nbsp;')+'</label></div>';
-      // bsr += '<div class="cell" style="width: 50px;min-width: 50px;white-space: nowrap;padding-left: 10px;"><label class="label" style="font-weight: bold;">&nbsp;Stock</label></div>';
-      bsr += '<div class="cell" style="width: 250px;min-width: 250px;">&nbsp;<label class="label" style="font-weight: bold;">{{lbl.quantity}}</label></div>';
-      bsr += '<div class="cell" style="width: 200px;min-width: 200px;">&nbsp;</div>';
-      bsr += '</div>';
-      bsr += '</div>';
-    let template = document.getElementById(otype + 'cart').innerHTML;
-      for (var a in odata[g]['articles']){
-        let adata=odata[g]['articles'][a];
-        adata["stf"] = ((stf)?adata[stf]:1);
-        adata["a"] = a;
-        adata["g"] = g;
-        var rendered =  Mustache.render(template, adata, {}, [ '[%', '%]' ]);
-        bsr += rendered;
-        //console.log("BSR to add",bsr);
-      }
-      bsr += '</div>';
-      bs.insertAdjacentHTML('beforeend',bsr);
-      
-      //document.getElementById("basketitems").innerHTML = odataitems;
-      
-    }
-    //console.log("BASKET ",bs.innerHTML);
-    return false;
-  },
-  quRecalc: function(obj){
-    console.log("Recalc Obj",obj)
-    shop.checkquantity(obj);
-    let cval = document.getElementById(obj.id).value;
-    postData({"cl":"Orders","fn":"setItem","article":article,"quantity":cval,"id_user":"{{session.id_user}}","type":otype}).then(data => {
-      
-   });
-  },
-  removeItems: function(otype,artid){
-    //console.log("remove Item:",artid);
-    postData({"cl":"Orders","fn":"removeItems","type":otype,"id_user":"{{session.id_user}}","article":artid}).then(data => {
-      this.getItemCount(otype);
-      this.viewTable(otype);
-    });
-  },
-  viewTable: function(otype){
-    postData({"cl":"Orders","fn":"getItems","id_user":"{{session.id_user}}","type":otype,"lang":"{{lang}}"}).then(ogrps => {
-      //console.log("ordergroups",ogrps.data);
-      orders.setTable(ogrps.data,otype);
-      myapp.viewpanel(otype);
-    });
-  },
-  getItemCount: function(otype){
-    postData({"cl":"Orders","fn":"getItemCount","id_user":"{{session.id_user}}","type":otype}).then(data => {
-      console.log("cnt",otype,data);
-      let conts = document.getElementsByName(otype + "items");
-      if (conts){
-        for (var i in conts){
-          conts[i].innerHTML = data.data.cnt
-        }
-        //document.getElementById(otype + "items").innerHTML = ;
-      }
-      
-    });
-  },
-  setItem: function(article,quantity,otype){
-    postData({"cl":"Orders","fn":"setItem","article":article,"quantity":quantity,"id_user":"{{session.id_user}}","type":otype}).then(data => {
-      console.log("After setItems",data);
-      let conts = document.getElementsByName(otype + "items");
-      if (conts){
-        for (var i in conts){
-          conts[i].innerHTML = data.data.count;
-        }
-        //document.getElementById(otype + "items").innerHTML = ;
-      }
-      
-    });
-  },
-  setOrderAddress: function(){
-    let clid = orders.selects["ccaddress"].selected();
-    document.getElementById("basket_invoiceaddress").innerHTML = orders.addresses[clid].adresse_client;
-  },
-  setAskPriceAddress: function(){
-    let clid = orders.selects["aaaddress"].selected();
-    document.getElementById("askprice_clientaddress").innerHTML = orders.addresses[clid].adresse_client;
-  },
-  getAddresses: function(){
-    postData({"cl":"Profile","fn":"getUserCompanies","uid":"{{ session.id_user }}"}).then(data => {
-      console.log("User addresses",JSON.stringify(data.data));
-      //profile.companies = data.data;
-      dataform.fillselectlist(orders.selects["ccaddress"],data.data,'client','dspname');
-      dataform.fillselectlist(orders.selects["aaaddress"],data.data,'client','dspname');
-      orders.addresses = {};
-      for(var p=0;p<data.data.length;p++){
-        orders.addresses[data.data[p].client] = data.data[p];
-      }
-      
-    });
-  },
-  quAdd: function(defid,artid,step){
-    let cval;
-    if (!step){ step=1;}
-    if (/,/.test(step)){
-      step=step.replace(/,/,'.');
-      step=parseFloat(step);
-      cval = parseFloat(document.getElementById(defid+'_' + artid).value.replace(/,/,'.'));
-      if (cval == 1.0 && step != 1.0){cval=0.0;}
-      cval = cval +step;
-      cval =cval.toFixed(2);
-      document.getElementById(defid +'_' + artid).value = cval.toString().replace(/\./,',');
-    }else {
-      cval = parseInt(document.getElementById(defid+'_' + artid).value);
-      step = parseInt(step);
-      if (cval == 1 && step != 1){cval=0;}
-      cval = cval +step;
-      document.getElementById(defid+'_' + artid).value = cval;
-    }
-    console.log("id",defid + "_ "+ artid);
-    orders.quRecalc(document.getElementById(defid + "_ "+ artid));
-    return false;
-  },
-  quSub: function(defid,artid,step){
-    let cval;
-    if (!step){ step=1;}
-    if (/,/.test(step)){
-      step=step.replace(/,/,'.');
-      step=parseFloat(step);
-      cval = parseFloat(document.getElementById(defid +'_' + artid).value.replace(/,/,'.'));
-      cval = cval - step;
-      cval =cval.toFixed(2);
-      if (cval < 1.0){ cval =1 ;}
-      document.getElementById(defid +'_' + artid).value = cval.toString().replace(/\./,',');
-    }else {
-      cval = parseInt(document.getElementById(defid +'_' + artid).value);
-      if (cval == 1 ){ return false;}
-      step = parseInt(step);
-      cval = cval - step;
-      if (cval < 1){ cval =1 ;}
-      document.getElementById(defid +'_' + artid).value = cval;
-    }
-    console.log("id",defid + "_ "+ artid);
-    orders.quRecalc(document.getElementById(defid + "_ "+ artid));
-    return false;
-  },
-  sendOrder: function(otype){
-    //let odata = {"id_user":};
-    let odata ={};
-    odata[otype] = {};
-    frmdata = dataform.getformcontent(otype,odata,orders.selects);
-    frmdata[otype]["id_user"] = "{{ session.id_user }}";
-    let barts = []; 
-    // for (var g in orders.basket){
-    //   for (var a in orders.basket[g]['articles']){
-    //     barts.push({"article":orders.basket[g]['articles'][a].article,"qte_unitaire":orders.basket[g]['articles'][a].quantity});
-    //   }
-    // }
-    console.log("frmdata",frmdata);
-    console.log("barts",barts);
-    postData({"cl":"User","fn":"sendOrder","id_user":"{{session.id_user}}","data":frmdata[otype],"type":otype}).then(data => {
-      console.log(data.data);
-    });
-  }
-}
\ No newline at end of file
diff --git a/public_html/js/shop/nouse/shop.js b/public_html/js/shop/nouse/shop.js
deleted file mode 100644 (file)
index ee2801a..0000000
+++ /dev/null
@@ -1,400 +0,0 @@
-function initpage(){
-  shop.init();
-  catalogs.init();
-  contratcadre.init();
-  delivery.init();
-  news.init();
-  orders.init();
-  invoices.init();
-  profile.init();
-}
-
-let shop= {
-  tblgroups: null,
-  basket:[],
-  askprice:[],
-  favorites:[],
-  selects: {},
-  init: function(){
-    flatpickr("#basket_prefereddeliverydate",{altInput: true,
-      altFormat: "d.m.Y",
-      dateFormat: "Y-m-d",
-      "locale": "{{lang}}",
-    });
-    shop.tblgroups = new Tabulator("#tbl_groups", {
-      height: "calc(100vh - 127px)",
-      layout: "fitDataStretch",
-      selectable: 1,
-      groupToggleElement:"header",
-      groupBy:["famille"],
-      groupStartOpen:[false],
-      groupHeader:[function(value, count, data){ 
-        //console.log("GH",data)
-        return ((value)?data[0].famille_art + ' | ' +value :"");
-      }],
-      groupClick:function(e, group){
-        //console.log("code famille",group._group.rows[0].data.famille_art);
-        shop.getAGbyFamilly(group._group.rows[0].data.famille_art,group._group.key);
-        let openkey = group._group.key;
-        var groups = shop.tblgroups.getGroups();
-        for (var g=0;g<groups.length;g++){
-          if (groups[g]._group.key != openkey){
-            groups[g]._group.visible = false;
-          } 
-        }
-      },
-      rowClick:function(e, row){
-        shop.loadProducts();
-      },
-      rowContext:function(e, row){ e.preventDefault(); },
-        headerFilterPlaceholder:"{{ lbl.filter }}",
-        columns: [
-          {title: "", field: "famille", visible: false },
-          {title: "", field: "gp_art",width:50,resizable:false,headerSort:false },
-          {title: "",headerFilter:"input", field: "groupe" ,resizable:false,headerSort:false },
-      ]
-    });
-    // shop.tblmobilegroups = new Tabulator("#tbl_mobile_groups", {
-    //   height: "calc(100vh - 127px)",
-    //   layout: "fitDataStretch",
-    //   selectable: 1,
-    //   groupToggleElement:"header",
-    //   groupBy:["famille"],
-    //   groupStartOpen:[false],
-    //   groupHeader:[function(value, count, data){ 
-    //     return ((value)?data[0].famille_art + ' | ' +value :"");
-    //   }],
-    //   groupClick:function(e, group){
-    //     shop.getAGbyFamilly(group._group.rows[0].data.famille_art,group._group.key);
-    //     let openkey = group._group.key;
-    //     var groups = shop.tblmobilegroups.getGroups();
-    //     for (var g=0;g<groups.length;g++){
-    //       if (groups[g]._group.key != openkey){
-    //         groups[g]._group.visible = false;
-    //       } 
-    //     }
-    //     //myapp.togglemenu('sidebar');
-    //   },
-    //   rowClick:function(e, row){
-    //     console.log("sbsel",row);
-    //     shop.loadProducts();
-    //   },
-    //   rowContext:function(e, row){ e.preventDefault(); },
-    //     headerFilterPlaceholder:"{{ lbl.filter }}",
-    //     columns: [
-    //       {title: "", field: "famille", visible: false },
-    //       {title: "", field: "gp_art",width:50,resizable:false,headerSort:false },
-    //       {title: "",headerFilter:"input", field: "groupe" ,resizable:false,headerSort:false },
-    //   ]
-    // });    
-    shop.getgrouptbldata();
-    shop.gotoHome();
-  },
-  getAGbyFamilly: function(fart,fname){
-    document.getElementById("articlehead").innerHTML=fname;
-    let lst = document.getElementById("lst_articlegroups");
-    lst.innerHTML ="";
-    postData({"cl":"ArticleGroups","fn":"getArticleGroupsByFamille","famille":fart,"lang":"{{lang}}"}).then(data => {
-     let rowx=0;
-     let md = 5;
-     let cardsize=275;
-     let picsize=150;
-     
-    //  if ( window.screen.width <= 520){
-    //   md=2;
-    //   cardsize=200;
-    //   picsize=130;
-     
-    //  }
-     //console.log("Groups".data.data);
-      for (var d=0;d<data.data.length;d++){
-        //console.log("row " + d);
-       
-        if ((d != 0) && (d%5==0)){
-          lst.insertAdjacentHTML('beforeend','<div class="row articlegrps" id="artrow_5_'+ rowx+'" style="display: none;"></div>');
-          rowx++;
-        }
-        if ((d != 0) && (d%2==0)){
-          lst.insertAdjacentHTML('beforeend','<div class="row articlegrps" id="artrow_2_'+ rowx+'" style="display: none;"></div>');
-          rowx++;
-        }
-        
-        let agshort = '<div class="padding col center hide-small" style="min-width: '+cardsize+'px;max-width: '+cardsize+'px;">';
-        agshort += '<div class="container card-4 center" style="cursor: pointer; padding: 0px!important;" onclick="shop.loadGroupArticle(\''+ data.data[d].article +'\',\'5_'+ rowx+'\');">';
-        agshort += '<img style="min-height: '+picsize+'px; height: '+picsize+'px;max-width: '+picsize+'px;" src="img/'+ data.data[d].image +'" alt="">';
-        agshort += '<div class="container center bg-qube text-white bold " style="min-height: 70px; padding-top: 5px;"><span>'+ data.data[d].titre +'<br></span><span style="font-size: 7pt;color: #323742;">('+ data.data[d].gp_art +' '+ data.data[d].article +')</span></div></div>';
-        agshort += '</div>';
-
-        agshort += '<div class="padding col center hide-large" style="min-width: 180px;max-width: 180px;">';
-        agshort += '<div class="container card-4 center" style="cursor: pointer; padding: 0px!important; overflow: hidden;" onclick="shop.loadGroupArticle(\''+ data.data[d].article +'\',\'2_'+ rowx+'\');">';
-        agshort += '<img style="min-height: '+picsize+'px; height: '+picsize+'px;" src="img/'+ data.data[d].image +'" alt="">';
-        agshort += '<div class="container center bg-qube text-white bold" style="min-height: 35px; padding-top: 5px;"><span>'+data.data[d].qubestr +'</span></div></div>';
-        agshort += '</div>';
-        lst.insertAdjacentHTML('beforeend',agshort);
-        
-      }
-      lst.insertAdjacentHTML('beforeend','<div class="row articlegrps" id="artrow_5_'+ rowx+'" style="display: none;"></div>');
-      lst.insertAdjacentHTML('beforeend','<div class="row articlegrps" id="artrow_2_'+ rowx+'" style="display: none;"></div>');
-    });
-  },
-  getgrouptbldata: function(id){
-    postData({"cl":"ArticleGroups","fn":"getPublishedGroups","lang":"{{lang}}"}).then(data => {
-
-       console.log("tt",data.data);
-       shop.tblgroups.setData(data.data).then(tblres => { });
-      //  shop.tblmobilegroups.setData(data.data).then(tblres => { });
-    }).catch(e => { console.log(e)});
-  },
-  // getgrouptbldata: function(id){
-  //   let sb=document.getElementById("tbl_groups");
-  //   sb.innerHTML ='';
-  //   sb.style.height="calc(100vh - 120px)";
-  //   sb.style.overflowY="scroll";
-  //   if (!sb.classList.contains("bar")){
-  //     sb.classList.add("bar");
-  //     sb.classList.add("bar-block");
-  //   } 
-  //   postData({"cl":"ArticleGroups","fn":"getPublishedGroups","lang":"{{lang}}"}).then(data => {
-  //     for (var i=0;i<data.data.length;i++){
-  //       let ngrp = document.createElement("div");
-  //       ngrp.classList.add("bar-item");
-  //       ngrp.classList.add("button");
-  //       ngrp.id= "id_" + i; 
-  //       ngrp.onclick=function(){shop.loadProducts("id_"+i);};
-  //       ngrp.dataset = data.data[i];
-  //       ngrp.innerHTML = data.data[i].gp_art + " | " + data.data[i].groupe;
-  //       sb.insertAdjacentElement('beforeend',ngrp);  
-  //     }  
-  //      //console.log("tt",data.data);
-  //      //shop.tblgroups.setData(data.data).then(tblres => { });
-  //   }).catch(e => { console.log(e)});
-  // },
-//   getCounterfield: function(labels,unit){
-//     labels.unshift('');
-//     //console.log("cntfields",labels,unit);
-//     let stf = null;
-// //     Wann â€žunité“ als Pièce ass dann net Â« Long. Â» huelen mee mat pièce weiderfueren, wann awa
-// // als unité â€žM“ steet dann misst du Longueur oder Long (m) oder L huelen
-// // Wann Sac am 1:1 steet dann muss du Sac huelen an net Carton (also Sac kennt virum Carton)
-// // Hei hun ech da nach fonnt wou et net mat Multiple weidergeet die misst du nach dobeisezten
-// // l/bidon
-// // Carton/kg
-// // Box/m wann Unité M ass
-// // Seau
-// // Botte
-//     for (var l=1;l<=labels.length;l++){
-//       if (/^Carton/.test(labels[l])){ stf="c0"+l};
-//       if (/^Sac/.test(labels[l])){ stf="c0"+l};
-//       if (/^Botte/.test(labels[l])){ stf="c0"+l};
-//       if (/^Seau/.test(labels[l])){ stf="c0"+l};
-//       if (/^Roul/.test(labels[l])){ stf="c0"+l};
-//       if (/^Box\/1/.test(labels[l])){ stf="c0"+l};
-//       if (/bidon$/.test(labels[l])){stf="c0"+l};
-//       if (unit == 'M'){
-//         if (/^L \(M\)/.test(labels[l])){ stf="c0"+l};
-//         if (/^L \(m\)/.test(labels[l])){ stf="c0"+l};
-//         if (/^Longueur/.test(labels[l])){ stf="c0"+l};
-//         if (/^Long \(m\)/.test(labels[l])){ stf="c0"+l};
-//         if (/^Box\/m/.test(labels[l])){ stf="c0"+l};
-//         if (/^Botte/.test(labels[l])){ stf="c0"+l};
-//       }
-//     }
-//     //console.log(stf);
-//     return stf;
-//   },
-  // setArticleGroup: function(gdx,grpdata,articledata,type){
-  //   //console.log("artdata length",articledata.keys().length);
-  //   let grparticle = grpdata['article'];
-  //   let strartgrp = '<div  class="card col-md-6 col-sm-12" style="border: 0px;"><div style="background-color: #f1f1f1; padding-bottom: 10px; margin: 5px;border: 1px solid #ccc;">'+
-  //   '<div class="container d-none d-md-block" style="background-color: #fff;margin-left: 0px;padding: 0px;padding-right: 10px;">' +
-  //   '<div class="container d-flex" style="text-align: left;margin-left: 0px; padding: 0px;">'+
-  //   '<div  style="width: 200px;">' +
-  //   '<img src="'+ preferences.basepath +'shop/'+ ((grpdata.image != null)?'img/'+grpdata.image + '?v=' + grpdata.imgversion:'img/qubenoimg.jpg')+ '" class="img-thumbnail float-start" style="padding: 20px;max-width: 175px;border: 0px; margin-right: 10px;"  />'+
-  //   '</div><div class="">' +
-  //   '<h4 style="padding-top: 5px;">'+ ((grpdata.titre)?grpdata.titre:'&nbsp;')+'</h4>'+
-  //   '<p style="margin-top: 20px; max-width">' +((grpdata.description)?grpdata.description.replace(/\n/g,'<br/>'):'&nbsp;') +'</p></div></div></div>'+
-  //   '<div class="d-flex">'+
-  //   '<div class="container d-none d-md-block" style="background-color: #fff;padding-top: 10px;padding-bottom: 10px;">';
-  //   strartgrp += ((grpdata.brochure != null)?'<button class="btn btn-outline-secondary btn-sm" onclick="shop.openpdf(\''+grpdata.brochure+ '\');"><span class="icon icon-pdf"  style="font-size: 18px;"></span>' + lbl.doc_brpr + '</button>&nbsp;':'');
-  //   strartgrp += ((grpdata.fichetechnique != null)?'<button class="btn btn-outline-secondary btn-sm" style="text-align: right!important;" onclick="shop.openpdf(\''+grpdata.fichetechnique+ '\');"><span class="icon icon-pdf"  style="font-size: 18px;"></span>' + lbl.doc_fite + '</button>&nbsp;':'');
-  //   strartgrp += ((grpdata.noticemontage != null)?'<button class="btn btn-outline-secondary btn-sm" style="text-align: right!important;" onclick="shop.openpdf(\''+grpdata.noticemontage+ '\');"><span class="icon icon-pdf"  style="font-size: 18px;"></span>' + lbl.doc_nomo + '</button>&nbsp;':'');
-  //   strartgrp += ((grpdata.fichebim != null)?'<button class="btn btn-outline-secondary btn-sm" style="text-align: right!important;" onclick="shop.openpdf(\''+grpdata.fichebim+ '\');"><span class="icon icon-pdf"  style="font-size: 18px;"></span>' + lbl.doc_bim + '</button>&nbsp;':'');
-  //   strartgrp += ((grpdata.certificat != null)?'<button class="btn btn-outline-secondary btn-sm" style="text-align: right!important;" onclick="shop.openpdf(\''+grpdata.certificat+ '\');"><span class="icon icon-pdf"  style="font-size: 18px;"></span>' + lbl.doc_cert + '</button>&nbsp;':'');
-  //   strartgrp += ((grpdata.videolink != null)?'<button class="btn btn-outline-secondary btn-sm" style="text-align: right!important;" onclick="dlgVideo(\''+grpdata.videolink+ '\');"><span class="icon icon-video"  style="font-size: 18px;"></span>' + lbl.video + '</button>&nbsp;':'');
-  //   strartgrp += '</div>'+ '</div>';
-  //   strartgrp += '<div class="d-none d-lg-block">';
-  //   strartgrp += '<div class="d-flex flex-row clabel_row">';
-  //   strartgrp += '<div  style="width: 160px!important;color: #e0e0e0;">'+grpdata['article']+ '</div>';
-  //   strartgrp += '<div  style="width: 20px!important;padding: 0px!important;">&nbsp;</div>';
-  //   strartgrp += '<div class="clabel_head">&nbsp;<label>'+((grpdata.c01_label != null)?grpdata.c01_label:'&nbsp;')+'</label></div>';
-  //   strartgrp += '<div class="clabel_head">&nbsp;<label>'+((grpdata.c02_label != null)?grpdata.c02_label:'&nbsp;')+'</label></div>';
-  //   strartgrp += '<div class="clabel_head">&nbsp;<label>'+((grpdata.c03_label != null)?grpdata.c03_label:'&nbsp;')+'</label></div>';
-  //   strartgrp += '<div class="clabel_head">&nbsp;<label>'+((grpdata.c04_label != null)?grpdata.c04_label:'&nbsp;')+'</label></div>';
-  //   strartgrp += '<div class="clabel_head">&nbsp;<label>'+((grpdata.c05_label != null)?grpdata.c05_label:'&nbsp;')+'</label></div>';
-  //   strartgrp += '</div></div>';
-  //   strartgrp += '<div class="d-lg-none">';
-  //   strartgrp += '<div class="d-flex flex-row clabel_row">';
-  //   strartgrp += '<div class="clabel_head">&nbsp;<label>'+((grpdata.c01_label != null)?grpdata.c01_label:'&nbsp;')+'</label></div>';
-  //   strartgrp += '<div class="clabel_head">&nbsp;<label>'+((grpdata.c02_label != null)?grpdata.c02_label:'&nbsp;')+'</label></div>';
-  //   strartgrp += '<div class="clabel_head">&nbsp;<label>'+((grpdata.c03_label != null)?grpdata.c03_label:'&nbsp;')+'</label></div>';
-  //   strartgrp += '<div class="clabel_head">&nbsp;<label>'+((grpdata.c04_label != null)?grpdata.c04_label:'&nbsp;')+'</label></div>';
-  //   strartgrp += '<div class="clabel_head">&nbsp;<label>'+((grpdata.c05_label != null)?grpdata.c05_label:'&nbsp;')+'</label></div>';
-  //   strartgrp += '</div></div>';
-
-
-  //           //console.log("grp",grparticle);
-  //           //console.log("adata",articledata);
-  //           //console.log("articledata",articledata[grparticle]);
-  //           let stf= shop.getCounterfield([grpdata.c01_label,grpdata.c02_label,grpdata.c03_label,grpdata.c04_label,grpdata.c05_label],((articledata[grparticle])?articledata[grparticle].unite_quantite:null));
-  //             if (articledata[grparticle]){
-  //               let template = document.getElementById('articlecart').innerHTML;
-  //               for (var adx in articledata[grparticle]){
-  //                 var adata = articledata[grparticle][adx];
-  //                 adata["adx"] = adx;
-  //                 adata["gdx"] = gdx;
-  //                 adata["type"] = type;
-  //                 adata["stf"] = ((stf)?articledata[grparticle][adx][stf]:1);
-  //                 adata["show_shop"] = true;
-  //                 adata["show_stock"] = true;
-  //                 adata["show_qty"] = true;
-  //                 adata["show_ask"] = true;
-  //                 adata["show_fav"] = ((type!='fav')?true:false);
-  //                 adata["show_favrem"] = ((type=='fav')?true:false);
-  //                 adata["stock_status"] = "icon-nostock text-red";
-  //                 adata["c01_label"] = ((grpdata.c01_label != null)?grpdata.c01_label:'');
-  //                 adata["c02_label"] = ((grpdata.c02_label != null)?grpdata.c02_label:'');
-  //                 adata["c03_label"] = ((grpdata.c03_label != null)?grpdata.c03_label:'');
-  //                 adata["c04_label"] = ((grpdata.c04_label != null)?grpdata.c04_label:'');
-  //                 adata["c05_label"] = ((grpdata.c05_label != null)?grpdata.c05_label:'');
-  //                 adata["nodoc"] = "";
-  //                 if ((adata["doc_fs"] == null) && (adata["doc_mo"] == null) && (adata["doc_ft"] == null)){
-  //                   adata["nodoc"] = "notvisible";
-  //                 }
-  //                 if (adata["qte_stock"] && adata["qte_stock"] > 0){
-  //                   adata["stock_status"] = "icon-stock-ok text-green";
-  //                 }
-  //                 var rendered =  Mustache.render(template, adata, {}, [ '[%', '%]' ]);
-  //                 strartgrp += rendered;
-           
-  //               }
-  //             } else {
-  //               strartgrp +='<div class="d-flex flex-row" style="background-color: #f1f1f1;font-size: 8pt;font-weight: bold;">' + lbl.priceondemand + '</div>';
-  //             }
-  //             strartgrp +=   '</div></div>';
-            
-           
-  //        return strartgrp;
-  // },
-  loadGroupArticle: function(article,rowx){
-    let mods = document.getElementsByClassName("articlegrps");
-    for (let i=0;i<mods.length;i++){
-      mods[i].style.display = 'none';
-    }
-    let lst = document.getElementById("artrow_" + rowx);
-    lst.innerHTML='';
-    postData({"cl":"Articles","fn":"getArticleGroup","article":article,"lang":"{{lang}}"}).then(agrps => {
-      shop.article_groups = agrps.data;
-      lst.innerHTML='';
-      postData({"cl":"Articles","fn":"getByFamillyAndGroups","famillycode":shop.article_groups[0].famille_art,"groupcode":shop.article_groups[0].gp_art,"lang":"{{lang}}"}).then(arts => {
-        shop.articles = arts.data;
-        for (var g=0;g< shop.article_groups.length;g++){
-          let agrp = shop.setArticleGroup(g,shop.article_groups[g],shop.articles,'shop');
-          lst.insertAdjacentHTML('beforeend',agrp);
-        }
-        lst.style.display = 'block';
-      });
-    }).catch(e => { console.log(e)});
-    
-  },
-  loadProducts: function(id){
-    let sel = [];
-    if (id){
-      sel.push(document.getElementById(id).dataset);
-    } else {  
-      // if (document.getElementById("sidebar").style.display == 'block'){
-        //sel = shop.tblmobilegroups.getSelectedData();
-        //myapp.togglemenu('sidebar');
-      // } else {
-        sel = shop.tblgroups.getSelectedData();
-      // }
-      
-    }
-    
-    if (sel[0]){
-      let lst = document.getElementById("lst_articlegroups");
-      document.getElementById("articlehead").innerHTML=sel[0].famille+' - '+sel[0].groupe;
-      postData({"cl":"Articles","fn":"getArticleGroups","groupcode":sel[0].gp_art,"famillycode":sel[0].famille_art,"lang":"{{lang}}"}).then(agrps => {
-        shop.article_groups = agrps.data;
-        //console.log("groups",shop.article_groups);
-        lst.innerHTML='';
-        postData({"cl":"Articles","fn":"getByFamillyAndGroups","famillycode":sel[0].famille_art,"groupcode":sel[0].gp_art,"lang":"{{lang}}"}).then(arts => {
-          shop.articles = arts.data;
-          for (var g=0;g< shop.article_groups.length;g++){
-            let agrp = shop.setArticleGroup(g,shop.article_groups[g],shop.articles,'shop');
-            lst.insertAdjacentHTML('beforeend',agrp);
-          }
-          myapp.viewpanel("shop");
-        });
-      }).catch(e => { console.log(e)});
-    }
-  },
-  gotoHome: function(){
-    // var selectedRows = shop.tblgroups.getSelectedRows();
-    // shop.tblgroups.deselectRow(selectedRows);
-    let lst = document.getElementById("lst_articlegroups");
-    document.getElementById("articlehead").innerHTML='{{lbl.newproducts}}';
-      postData({"cl":"Articles","fn":"getNewArticleGroups","lang":"{{lang}}"}).then(agrps => {
-        
-        console.log("new Groups length",agrps);
-        shop.article_groups = agrps.data;
-        //console.log("new Groups length",shop.article_groups);
-        lst.innerHTML='';
-        let argroups = [];
-        for(var g=0;g<shop.article_groups.length;g++){
-          argroups.push("'" + shop.article_groups[g].article + "'");
-        }
-        //console.log("groupnames",argroups);
-       postData({"cl":"Articles","fn":"getNewArticles","agrps":argroups.join(','),"lang":"{{lang}}"}).then(arts => {
-        //console.log("new artdata",arts.data);
-        shop.articles = arts.data;
-        // console.log("new artdata length",shop.articles.keys().length);
-        // console.log("new articles",shop.articles);
-        for (var g=0;g< shop.article_groups.length;g++){
-          let agrp = shop.setArticleGroup(g,shop.article_groups[g],shop.articles,'shop');
-          lst.insertAdjacentHTML('beforeend',agrp);
-        }
-           myapp.viewpanel("shop");
-        });
-      }).catch(e => { console.log(e)});
-    return false;
-  },
-  
-  checkquantity: function(obj){
-    console.log("check quantiy",obj);
-    if (obj.value == ""){ obj.value = 1; }
-    obj.value = number.clean(obj.value);
-    return false;
-  },
-  setSelected: function(obj){
-    obj.select();
-  },
-  openpdf: function(pdfname){
-    var windowReference = window.open();
-    if (/^http/.test(pdfname)){
-      windowReference.location = pdfname;
-    } else if (/\.pdf/.test(pdfname)){
-      windowReference.location = 'https://qube-concretec.eu/shop/media/'+ pdfname;
-    }
-    
-  },
-  opensidebar(top,bottom){
-    console.log("open via shop",top,bottom);
-    let height = document.body.clientHeight -top -bottom;
-    console.log(document.body.clientHeight, height);
-    document.getElementById('sidebar').style.marginTop = top + 'px';
-    document.getElementById('sidebar').style.height = height + 'px';
-    myapp.togglemenu('sidebar');
-  }
-  
-  
-}
\ No newline at end of file
index 444b728..bf8d0a4 100644 (file)
@@ -126,7 +126,7 @@ document.addEventListener("DOMContentLoaded", function() {
     mysite.iduser=mysite.uuidv4();\r
     mysite.setCookie("qubesid",mysite.iduser,null);\r
   }\r
-  if (!mysite.iduser && !preferences.id_user){\r
+  if (!mysite.iduser && !mysite.iduser){\r
     mysite.iduser = mysite.getCookie("qubesid");\r
     publicaskprice.getItemCount();\r
   } \r
@@ -136,14 +136,14 @@ document.addEventListener("DOMContentLoaded", function() {
   }\r
   if (preferences.id_user){\r
     basket.getItemCount();\r
-    askprice.getItemCount();\r
+    publicaskprice.getItemCount();\r
     if (document.getElementById("lst_order_basket")) {\r
       console.log("loading shop Basket!");\r
       basket.loadTable();\r
     }\r
     if (document.getElementById("lst_order_askprice")) {\r
       console.log("loading shop askprice!");\r
-      askprice.loadTable();\r
+      publicaskprice.loadTable();\r
     }\r
   }\r
   \r
index 251097f..dede5f2 100644 (file)
@@ -6,24 +6,42 @@
     "lang" => "fr",
     "debug" => 1,
     "maildps" => array(
-      "from" => "demande@qube-group.eu",
-      "server" => "smtp.office365.com",
-      "login" => "demande@qube-group.eu",
-      "password" => "wabribus66*3",
+      "from" => "support@dks.lu",
+      "server" => "mail.your-server.de",
+      "login" => "ksaffran@dks.lu",
+      "password" => "FB1ia1ka",
       "port" => 587,
       "encrpytion" => "tls",
       "debug" => 0
     ),
     "mailshop" => array(
-      "from" => "shop@qube-group.eu",
-      "server" => "smtp.office365.com",
-      "login" => "shop@qube-group.eu",
-      "password" => "crugemut!33+",
+      "from" => "support@dks.lu",
+      "server" => "mail.your-server.de",
+      "login" => "ksaffran@dks.lu",
+      "password" => "FB1ia1ka",
       "port" => 587,
       "encrpytion" => "tls",
       "debug" => 0
     ),
-    "mailto" => "team.qube@qube-group.eu",
+    // "maildps" => array(
+    //   "from" => "demande@qube-group.eu",
+    //   "server" => "smtp.office365.com",
+    //   "login" => "demande@qube-group.eu",
+    //   "password" => "wabribus66*3",
+    //   "port" => 587,
+    //   "encrpytion" => "tls",
+    //   "debug" => 0
+    // ),
+    // "mailshop" => array(
+    //   "from" => "shop@qube-group.eu",
+    //   "server" => "smtp.office365.com",
+    //   "login" => "shop@qube-group.eu",
+    //   "password" => "crugemut!33+",
+    //   "port" => 587,
+    //   "encrpytion" => "tls",
+    //   "debug" => 0
+    // ),
+    "mailto" => "ksaffran@dks.lu",
 
     "db"=> array(
       "type" => "mysql",
index 12651dd..4a9a4cc 100644 (file)
@@ -76,7 +76,8 @@ class Email{
     
     
     } catch (Exception $e) {
-      echo "Message could not be sent. Mailer Error: {$mail->ErrorInfo}";
+      file_put_contents("log/mailerror.log",date('YmdHis').":Mailer Error: {$mail->ErrorInfo}\n",FILE_APPEND);
+      //echo "Message could not be sent. Mailer Error: {$mail->ErrorInfo}";
     }
   }
 }
index 459df9a..21ce5f7 100644 (file)
@@ -16,9 +16,9 @@ class ArticleGroups{
     if (!$lang){ $lang=$this->cfg["lang"];}
     $sql="select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_".$lang.",fm.titre_fr) as famille,coalesce(gr.titre_".$lang.",gr.titre_fr) as groupe
     from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
+    select ag.gp_art,ag.famille_art ,ar.article_group,ag.article 
+    from article_groups ag join articles ar on (ag.article=ar.article_group) 
+    where ag.isactive =1) aa 
     join groupes gr on (gr.gp_art=aa.gp_art)
     join familles fm on (gr.famille_art=fm.famille_art) where 
     gr.titre_fr is not null
@@ -39,7 +39,7 @@ class ArticleGroups{
 
   public function getArticleGroupsByFamilleAndGroup($famille,$groupe,$lang){
     if (!$lang){ $lang=$this->cfg["lang"];}
-    return $this->dbh->queryarray("select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_".$lang.",ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_".$lang.",ag.titre_fr), position(' | ' in coalesce(ag.titre_".$lang.",ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='".$famille."'  and ag.gp_art='".$groupe."' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;");
+    return $this->dbh->queryarray("select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_".$lang.",ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_".$lang.",ag.titre_fr), position(' | ' in coalesce(ag.titre_".$lang.",ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='".$famille."'  and ag.gp_art='".$groupe."' and ag.isactive=1 group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;");
     
   }
 }
index b62448d..411da45 100644 (file)
@@ -84,14 +84,14 @@ class Articles{
     }
     if (strlen($where) > 0){
       $xsql = "select ax.article from article_search ax join articles ar on (ar.article=ax.article) join article_groups ag on (ar.article_group=ag.article) where ar.isactive=1 and ag.isactive=1 and ".$where;
-      //file_put_contents("log/search.log","SQL:".$xsql."\n",FILE_APPEND);
+      //file_put_contents("log/search.log",date('Y-m-d H:i:s').":Query:".$query."/".$lang."\n",FILE_APPEND);
       $ores = $this->dbh->queryarray($xsql);
       if ($ores && count($ores) > 0){
         foreach ($ores as $s){
           array_push($res,$s["article"]);
         }
       }
-      
+      file_put_contents("log/search.log",date('Y-m-d H:i:s').":Query:".$query."/".$lang.":Result:".count($ores)."\n",FILE_APPEND);
     }
     return $res;
   }
index 64e1a25..ffd03a1 100644 (file)
@@ -98,7 +98,7 @@ class Orders {
 
   public function publicSendAskPrice($id_user,$data){
     $nid = $this->dbh->newuuid();
-    
+    $cdate = date('YmdHis');
     $adr = $this->dbh->securetext($data["name"]."\n".$data["address"]."\n".$data["zip"]." ".$data["city"]."\n".$data["country"]);
     $msg = $this->dbh->securetext("Contact:\n".$data["contact"].'\n'.$data["phone"].'\n'.$data["email"]."\n".$adr."\n\nMessage:\n\n".$data["message"]);
     $sql = "INSERT INTO orders (id, id_client, id_user, status, orderdate, wiges_no_document, created, modified, wiges_document_type,  deliveryaddress,msg) VALUES ('".$nid."', 10000, '".$this->dbh->securetext($id_user)."', 'received', CURRENT_DATE, null, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP, 'DPS', '".$adr."', '".$msg."');";
@@ -119,7 +119,7 @@ class Orders {
     join article_groups ag on (ar.article_group=ag.article)
     join order_articles oa on (ar.article=oa.article)
     where oa.id_order='".$nid."' group by ar.article_group,ar.article,oa.id,ag.titre_fr;"; 
-    file_put_contents("log/apireturn.log",$prsql."\n",FILE_APPEND);
+    file_put_contents("log/apireturn.log",$cdate.":".$prsql."\n",FILE_APPEND);
     
     $pdata = $this->dbh->queryarray($prsql);
     file_put_contents("log/apireturn.log",print_r($pdata,true)."\n",FILE_APPEND);
@@ -153,7 +153,7 @@ class Orders {
 
   public function sendAskPrice($id_user,$data){
     $nid = $this->dbh->newuuid();
-    
+    $cdate = date('YmdHis');
     $adr = $this->dbh->securetext($data["name"]."\n".$data["address"]."\n".$data["zip"]." ".$data["city"]."\n".$data["country"]);
     $msg = $this->dbh->securetext("Contact:\n".$data["contact"].'\n'.$data["phone"].'\n'.$data["email"]."\n".$adr."\n\nMessage:\n\n".$data["message"]);
     $sql = "INSERT INTO orders (id, id_client, id_user, status, orderdate, wiges_no_document, created, modified, wiges_document_type,  deliveryaddress,msg) VALUES ('".$nid."', '".$data['client']."', '".$this->dbh->securetext($id_user)."', 'received', CURRENT_DATE, null, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP, 'DPS', '".$adr."', '".$msg."');";
@@ -169,23 +169,23 @@ class Orders {
     // $cap->no_document = "YY";
     // array("no_document" => "XX");
     $cap = $api->createAskPrice($nid,$data['client'],$adrclient,$adrliv,$comment);
-    file_put_contents("log/apireturn.log",print_r($cap,true),FILE_APPEND);
+    file_put_contents("log/apireturn.log",$cdate.print_r($cap,true),FILE_APPEND);
     $prsql = "select oa.id,ar.article_group,ag.titre_fr,ar.article,oa.comment ,oa.quantity from articles ar 
     join article_groups ag on (ar.article_group=ag.article)
     join order_articles oa on (ar.article=oa.article)
     where oa.id_order='".$nid."' group by ar.article_group,ar.article,oa.id,ag.titre_fr;"; 
-    file_put_contents("log/apireturn.log",$prsql."\n",FILE_APPEND);
+    file_put_contents("log/apireturn.log",$cdate."-".$prsql."\n",FILE_APPEND);
     
     $pdata = $this->dbh->queryarray($prsql);
     file_put_contents("log/apireturn.log",print_r($pdata,true)."\n",FILE_APPEND);
     $nodoc = $cap->no_document;
     $xarts = "";
     for($i=0;$i<count($pdata);$i++){
-      //file_put_contents("log/apireturn.log","i:$i->".$nodoc."->ndoc:"."\n",FILE_APPEND);
-      //file_put_contents("log/apireturn.log","i:$i->".print_r($pdata[$i],true)."\n",FILE_APPEND);
+      file_put_contents("log/apireturn.log",$cdate.":i:$i->".$nodoc."->ndoc:"."\n",FILE_APPEND);
+      file_put_contents("log/apireturn.log",$cdate."i:$i->".print_r($pdata[$i],true)."\n",FILE_APPEND);
       $xarts .= (($pdata[$i]["quantity"]!=null)?$pdata[$i]["quantity"]:"1")." x ".$pdata[$i]["article"].(($pdata[$i]["comment"]!=null)?":".$pdata[$i]["comment"]:"")."\n";
       $capos = $api->addAskPricePosition($pdata[$i]["id"],$nodoc,$pdata[$i]["article"],(($pdata[$i]["quantity"]!=null)?$pdata[$i]["quantity"]:"1"),$pdata[$i]["comment"]);
-      //file_put_contents("log/apireturn.log",print_r($capos,true)."\n",FILE_APPEND);
+      file_put_contents("log/apireturn.log",$cdate.":".print_r($capos,true)."\n",FILE_APPEND);
     }
     $eml = new Email($this->dbh,$this->cfg);
     $altbody = "Nouvelle Demande de Prix via Site!
@@ -224,7 +224,7 @@ class Orders {
     // $cap->no_document = "YY";
     // array("no_document" => "XX");
     $cap = $api->createCommande($nid,$data['client'],$adrclient,$adrliv,$comment);
-    file_put_contents("log/apireturn.log",print_r($cap,true),FILE_APPEND);
+    file_put_contents("log/apireturn.log",print_r($cap,true)."\n",FILE_APPEND);
     $prsql = "select oa.id,ar.article_group,ag.titre_fr,ar.article,oa.comment ,oa.quantity from articles ar 
     join article_groups ag on (ar.article_group=ag.article)
     join order_articles oa on (ar.article=oa.article)
@@ -236,11 +236,11 @@ class Orders {
     $nodoc = $cap->no_document;
     $xarts = "";
     for($i=0;$i<count($pdata);$i++){
-      //file_put_contents("log/apireturn.log","i:$i->".$nodoc."->ndoc:"."\n",FILE_APPEND);
-      //file_put_contents("log/apireturn.log","i:$i->".print_r($pdata[$i],true)."\n",FILE_APPEND);
+      file_put_contents("log/apireturn.log","i:$i->".$nodoc."->ndoc:"."\n",FILE_APPEND);
+      file_put_contents("log/apireturn.log","i:$i->".print_r($pdata[$i],true)."\n",FILE_APPEND);
       $xarts .= (($pdata[$i]["quantity"]!=null)?$pdata[$i]["quantity"]:"1")." x ".$pdata[$i]["article"].(($pdata[$i]["comment"]!=null)?":".$pdata[$i]["comment"]:"")."\n";
       $capos = $api->addCommandePosition($pdata[$i]["id"],$nodoc,$pdata[$i]["article"],(($pdata[$i]["quantity"]!=null)?$pdata[$i]["quantity"]:"1"),$pdata[$i]["comment"]);
-      //file_put_contents("log/apireturn.log",print_r($capos,true)."\n",FILE_APPEND);
+      file_put_contents("log/apireturn.log",print_r($capos,true)."\n",FILE_APPEND);
     }
     $eml = new Email($this->dbh,$this->cfg);
     $altbody = "Nouvelle Commande via Site!
index 606d0d6..c7b6116 100644 (file)
@@ -1,3 +1,7 @@
 <?php 
-  $cfg["version"] = date('Ymdhis');
+  $cfg["version"] = "1.6.12";
+  if ($cfg["debug"] == 1){
+    $cfg["version"] = date('Ymdhis');
+  }
+  
 ?>
\ No newline at end of file
diff --git a/public_html/log/sql.log b/public_html/log/sql.log
deleted file mode 100644 (file)
index c50fc76..0000000
+++ /dev/null
@@ -1,10103 +0,0 @@
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '')
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: SELECT id,picture,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content FROM productnews ORDER BY newsdatetime DESC LIMIT 6
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.id DESC, ag.article LIMIT 20;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '')
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: SELECT id,picture,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content FROM productnews ORDER BY newsdatetime DESC LIMIT 6
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.id DESC, ag.article LIMIT 20;
-QUERYARRAY: SELECT picture,linkname,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects ORDER BY publishdate DESC LIMIT 6
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '')
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: SELECT id,picture,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content FROM productnews ORDER BY newsdatetime DESC LIMIT 6
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.id DESC, ag.article LIMIT 20;
-QUERYARRAY: SELECT picture,linkname,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects ORDER BY publishdate DESC LIMIT 6
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'art_image') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'art_image') OR (linkname = '')
-  join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'art_image') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'art_image') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='82fd7c0f-f11a-4b1b-a907-baf2bc23eded' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '')
-QUERYARRAY: SELECT * FROM productnews WHERE id = '1' 
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'gallerys') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'art_image') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='82fd7c0f-f11a-4b1b-a907-baf2bc23eded' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '')
-QUERYARRAY: SELECT * FROM productnews WHERE id = '1' 
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'gallerys') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'art_image') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='82fd7c0f-f11a-4b1b-a907-baf2bc23eded' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'art_image') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='82fd7c0f-f11a-4b1b-a907-baf2bc23eded' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='82fd7c0f-f11a-4b1b-a907-baf2bc23eded' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '')
-QUERYARRAY: SELECT * FROM productnews WHERE id = '3' 
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'gallerys') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='82fd7c0f-f11a-4b1b-a907-baf2bc23eded' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '')
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: SELECT id,picture,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content FROM productnews ORDER BY newsdatetime DESC LIMIT 6
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.id DESC, ag.article LIMIT 20;
-QUERYARRAY: SELECT picture,linkname,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects ORDER BY publishdate DESC LIMIT 6
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'art_image') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'art_image') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'art_image') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'art_image') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'art_image') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'art_image') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'art_image') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'art_image') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'art_image') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'art_image') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='82fd7c0f-f11a-4b1b-a907-baf2bc23eded' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '2') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art order by aa.famille_art ASC,aa.gp_art ASC;
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art is not null  group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='82fd7c0f-f11a-4b1b-a907-baf2bc23eded' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='82fd7c0f-f11a-4b1b-a907-baf2bc23eded' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '')
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: SELECT id,picture,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content FROM productnews ORDER BY newsdatetime DESC LIMIT 6
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.id DESC, ag.article LIMIT 20;
-QUERYARRAY: SELECT picture,linkname,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects ORDER BY publishdate DESC LIMIT 6
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'art_image') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'art_image') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'art_image') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'art_image') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'art_image') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'art_image') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'art_image') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'art_image') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='82fd7c0f-f11a-4b1b-a907-baf2bc23eded' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '')
-QUERYARRAY: SELECT * FROM productnews WHERE id = '3' 
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'gallerys') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='82fd7c0f-f11a-4b1b-a907-baf2bc23eded' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '')
-QUERY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM productnews WHERE isactive='1' and id='3';
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='82fd7c0f-f11a-4b1b-a907-baf2bc23eded' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '')
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: SELECT id,picture,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content FROM productnews ORDER BY newsdatetime DESC LIMIT 6
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.id DESC, ag.article LIMIT 20;
-QUERYARRAY: SELECT picture,linkname,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects ORDER BY publishdate DESC LIMIT 6
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'art_image') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'art_image') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='82fd7c0f-f11a-4b1b-a907-baf2bc23eded' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '')
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: SELECT id,picture,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content FROM productnews ORDER BY newsdatetime DESC LIMIT 6
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.id DESC, ag.article LIMIT 20;
-QUERYARRAY: SELECT picture,linkname,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects ORDER BY publishdate DESC LIMIT 6
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'art_image') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'art_image') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='82fd7c0f-f11a-4b1b-a907-baf2bc23eded' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'art_image') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'art_image') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='82fd7c0f-f11a-4b1b-a907-baf2bc23eded' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '')
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: SELECT id,picture,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content FROM productnews ORDER BY newsdatetime DESC LIMIT 6
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.id DESC, ag.article LIMIT 20;
-QUERYARRAY: SELECT picture,linkname,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects ORDER BY publishdate DESC LIMIT 6
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='82fd7c0f-f11a-4b1b-a907-baf2bc23eded' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '9') OR (linkname = '')
-QUERY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM productnews WHERE isactive='1' and id='9';
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='82fd7c0f-f11a-4b1b-a907-baf2bc23eded' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '9') OR (linkname = '')
-QUERY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM productnews WHERE isactive='1' and id='9';
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='82fd7c0f-f11a-4b1b-a907-baf2bc23eded' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='82fd7c0f-f11a-4b1b-a907-baf2bc23eded' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '2') OR (linkname = '')
-QUERY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM productnews WHERE isactive='1' and id='2';
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '2') OR (linkname = '')
-QUERY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM productnews WHERE isactive='1' and id='2';
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='82fd7c0f-f11a-4b1b-a907-baf2bc23eded' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '')
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: SELECT id,picture,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content FROM productnews ORDER BY newsdatetime DESC LIMIT 6
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.id DESC, ag.article LIMIT 20;
-QUERYARRAY: SELECT picture,linkname,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects ORDER BY publishdate DESC LIMIT 6
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='82fd7c0f-f11a-4b1b-a907-baf2bc23eded' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '')
-QUERY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM productnews WHERE isactive='1' and id='3';
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='82fd7c0f-f11a-4b1b-a907-baf2bc23eded' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '')
-QUERY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM productnews WHERE isactive='1' and id='3';
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='82fd7c0f-f11a-4b1b-a907-baf2bc23eded' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='82fd7c0f-f11a-4b1b-a907-baf2bc23eded' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '')
-QUERY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM productnews WHERE isactive='1' and id='3';
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='82fd7c0f-f11a-4b1b-a907-baf2bc23eded' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '')
-QUERY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM productnews WHERE isactive='1' and id='3';
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='82fd7c0f-f11a-4b1b-a907-baf2bc23eded' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '')
-QUERY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM productnews WHERE isactive='1' and id='3';
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='82fd7c0f-f11a-4b1b-a907-baf2bc23eded' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '')
-QUERY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM productnews WHERE isactive='1' and id='3';
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='82fd7c0f-f11a-4b1b-a907-baf2bc23eded' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '')
-QUERY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM productnews WHERE isactive='1' and id='3';
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='82fd7c0f-f11a-4b1b-a907-baf2bc23eded' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='82fd7c0f-f11a-4b1b-a907-baf2bc23eded' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '')
-QUERY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM productnews WHERE isactive='1' and id='3';
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='82fd7c0f-f11a-4b1b-a907-baf2bc23eded' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '')
-QUERY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM productnews WHERE isactive='1' and id='3';
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='82fd7c0f-f11a-4b1b-a907-baf2bc23eded' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '')
-QUERY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM productnews WHERE isactive='1' and id='3';
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='82fd7c0f-f11a-4b1b-a907-baf2bc23eded' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='82fd7c0f-f11a-4b1b-a907-baf2bc23eded' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '')
-QUERY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM productnews WHERE isactive='1' and id='1';
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='82fd7c0f-f11a-4b1b-a907-baf2bc23eded' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '')
-QUERY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' and id='3';
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='82fd7c0f-f11a-4b1b-a907-baf2bc23eded' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art order by aa.famille_art ASC,aa.gp_art ASC;
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art is not null  group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='82fd7c0f-f11a-4b1b-a907-baf2bc23eded' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C1';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C1'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art='C1'  group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='82fd7c0f-f11a-4b1b-a907-baf2bc23eded' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '5') OR (linkname = '')
-QUERYARRAY: SELECT picture,linkname,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects ORDER BY publishdate
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='82fd7c0f-f11a-4b1b-a907-baf2bc23eded' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'pont_patton') OR (linkname = '')
-QUERYARRAY: SELECT * FROM projects WHERE linkname='pont_patton';
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='82fd7c0f-f11a-4b1b-a907-baf2bc23eded' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='82fd7c0f-f11a-4b1b-a907-baf2bc23eded' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='82fd7c0f-f11a-4b1b-a907-baf2bc23eded' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='82fd7c0f-f11a-4b1b-a907-baf2bc23eded' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '')
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: SELECT id,picture,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content FROM productnews ORDER BY newsdatetime DESC LIMIT 6
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.id DESC, ag.article LIMIT 20;
-QUERYARRAY: SELECT picture,linkname,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects ORDER BY publishdate DESC LIMIT 6
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='82fd7c0f-f11a-4b1b-a907-baf2bc23eded' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '')
-QUERY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM productnews WHERE isactive='1' and id='1';
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='82fd7c0f-f11a-4b1b-a907-baf2bc23eded' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '2') OR (linkname = '')
-QUERY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM productnews WHERE isactive='1' and id='2';
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='82fd7c0f-f11a-4b1b-a907-baf2bc23eded' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '')
-QUERY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM productnews WHERE isactive='1' and id='3';
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='82fd7c0f-f11a-4b1b-a907-baf2bc23eded' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '4') OR (linkname = '')
-QUERY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM productnews WHERE isactive='1' and id='4';
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='82fd7c0f-f11a-4b1b-a907-baf2bc23eded' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '6') OR (linkname = '')
-QUERY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM productnews WHERE isactive='1' and id='6';
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='82fd7c0f-f11a-4b1b-a907-baf2bc23eded' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '')
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: SELECT id,picture,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content FROM productnews ORDER BY newsdatetime DESC LIMIT 6
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.id DESC, ag.article LIMIT 20;
-QUERYARRAY: SELECT picture,linkname,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects ORDER BY publishdate DESC LIMIT 6
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='82fd7c0f-f11a-4b1b-a907-baf2bc23eded' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '')
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: SELECT id,picture,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content FROM productnews ORDER BY newsdatetime DESC LIMIT 6
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.id DESC, ag.article LIMIT 20;
-QUERYARRAY: SELECT id,picture,linkname,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects ORDER BY publishdate DESC LIMIT 6
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='82fd7c0f-f11a-4b1b-a907-baf2bc23eded' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '22') OR (linkname = '')
-QUERYARRAY: SELECT * FROM projects WHERE id='22';
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='82fd7c0f-f11a-4b1b-a907-baf2bc23eded' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '5') OR (linkname = '')
-QUERYARRAY: SELECT id,picture,linkname,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects ORDER BY publishdate
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='82fd7c0f-f11a-4b1b-a907-baf2bc23eded' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '5') OR (linkname = '')
-QUERYARRAY: SELECT id,picture,linkname,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects ORDER BY publishdate
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='82fd7c0f-f11a-4b1b-a907-baf2bc23eded' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '5') OR (linkname = '')
-QUERYARRAY: SELECT id,picture,linkname,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects ORDER BY publishdate
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='82fd7c0f-f11a-4b1b-a907-baf2bc23eded' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '5') OR (linkname = '')
-QUERYARRAY: SELECT id,picture,linkname,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects ORDER BY publishdate
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='82fd7c0f-f11a-4b1b-a907-baf2bc23eded' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '')
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: SELECT id,picture,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content FROM productnews ORDER BY newsdatetime DESC LIMIT 6
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.id DESC, ag.article LIMIT 20;
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects ORDER BY publishdate DESC LIMIT 6
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'shop') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'shop') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'shop') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'shop') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='82fd7c0f-f11a-4b1b-a907-baf2bc23eded' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '')
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: SELECT id,picture,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content FROM productnews ORDER BY newsdatetime DESC LIMIT 6
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.id DESC, ag.article LIMIT 20;
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects ORDER BY publishdate DESC LIMIT 6
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'shop') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'shop') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'shop') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'shop') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'shop') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='82fd7c0f-f11a-4b1b-a907-baf2bc23eded' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '')
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: SELECT id,picture,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content FROM productnews ORDER BY newsdatetime DESC LIMIT 6
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.id DESC, ag.article LIMIT 20;
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects ORDER BY publishdate DESC LIMIT 6
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'shop') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'shop') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'shop') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'shop') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='82fd7c0f-f11a-4b1b-a907-baf2bc23eded' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '')
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: SELECT id,picture,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content FROM productnews ORDER BY newsdatetime DESC LIMIT 6
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.id DESC, ag.article LIMIT 20;
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC LIMIT 6
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'shop') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'shop') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'shop') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'shop') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'shop') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'shop') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='82fd7c0f-f11a-4b1b-a907-baf2bc23eded' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '')
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: SELECT id,picture,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content FROM productnews ORDER BY newsdatetime DESC LIMIT 6
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.id DESC, ag.article LIMIT 20;
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC LIMIT 6
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'shop') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'shop') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'shop') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'shop') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'shop') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='82fd7c0f-f11a-4b1b-a907-baf2bc23eded' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '')
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: SELECT id,picture,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content FROM productnews ORDER BY newsdatetime DESC LIMIT 6
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.id DESC, ag.article LIMIT 20;
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC LIMIT 6
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'shop') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'shop') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'shop') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'shop') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='82fd7c0f-f11a-4b1b-a907-baf2bc23eded' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '')
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: SELECT id,picture,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content FROM productnews ORDER BY newsdatetime DESC LIMIT 6
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.id DESC, ag.article LIMIT 20;
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC LIMIT 6
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'shop') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'shop') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'shop') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'shop') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'shop') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='82fd7c0f-f11a-4b1b-a907-baf2bc23eded' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '')
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: SELECT id,picture,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content FROM productnews ORDER BY newsdatetime DESC LIMIT 6
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.id DESC, ag.article LIMIT 20;
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC LIMIT 6
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='82fd7c0f-f11a-4b1b-a907-baf2bc23eded' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '22') OR (linkname = '')
-QUERY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where id='22' and isactive='1';
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='82fd7c0f-f11a-4b1b-a907-baf2bc23eded' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '22') OR (linkname = '')
-QUERY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where id='22' and isactive='1';
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='82fd7c0f-f11a-4b1b-a907-baf2bc23eded' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '22') OR (linkname = '')
-QUERY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where id='22' and isactive='1';
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='82fd7c0f-f11a-4b1b-a907-baf2bc23eded' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '22') OR (linkname = '')
-QUERY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where id='22' and isactive='1';
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='82fd7c0f-f11a-4b1b-a907-baf2bc23eded' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '22') OR (linkname = '')
-QUERY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where id='22' and isactive='1';
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='82fd7c0f-f11a-4b1b-a907-baf2bc23eded' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '22') OR (linkname = '')
-QUERY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where id='22' and isactive='1';
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='82fd7c0f-f11a-4b1b-a907-baf2bc23eded' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '5') OR (linkname = '')
-QUERYARRAY: SELECT id,picture,linkname,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects ORDER BY publishdate
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='82fd7c0f-f11a-4b1b-a907-baf2bc23eded' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '5') OR (linkname = '')
-QUERYARRAY: SELECT id,picture,linkname,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects ORDER BY publishdate
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='82fd7c0f-f11a-4b1b-a907-baf2bc23eded' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '5') OR (linkname = '')
-QUERYARRAY: SELECT id,picture,linkname,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects ORDER BY publishdate
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='82fd7c0f-f11a-4b1b-a907-baf2bc23eded' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '')
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: SELECT id,picture,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content FROM productnews ORDER BY newsdatetime DESC LIMIT 6
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.id DESC, ag.article LIMIT 20;
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC LIMIT 6
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '7') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='9fbb5286-4127-4869-adb3-51edc1010869' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '2') OR (linkname = '')
-QUERYARRAY: SELECT link,coalesce(title_fr,title_fr)  as title_fr FROM main_menu WHERE parentid = '2';
-QUERY: select * from pageheaders where ident='&HEA-ABO/'.ABO.'';
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'jobs') OR (linkname = '')
-QUERYARRAY: SELECT link,coalesce(title_fr,title_fr)  as title_fr FROM main_menu WHERE parentid = '2';
-QUERY: select * from pageheaders where ident='&HEA-ABO/JOB';
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='9fbb5286-4127-4869-adb3-51edc1010869' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'jobs') OR (linkname = '')
-QUERYARRAY: SELECT link,coalesce(title_fr,title_fr)  as title_fr FROM main_menu WHERE parentid = '2';
-QUERY: select * from pageheaders where ident='&HEA-ABO/JOB';
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='9fbb5286-4127-4869-adb3-51edc1010869' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'jobs') OR (linkname = '')
-QUERYARRAY: SELECT link,coalesce(title_fr,title_fr)  as title_fr FROM main_menu WHERE parentid = '2';
-QUERY: select * from pageheaders where ident='&HEA-ABO/JOB';
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='9fbb5286-4127-4869-adb3-51edc1010869' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'jobs') OR (linkname = '')
-QUERYARRAY: SELECT link,coalesce(title_fr,title_fr)  as title_fr FROM main_menu WHERE parentid = '2';
-QUERY: select * from pageheaders where ident='&HEA-ABO/JOB';
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='9fbb5286-4127-4869-adb3-51edc1010869' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'jobs') OR (linkname = '')
-QUERYARRAY: SELECT link,coalesce(title_fr,title_fr)  as title_fr FROM main_menu WHERE parentid = '2';
-QUERY: select * from pageheaders where ident='&HEA-ABO/JOB';
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='9fbb5286-4127-4869-adb3-51edc1010869' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '')
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: SELECT id,picture,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content FROM productnews ORDER BY newsdatetime DESC LIMIT 6
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 20;
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC LIMIT 6
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '2') OR (linkname = '')
-QUERYARRAY: SELECT link,coalesce(title_fr,title_fr)  as title_fr FROM main_menu WHERE parentid = '2';
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='f7ed88b8-718b-4da5-8bdb-3801d45ba3b6' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art is not null  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='f7ed88b8-718b-4da5-8bdb-3801d45ba3b6' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='f7ed88b8-718b-4da5-8bdb-3801d45ba3b6' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A1') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='A1';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A1'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art='A1'  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='f7ed88b8-718b-4da5-8bdb-3801d45ba3b6' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='f7ed88b8-718b-4da5-8bdb-3801d45ba3b6' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A1') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='A1';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='A1' and gp_art='A102';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A102'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A1'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1'  and ag.gp_art='A102' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='f7ed88b8-718b-4da5-8bdb-3801d45ba3b6' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='A102' and famille_art='A1'  and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A102' and isactive=1) group by id,article_group,article,ap.prix_net order by article_group,article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36' ;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='f7ed88b8-718b-4da5-8bdb-3801d45ba3b6' and oa.id_order is null and oa.code_document='DPS'
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '2') OR (linkname = '')
-QUERYARRAY: SELECT link,coalesce(title_fr,title_fr)  as title_fr FROM main_menu WHERE parentid = '2';
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='f7ed88b8-718b-4da5-8bdb-3801d45ba3b6' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '')
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: SELECT id,picture,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content FROM productnews ORDER BY newsdatetime DESC LIMIT 6
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 20;
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC LIMIT 6
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='f7ed88b8-718b-4da5-8bdb-3801d45ba3b6' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art is not null  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='f7ed88b8-718b-4da5-8bdb-3801d45ba3b6' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='f7ed88b8-718b-4da5-8bdb-3801d45ba3b6' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C4';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C4'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art='C4'  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='f7ed88b8-718b-4da5-8bdb-3801d45ba3b6' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='f7ed88b8-718b-4da5-8bdb-3801d45ba3b6' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C4';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C4' and gp_art='C401';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C401'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C4'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4'  and ag.gp_art='C401' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='f7ed88b8-718b-4da5-8bdb-3801d45ba3b6' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C401' and famille_art='C4'  and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C4' and gp_art='C401' and isactive=1) group by id,article_group,article,ap.prix_net order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='f7ed88b8-718b-4da5-8bdb-3801d45ba3b6' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C4';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C4' and gp_art='C402';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C402'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C4'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4'  and ag.gp_art='C402' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='f7ed88b8-718b-4da5-8bdb-3801d45ba3b6' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C402' and famille_art='C4'  and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C4' and gp_art='C402' and isactive=1) group by id,article_group,article,ap.prix_net order by article_group,article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36' ;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='f7ed88b8-718b-4da5-8bdb-3801d45ba3b6' and oa.id_order is null and oa.code_document='DPS'
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C4';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C4' and gp_art='C403';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C403'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C4'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4'  and ag.gp_art='C403' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C403' and famille_art='C4'  and isactive=1 order by titre,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='f7ed88b8-718b-4da5-8bdb-3801d45ba3b6' and oa.id_order is null and oa.code_document='DPS'
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C4' and gp_art='C403' and isactive=1) group by id,article_group,article,ap.prix_net order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='f7ed88b8-718b-4da5-8bdb-3801d45ba3b6' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C4';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C4' and gp_art='C407';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C407'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C4'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4'  and ag.gp_art='C407' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C407' and famille_art='C4'  and isactive=1 order by titre,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='f7ed88b8-718b-4da5-8bdb-3801d45ba3b6' and oa.id_order is null and oa.code_document='DPS'
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C4' and gp_art='C407' and isactive=1) group by id,article_group,article,ap.prix_net order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='f7ed88b8-718b-4da5-8bdb-3801d45ba3b6' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '')
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: SELECT id,picture,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content FROM productnews ORDER BY newsdatetime DESC LIMIT 6
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 20;
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC LIMIT 6
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='f7ed88b8-718b-4da5-8bdb-3801d45ba3b6' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '2') OR (linkname = '')
-QUERYARRAY: SELECT link,coalesce(title_fr,title_fr)  as title_fr FROM main_menu WHERE parentid = '2';
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='f7ed88b8-718b-4da5-8bdb-3801d45ba3b6' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'jobs') OR (linkname = '')
-QUERYARRAY: SELECT link,coalesce(title_fr,title_fr)  as title_fr FROM main_menu WHERE parentid = '2';
-QUERY: select * from pageheaders where ident='&HEA-ABO/JOB';
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='f7ed88b8-718b-4da5-8bdb-3801d45ba3b6' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'jobs') OR (linkname = '')
-QUERYARRAY: SELECT link,coalesce(title_fr,title_fr)  as title_fr FROM main_menu WHERE parentid = '2';
-QUERY: select * from pageheaders where ident='&HEA-ABO/JOB';
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='f7ed88b8-718b-4da5-8bdb-3801d45ba3b6' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'jobs') OR (linkname = '')
-QUERYARRAY: SELECT link,coalesce(title_fr,title_fr)  as title_fr FROM main_menu WHERE parentid = '2';
-QUERY: select * from pageheaders where ident='&HEA-ABO/JOB';
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='f7ed88b8-718b-4da5-8bdb-3801d45ba3b6' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='f7ed88b8-718b-4da5-8bdb-3801d45ba3b6' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '')
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: SELECT id,picture,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content FROM productnews ORDER BY newsdatetime DESC LIMIT 6
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 20;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '2') OR (linkname = '')
-QUERYARRAY: SELECT link,coalesce(title_fr,title_fr)  as title_fr FROM main_menu WHERE parentid = '2';
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='f7ed88b8-718b-4da5-8bdb-3801d45ba3b6' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'jobs') OR (linkname = '')
-QUERYARRAY: SELECT link,coalesce(title_fr,title_fr)  as title_fr FROM main_menu WHERE parentid = '2';
-QUERY: select * from pageheaders where ident='&HEA-ABO/JOB';
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='f7ed88b8-718b-4da5-8bdb-3801d45ba3b6' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'jobs') OR (linkname = '')
-QUERYARRAY: SELECT link,coalesce(title_fr,title_fr)  as title_fr FROM main_menu WHERE parentid = '2';
-QUERY: select * from pageheaders where ident='&HEA-ABO/JOB';
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='f7ed88b8-718b-4da5-8bdb-3801d45ba3b6' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'jobs') OR (linkname = '')
-QUERYARRAY: SELECT link,coalesce(title_fr,title_fr)  as title_fr FROM main_menu WHERE parentid = '2';
-QUERY: select * from pageheaders where ident='&HEA-ABO/JOB';
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='f7ed88b8-718b-4da5-8bdb-3801d45ba3b6' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'jobs') OR (linkname = '')
-QUERYARRAY: SELECT link,coalesce(title_fr,title_fr)  as title_fr FROM main_menu WHERE parentid = '2';
-QUERY: select * from pageheaders where ident='&HEA-ABO/JOB';
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='f7ed88b8-718b-4da5-8bdb-3801d45ba3b6' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '7') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='f7ed88b8-718b-4da5-8bdb-3801d45ba3b6' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'jobs') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='f7ed88b8-718b-4da5-8bdb-3801d45ba3b6' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'jobs') OR (linkname = '')
-QUERY: select * from pageheaders where ident='&HEA-ABO/JOB';
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='f7ed88b8-718b-4da5-8bdb-3801d45ba3b6' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'logistics') OR (linkname = '')
-QUERYARRAY: SELECT * FROM logistics
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='f7ed88b8-718b-4da5-8bdb-3801d45ba3b6' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'newsletter') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='f7ed88b8-718b-4da5-8bdb-3801d45ba3b6' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'team') OR (linkname = '')
-QUERY: select * from pageheaders where ident='&HEA-ABO/EQU';
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='f7ed88b8-718b-4da5-8bdb-3801d45ba3b6' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'logistics') OR (linkname = '')
-QUERYARRAY: SELECT * FROM logistics
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='f7ed88b8-718b-4da5-8bdb-3801d45ba3b6' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'jobs') OR (linkname = '')
-QUERY: select * from pageheaders where ident='&HEA-ABO/JOB';
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='f7ed88b8-718b-4da5-8bdb-3801d45ba3b6' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'logistics') OR (linkname = '')
-QUERYARRAY: SELECT * FROM logistics
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='f7ed88b8-718b-4da5-8bdb-3801d45ba3b6' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '')
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: SELECT id,picture,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content FROM productnews ORDER BY newsdatetime DESC LIMIT 6
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 20;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '5') OR (linkname = '')
-QUERYARRAY: SELECT id,picture,linkname,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects ORDER BY publishdate
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='f7ed88b8-718b-4da5-8bdb-3801d45ba3b6' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '7') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='f7ed88b8-718b-4da5-8bdb-3801d45ba3b6' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'logistics') OR (linkname = '')
-QUERYARRAY: SELECT * FROM logistics
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='f7ed88b8-718b-4da5-8bdb-3801d45ba3b6' and oa.id_order is null and oa.code_document='DPS'
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '')
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: SELECT id,picture,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content FROM productnews ORDER BY newsdatetime DESC LIMIT 6
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 20;
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC LIMIT 6
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '')
-QUERY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM productnews WHERE isactive='1' and id='3';
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '')
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: SELECT id,picture,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content FROM productnews ORDER BY newsdatetime DESC LIMIT 6
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 20;
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC LIMIT 6
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='2378e7ec-2459-45fa-957c-712a3dbc2e43' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.51 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '')
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: SELECT id,picture,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content FROM productnews ORDER BY newsdatetime DESC LIMIT 6
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 20;
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC LIMIT 6
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_1 like Mac OS X) AppleWebKit/603.1.30 (KHTML, like Gecko) Version/10.0 Mobile/14E304 Safari/602.1' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '')
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: SELECT id,picture,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content FROM productnews ORDER BY newsdatetime DESC LIMIT 6
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 20;
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC LIMIT 6
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_1 like Mac OS X) AppleWebKit/603.1.30 (KHTML, like Gecko) Version/10.0 Mobile/14E304 Safari/602.1' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '4') OR (linkname = '')
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 20;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='d5380b89-4f25-4c9c-8088-2d60068b6df2' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_1 like Mac OS X) AppleWebKit/603.1.30 (KHTML, like Gecko) Version/10.0 Mobile/14E304 Safari/602.1' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '4') OR (linkname = '')
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 20;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='d5380b89-4f25-4c9c-8088-2d60068b6df2' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_1 like Mac OS X) AppleWebKit/603.1.30 (KHTML, like Gecko) Version/10.0 Mobile/14E304 Safari/602.1' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '4') OR (linkname = '')
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 20;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='d5380b89-4f25-4c9c-8088-2d60068b6df2' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_1 like Mac OS X) AppleWebKit/603.1.30 (KHTML, like Gecko) Version/10.0 Mobile/14E304 Safari/602.1' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '4') OR (linkname = '')
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 20;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='d5380b89-4f25-4c9c-8088-2d60068b6df2' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_1 like Mac OS X) AppleWebKit/603.1.30 (KHTML, like Gecko) Version/10.0 Mobile/14E304 Safari/602.1' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '4') OR (linkname = '')
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 20;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='d5380b89-4f25-4c9c-8088-2d60068b6df2' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_1 like Mac OS X) AppleWebKit/603.1.30 (KHTML, like Gecko) Version/10.0 Mobile/14E304 Safari/602.1' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '4') OR (linkname = '')
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 20;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='d5380b89-4f25-4c9c-8088-2d60068b6df2' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_1 like Mac OS X) AppleWebKit/603.1.30 (KHTML, like Gecko) Version/10.0 Mobile/14E304 Safari/602.1' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '4') OR (linkname = '')
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 20;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='d5380b89-4f25-4c9c-8088-2d60068b6df2' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_1 like Mac OS X) AppleWebKit/603.1.30 (KHTML, like Gecko) Version/10.0 Mobile/14E304 Safari/602.1' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '4') OR (linkname = '')
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 20;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='d5380b89-4f25-4c9c-8088-2d60068b6df2' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.51 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '')
-QUERY: select backgrounds from pageheaders where ident='&HEA-ACC'
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: SELECT id,picture,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content FROM productnews ORDER BY newsdatetime DESC LIMIT 6
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 20;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.51 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.51 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC LIMIT 6
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='d5380b89-4f25-4c9c-8088-2d60068b6df2' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.51 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '')
-QUERY: select backgrounds from pageheaders where ident='&HEA-ACC'
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: SELECT id,picture,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content FROM productnews ORDER BY newsdatetime DESC LIMIT 6
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 20;
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC LIMIT 6
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.51 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.51 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.51 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='d5380b89-4f25-4c9c-8088-2d60068b6df2' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.51 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '')
-QUERY: select backgrounds from pageheaders where ident='&HEA-ACC'
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: SELECT id,picture,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content FROM productnews ORDER BY newsdatetime DESC LIMIT 6
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 20;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.51 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.51 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC LIMIT 6
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '')
-QUERY: select backgrounds from pageheaders where ident='&HEA-ACC'
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: SELECT id,picture,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content FROM productnews ORDER BY newsdatetime DESC LIMIT 6
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 20;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC LIMIT 6
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '')
-QUERY: select backgrounds from pageheaders where ident='&HEA-ACC'
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 20;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC LIMIT 6
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '')
-QUERY: select backgrounds from pageheaders where ident='&HEA-ACC'
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 20;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC LIMIT 6
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='a2651ce8-5835-4185-9e71-581a6001b276' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '')
-QUERY: select backgrounds from pageheaders where ident='&HEA-ACC'
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 20;
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC LIMIT 6
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='a2651ce8-5835-4185-9e71-581a6001b276' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '')
-QUERY: select backgrounds from pageheaders where ident='&HEA-ACC'
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 20;
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC LIMIT 6
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='a2651ce8-5835-4185-9e71-581a6001b276' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '')
-QUERY: select backgrounds from pageheaders where ident='&HEA-ACC'
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 20;
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC LIMIT 6
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='a2651ce8-5835-4185-9e71-581a6001b276' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '')
-QUERY: select backgrounds from pageheaders where ident='&HEA-ACC'
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 20;
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC LIMIT 6
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='a2651ce8-5835-4185-9e71-581a6001b276' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '')
-QUERY: select backgrounds from pageheaders where ident='&HEA-ACC'
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 20;
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC LIMIT 6
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='a2651ce8-5835-4185-9e71-581a6001b276' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '')
-QUERY: select backgrounds from pageheaders where ident='&HEA-ACC'
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 20;
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC LIMIT 6
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='a2651ce8-5835-4185-9e71-581a6001b276' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '')
-QUERY: select backgrounds from pageheaders where ident='&HEA-ACC'
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 20;
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC LIMIT 6
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='a2651ce8-5835-4185-9e71-581a6001b276' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '')
-QUERY: select backgrounds from pageheaders where ident='&HEA-ACC'
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 20;
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC LIMIT 6
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='a2651ce8-5835-4185-9e71-581a6001b276' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '')
-QUERY: select backgrounds from pageheaders where ident='&HEA-ACC'
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 20;
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC LIMIT 6
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='a2651ce8-5835-4185-9e71-581a6001b276' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '')
-QUERY: select backgrounds from pageheaders where ident='&HEA-ACC'
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 20;
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC LIMIT 6
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='a2651ce8-5835-4185-9e71-581a6001b276' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '')
-QUERY: select backgrounds from pageheaders where ident='&HEA-ACC'
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 20;
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC LIMIT 6
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='a2651ce8-5835-4185-9e71-581a6001b276' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '')
-QUERY: select backgrounds from pageheaders where ident='&HEA-ACC'
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 20;
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC LIMIT 6
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='a2651ce8-5835-4185-9e71-581a6001b276' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '')
-QUERY: select backgrounds from pageheaders where ident='&HEA-ACC'
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 20;
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC LIMIT 6
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='a2651ce8-5835-4185-9e71-581a6001b276' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '')
-QUERY: select backgrounds from pageheaders where ident='&HEA-ACC'
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 20;
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC LIMIT 6
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='a2651ce8-5835-4185-9e71-581a6001b276' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '')
-QUERY: select backgrounds from pageheaders where ident='&HEA-ACC'
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 20;
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC LIMIT 6
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='a2651ce8-5835-4185-9e71-581a6001b276' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '')
-QUERY: select backgrounds from pageheaders where ident='&HEA-ACC'
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 20;
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC LIMIT 6
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='a2651ce8-5835-4185-9e71-581a6001b276' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '')
-QUERY: select backgrounds from pageheaders where ident='&HEA-ACC'
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 20;
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC LIMIT 6
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='a2651ce8-5835-4185-9e71-581a6001b276' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '')
-QUERY: select backgrounds from pageheaders where ident='&HEA-ACC'
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 20;
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC LIMIT 6
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='a2651ce8-5835-4185-9e71-581a6001b276' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '')
-QUERY: select backgrounds from pageheaders where ident='&HEA-ACC'
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 20;
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC LIMIT 6
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='a2651ce8-5835-4185-9e71-581a6001b276' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '')
-QUERY: select backgrounds from pageheaders where ident='&HEA-ACC'
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 20;
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC LIMIT 6
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='a2651ce8-5835-4185-9e71-581a6001b276' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '')
-QUERY: select backgrounds from pageheaders where ident='&HEA-ACC'
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 20;
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC LIMIT 6
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='a2651ce8-5835-4185-9e71-581a6001b276' and oa.id_order is null and oa.code_document='DPS'
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '')
-QUERY: select backgrounds from pageheaders where ident='&HEA-ACC'
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 20;
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC LIMIT 6
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='a2651ce8-5835-4185-9e71-581a6001b276' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '')
-QUERY: select backgrounds from pageheaders where ident='&HEA-ACC'
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 20;
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC LIMIT 6
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='a2651ce8-5835-4185-9e71-581a6001b276' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '')
-QUERY: select backgrounds from pageheaders where ident='&HEA-ACC'
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 20;
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC LIMIT 6
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='a2651ce8-5835-4185-9e71-581a6001b276' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '')
-QUERY: select backgrounds from pageheaders where ident='&HEA-ACC'
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 20;
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC LIMIT 6
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='a2651ce8-5835-4185-9e71-581a6001b276' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '')
-QUERY: select backgrounds from pageheaders where ident='&HEA-ACC'
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 20;
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC LIMIT 6
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='a2651ce8-5835-4185-9e71-581a6001b276' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '')
-QUERY: select backgrounds from pageheaders where ident='&HEA-ACC'
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 20;
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC LIMIT 6
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='a2651ce8-5835-4185-9e71-581a6001b276' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '')
-QUERY: select backgrounds from pageheaders where ident='&HEA-ACC'
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 20;
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC LIMIT 6
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='a2651ce8-5835-4185-9e71-581a6001b276' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '23') OR (linkname = '')
-QUERY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where id='23' and isactive='1';
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='a2651ce8-5835-4185-9e71-581a6001b276' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '')
-QUERY: select backgrounds from pageheaders where ident='&HEA-ACC'
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 20;
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC LIMIT 6
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='a2651ce8-5835-4185-9e71-581a6001b276' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '')
-QUERY: select backgrounds from pageheaders where ident='&HEA-ACC'
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 20;
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC LIMIT 6
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='a2651ce8-5835-4185-9e71-581a6001b276' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '')
-QUERY: select backgrounds from pageheaders where ident='&HEA-ACC'
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 20;
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC LIMIT 6
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='a2651ce8-5835-4185-9e71-581a6001b276' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '')
-QUERY: select backgrounds from pageheaders where ident='&HEA-ACC'
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 20;
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC LIMIT 6
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='a2651ce8-5835-4185-9e71-581a6001b276' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '')
-QUERY: select backgrounds from pageheaders where ident='&HEA-ACC'
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 20;
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC LIMIT 6
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='a2651ce8-5835-4185-9e71-581a6001b276' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '')
-QUERY: select backgrounds from pageheaders where ident='&HEA-ACC'
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 20;
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC LIMIT 6
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='a2651ce8-5835-4185-9e71-581a6001b276' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '')
-QUERY: select backgrounds from pageheaders where ident='&HEA-ACC'
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 20;
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC LIMIT 6
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='a2651ce8-5835-4185-9e71-581a6001b276' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '')
-QUERY: select backgrounds from pageheaders where ident='&HEA-ACC'
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 20;
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC LIMIT 6
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='a2651ce8-5835-4185-9e71-581a6001b276' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '')
-QUERY: select backgrounds from pageheaders where ident='&HEA-ACC'
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 20;
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC LIMIT 6
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='a2651ce8-5835-4185-9e71-581a6001b276' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '2') OR (linkname = '')
-QUERYARRAY: SELECT link,coalesce(title_fr,title_fr)  as title_fr FROM main_menu WHERE parentid = '2';
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='a2651ce8-5835-4185-9e71-581a6001b276' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '')
-QUERY: select backgrounds from pageheaders where ident='&HEA-ACC'
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 20;
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC LIMIT 6
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='a2651ce8-5835-4185-9e71-581a6001b276' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '2') OR (linkname = '')
-QUERYARRAY: SELECT link,coalesce(title_fr,title_fr)  as title_fr FROM main_menu WHERE parentid = '2';
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='a2651ce8-5835-4185-9e71-581a6001b276' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'team') OR (linkname = '')
-QUERYARRAY: SELECT link,coalesce(title_fr,title_fr)  as title_fr FROM main_menu WHERE parentid = '2';
-QUERY: select * from pageheaders where ident='&HEA-ABO/EQU';
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='a2651ce8-5835-4185-9e71-581a6001b276' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '7') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='a2651ce8-5835-4185-9e71-581a6001b276' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'jobs') OR (linkname = '')
-QUERY: select * from pageheaders where ident='&HEA-ABO/JOB';
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='a2651ce8-5835-4185-9e71-581a6001b276' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='a2651ce8-5835-4185-9e71-581a6001b276' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '')
-QUERY: select backgrounds from pageheaders where ident='&HEA-ACC'
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 20;
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC LIMIT 6
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '7') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='a2651ce8-5835-4185-9e71-581a6001b276' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'team') OR (linkname = '')
-QUERY: select * from pageheaders where ident='&HEA-ABO/EQU';
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='a2651ce8-5835-4185-9e71-581a6001b276' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '')
-QUERY: select backgrounds from pageheaders where ident='&HEA-ACC'
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 20;
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC LIMIT 6
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='a2651ce8-5835-4185-9e71-581a6001b276' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '4') OR (linkname = '')
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 20;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='a2651ce8-5835-4185-9e71-581a6001b276' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art is not null  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '7') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='a2651ce8-5835-4185-9e71-581a6001b276' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'jobs') OR (linkname = '')
-QUERY: select * from pageheaders where ident='&HEA-ABO/JOB';
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='a2651ce8-5835-4185-9e71-581a6001b276' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '2') OR (linkname = '')
-QUERYARRAY: SELECT link,coalesce(title_fr,title_fr)  as title_fr FROM main_menu WHERE parentid = '2';
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='a2651ce8-5835-4185-9e71-581a6001b276' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'terms') OR (linkname = '')
-QUERYARRAY: SELECT link,coalesce(title_fr,title_fr)  as title_fr FROM main_menu WHERE parentid = '2';
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='a2651ce8-5835-4185-9e71-581a6001b276' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'terms') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERYARRAY: SELECT link,coalesce(title_fr,title_fr)  as title_fr FROM main_menu WHERE parentid = '2';
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'terms') OR (linkname = '')
-QUERYARRAY: SELECT link,coalesce(title_fr,title_fr)  as title_fr FROM main_menu WHERE parentid = '2';
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'terms') OR (linkname = '')
-QUERYARRAY: SELECT link,coalesce(title_fr,title_fr)  as title_fr FROM main_menu WHERE parentid = '2';
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='a2651ce8-5835-4185-9e71-581a6001b276' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'terms') OR (linkname = '')
-QUERYARRAY: SELECT link,coalesce(title_fr,title_fr)  as title_fr FROM main_menu WHERE parentid = '2';
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='a2651ce8-5835-4185-9e71-581a6001b276' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'terms') OR (linkname = '')
-QUERY: select * from pageheaders where ident='&HEA-ABO/EQU';
-QUERYARRAY: select * from logistics order by id;
-QUERYARRAY: SELECT * FROM partners;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='a2651ce8-5835-4185-9e71-581a6001b276' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '4') OR (linkname = '')
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 20;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='a2651ce8-5835-4185-9e71-581a6001b276' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '2') OR (linkname = '')
-QUERY: select * from pageheaders where ident='&HEA-ABO/EQU';
-QUERYARRAY: select * from logistics order by id;
-QUERYARRAY: SELECT * FROM partners;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='a2651ce8-5835-4185-9e71-581a6001b276' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '2') OR (linkname = '')
-QUERY: select * from pageheaders where ident='&HEA-ABO/EQU';
-QUERYARRAY: select * from logistics order by id;
-QUERYARRAY: SELECT * FROM partners;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='a2651ce8-5835-4185-9e71-581a6001b276' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '2') OR (linkname = '')
-QUERY: select * from pageheaders where ident='&HEA-ABO/EQU';
-QUERYARRAY: select * from logistics order by id;
-QUERYARRAY: SELECT * FROM partners;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='a2651ce8-5835-4185-9e71-581a6001b276' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '2') OR (linkname = '')
-QUERY: select * from pageheaders where ident='&HEA-ABO/EQU';
-QUERYARRAY: select * from logistics order by id;
-QUERYARRAY: SELECT * FROM partners;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='a2651ce8-5835-4185-9e71-581a6001b276' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '2') OR (linkname = '')
-QUERY: select * from pageheaders where ident='&HEA-ABO/EQU';
-QUERYARRAY: select * from logistics order by id;
-QUERYARRAY: SELECT * FROM partners;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='a2651ce8-5835-4185-9e71-581a6001b276' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '2') OR (linkname = '')
-QUERY: select * from pageheaders where ident='&HEA-ABO/EQU';
-QUERYARRAY: select * from logistics order by id;
-QUERYARRAY: SELECT * FROM partners;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='a2651ce8-5835-4185-9e71-581a6001b276' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='a2651ce8-5835-4185-9e71-581a6001b276' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '2') OR (linkname = '')
-QUERY: select * from pageheaders where ident='&HEA-ABO/EQU';
-QUERYARRAY: select * from logistics order by id;
-QUERYARRAY: SELECT * FROM partners;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='a2651ce8-5835-4185-9e71-581a6001b276' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '2') OR (linkname = '')
-QUERY: select * from pageheaders where ident='&HEA-ABO/EQU';
-QUERYARRAY: select * from logistics order by id;
-QUERYARRAY: SELECT * FROM partners;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='a2651ce8-5835-4185-9e71-581a6001b276' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '2') OR (linkname = '')
-QUERY: select * from pageheaders where ident='&HEA-ABO/EQU';
-QUERYARRAY: select * from logistics order by id;
-QUERYARRAY: SELECT * FROM partners;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='a2651ce8-5835-4185-9e71-581a6001b276' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '2') OR (linkname = '')
-QUERY: select * from pageheaders where ident='&HEA-ABO/EQU';
-QUERYARRAY: select * from logistics order by id;
-QUERYARRAY: SELECT * FROM partners;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='a2651ce8-5835-4185-9e71-581a6001b276' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '2') OR (linkname = '')
-QUERY: select * from pageheaders where ident='&HEA-ABO/EQU';
-QUERYARRAY: select * from logistics order by id;
-QUERYARRAY: SELECT * FROM partners;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='a2651ce8-5835-4185-9e71-581a6001b276' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '2') OR (linkname = '')
-QUERY: select * from pageheaders where ident='&HEA-ABO/EQU';
-QUERYARRAY: select * from logistics order by id;
-QUERYARRAY: SELECT * FROM partners;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='a2651ce8-5835-4185-9e71-581a6001b276' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '7') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='a2651ce8-5835-4185-9e71-581a6001b276' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '')
-QUERY: select backgrounds from pageheaders where ident='&HEA-ACC'
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 20;
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC LIMIT 6
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='a2651ce8-5835-4185-9e71-581a6001b276' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '2') OR (linkname = '')
-QUERY: select * from pageheaders where ident='&HEA-ABO/EQU';
-QUERYARRAY: select * from logistics order by id;
-QUERYARRAY: SELECT * FROM partners;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='a2651ce8-5835-4185-9e71-581a6001b276' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '')
-QUERY: select backgrounds from pageheaders where ident='&HEA-ACC'
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 20;
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC LIMIT 6
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art is not null  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='62d3d7fb-2f95-46a5-8e9f-f88496f55f96' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='62d3d7fb-2f95-46a5-8e9f-f88496f55f96' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '2') OR (linkname = '')
-QUERY: select * from pageheaders where ident='&HEA-ABO/EQU';
-QUERYARRAY: select * from logistics order by id;
-QUERYARRAY: SELECT * FROM partners;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='62d3d7fb-2f95-46a5-8e9f-f88496f55f96' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'legal') OR (linkname = '')
-QUERY: select * from pageheaders where ident='&HEA-ABO/EQU';
-QUERYARRAY: select * from logistics order by id;
-QUERYARRAY: SELECT * FROM partners;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='62d3d7fb-2f95-46a5-8e9f-f88496f55f96' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'legal') OR (linkname = '')
-QUERY: select * from pageheaders where ident='&HEA-ABO/EQU';
-QUERYARRAY: select * from logistics order by id;
-QUERYARRAY: SELECT * FROM partners;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='62d3d7fb-2f95-46a5-8e9f-f88496f55f96' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'data_protection') OR (linkname = '')
-QUERY: select * from pageheaders where ident='&HEA-ABO/EQU';
-QUERYARRAY: select * from logistics order by id;
-QUERYARRAY: SELECT * FROM partners;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='62d3d7fb-2f95-46a5-8e9f-f88496f55f96' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'terms') OR (linkname = '')
-QUERY: select * from pageheaders where ident='&HEA-ABO/EQU';
-QUERYARRAY: select * from logistics order by id;
-QUERYARRAY: SELECT * FROM partners;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='62d3d7fb-2f95-46a5-8e9f-f88496f55f96' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '5') OR (linkname = '')
-QUERYARRAY: SELECT id,picture,linkname,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects ORDER BY publishdate
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='62d3d7fb-2f95-46a5-8e9f-f88496f55f96' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '4') OR (linkname = '')
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 20;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='62d3d7fb-2f95-46a5-8e9f-f88496f55f96' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art is not null  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '5') OR (linkname = '')
-QUERYARRAY: SELECT id,picture,linkname,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects ORDER BY publishdate
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='62d3d7fb-2f95-46a5-8e9f-f88496f55f96' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art is not null  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '2') OR (linkname = '')
-QUERY: select * from pageheaders where ident='&HEA-ABO/EQU';
-QUERYARRAY: select * from logistics order by id;
-QUERYARRAY: SELECT * FROM partners;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='62d3d7fb-2f95-46a5-8e9f-f88496f55f96' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '')
-QUERY: select backgrounds from pageheaders where ident='&HEA-ACC'
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 20;
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC LIMIT 6
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='62d3d7fb-2f95-46a5-8e9f-f88496f55f96' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '5') OR (linkname = '')
-QUERYARRAY: SELECT id,picture,linkname,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects ORDER BY publishdate
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='62d3d7fb-2f95-46a5-8e9f-f88496f55f96' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art is not null  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '5') OR (linkname = '')
-QUERYARRAY: SELECT id,picture,linkname,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects ORDER BY publishdate
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='62d3d7fb-2f95-46a5-8e9f-f88496f55f96' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '')
-QUERY: select backgrounds from pageheaders where ident='&HEA-ACC'
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 20;
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC LIMIT 6
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '4') OR (linkname = '')
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 20;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='30703f4f-2ddc-4e80-8bb5-38c20d57b16b' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '4') OR (linkname = '')
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 24;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='30703f4f-2ddc-4e80-8bb5-38c20d57b16b' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '2') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '2') OR (linkname = '')
-QUERY: select * from pageheaders where ident='&HEA-ABO/EQU';
-QUERYARRAY: select * from logistics order by id;
-QUERYARRAY: SELECT * FROM partners;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='30703f4f-2ddc-4e80-8bb5-38c20d57b16b' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '4') OR (linkname = '')
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 24;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='30703f4f-2ddc-4e80-8bb5-38c20d57b16b' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '5') OR (linkname = '')
-QUERYARRAY: SELECT id,picture,linkname,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects ORDER BY publishdate
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='30703f4f-2ddc-4e80-8bb5-38c20d57b16b' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '')
-QUERY: select backgrounds from pageheaders where ident='&HEA-ACC'
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 24;
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC LIMIT 6
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='30703f4f-2ddc-4e80-8bb5-38c20d57b16b' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '5') OR (linkname = '')
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC LIMIT 6
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='30703f4f-2ddc-4e80-8bb5-38c20d57b16b' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '22') OR (linkname = '')
-QUERY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where id='22' and isactive='1';
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='30703f4f-2ddc-4e80-8bb5-38c20d57b16b' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '5') OR (linkname = '')
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='30703f4f-2ddc-4e80-8bb5-38c20d57b16b' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '5') OR (linkname = '')
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='30703f4f-2ddc-4e80-8bb5-38c20d57b16b' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '5') OR (linkname = '')
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='30703f4f-2ddc-4e80-8bb5-38c20d57b16b' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '4') OR (linkname = '')
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 24;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='30703f4f-2ddc-4e80-8bb5-38c20d57b16b' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '5') OR (linkname = '')
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='30703f4f-2ddc-4e80-8bb5-38c20d57b16b' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art is not null  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '7') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='30703f4f-2ddc-4e80-8bb5-38c20d57b16b' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '2') OR (linkname = '')
-QUERY: select * from pageheaders where ident='&HEA-ABO/EQU';
-QUERYARRAY: select * from logistics order by id;
-QUERYARRAY: SELECT * FROM partners;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='30703f4f-2ddc-4e80-8bb5-38c20d57b16b' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '5') OR (linkname = '')
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='30703f4f-2ddc-4e80-8bb5-38c20d57b16b' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '')
-QUERY: select backgrounds from pageheaders where ident='&HEA-ACC'
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 24;
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC LIMIT 6
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='30703f4f-2ddc-4e80-8bb5-38c20d57b16b' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '')
-QUERY: select backgrounds from pageheaders where ident='&HEA-ACC'
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 24;
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC LIMIT 6
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='30703f4f-2ddc-4e80-8bb5-38c20d57b16b' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '')
-QUERY: select backgrounds from pageheaders where ident='&HEA-ACC'
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 24;
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC LIMIT 6
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='30703f4f-2ddc-4e80-8bb5-38c20d57b16b' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '5') OR (linkname = '')
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='30703f4f-2ddc-4e80-8bb5-38c20d57b16b' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '5') OR (linkname = '')
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='30703f4f-2ddc-4e80-8bb5-38c20d57b16b' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'legal') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='30703f4f-2ddc-4e80-8bb5-38c20d57b16b' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'data_protection') OR (linkname = '')
-QUERY: select * from pageheaders where ident='&HEA-ABO/EQU';
-QUERYARRAY: select * from logistics order by id;
-QUERYARRAY: SELECT * FROM partners;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='30703f4f-2ddc-4e80-8bb5-38c20d57b16b' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'terms') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='30703f4f-2ddc-4e80-8bb5-38c20d57b16b' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'data_protection') OR (linkname = '')
-QUERY: select * from pageheaders where ident='&HEA-ABO/EQU';
-QUERYARRAY: select * from logistics order by id;
-QUERYARRAY: SELECT * FROM partners;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='30703f4f-2ddc-4e80-8bb5-38c20d57b16b' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art is not null  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '4') OR (linkname = '')
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 24;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='30703f4f-2ddc-4e80-8bb5-38c20d57b16b' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '5') OR (linkname = '')
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='30703f4f-2ddc-4e80-8bb5-38c20d57b16b' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '7') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='30703f4f-2ddc-4e80-8bb5-38c20d57b16b' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'jobs') OR (linkname = '')
-QUERY: select * from pageheaders where ident='&HEA-ABO/JOB';
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='30703f4f-2ddc-4e80-8bb5-38c20d57b16b' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '5') OR (linkname = '')
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='30703f4f-2ddc-4e80-8bb5-38c20d57b16b' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '4') OR (linkname = '')
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 24;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='30703f4f-2ddc-4e80-8bb5-38c20d57b16b' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art is not null  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '2') OR (linkname = '')
-QUERY: select * from pageheaders where ident='&HEA-ABO/EQU';
-QUERYARRAY: select * from logistics order by id;
-QUERYARRAY: SELECT * FROM partners;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='30703f4f-2ddc-4e80-8bb5-38c20d57b16b' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '')
-QUERY: select backgrounds from pageheaders where ident='&HEA-ACC'
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 24;
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC LIMIT 6
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='30703f4f-2ddc-4e80-8bb5-38c20d57b16b' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '2') OR (linkname = '')
-QUERY: select * from pageheaders where ident='&HEA-ABO/EQU';
-QUERYARRAY: select * from logistics order by id;
-QUERYARRAY: SELECT * FROM partners;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='30703f4f-2ddc-4e80-8bb5-38c20d57b16b' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'data_protection') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='30703f4f-2ddc-4e80-8bb5-38c20d57b16b' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'data_protection') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='30703f4f-2ddc-4e80-8bb5-38c20d57b16b' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '2') OR (linkname = '')
-QUERY: select * from pageheaders where ident='&HEA-ABO/EQU';
-QUERYARRAY: select * from logistics order by id;
-QUERYARRAY: SELECT * FROM partners;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='30703f4f-2ddc-4e80-8bb5-38c20d57b16b' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '2') OR (linkname = '')
-QUERY: select * from pageheaders where ident='&HEA-ABO/EQU';
-QUERYARRAY: select * from logistics order by id;
-QUERYARRAY: SELECT * FROM partners;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='30703f4f-2ddc-4e80-8bb5-38c20d57b16b' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '2') OR (linkname = '')
-QUERY: select * from pageheaders where ident='&HEA-ABO/EQU';
-QUERYARRAY: select * from logistics order by id;
-QUERYARRAY: SELECT * FROM partners;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='30703f4f-2ddc-4e80-8bb5-38c20d57b16b' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '2') OR (linkname = '')
-QUERY: select * from pageheaders where ident='&HEA-ABO/EQU';
-QUERYARRAY: select coalesce(title_fr,title_fr) as title, coalesce(content_fr,content_fr)  as content,image from logistics where isactive=1 order by ident order by id;
-QUERYARRAY: SELECT * FROM partners;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='30703f4f-2ddc-4e80-8bb5-38c20d57b16b' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '2') OR (linkname = '')
-QUERY: select * from pageheaders where ident='&HEA-ABO/EQU';
-QUERYARRAY: select coalesce(title_fr,title_fr) as title, coalesce(content_fr,content_fr)  as content,image from logistics where isactive=1 order by ident order by id;
-QUERYARRAY: SELECT * FROM partners;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='30703f4f-2ddc-4e80-8bb5-38c20d57b16b' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '2') OR (linkname = '')
-QUERY: select * from pageheaders where ident='&HEA-ABO/EQU';
-QUERYARRAY: select coalesce(title_fr,title_fr) as title, coalesce(content_fr,content_fr)  as content,image from logistics where isactive=1 order by ident;
-QUERYARRAY: SELECT * FROM partners;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'shop') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'shop') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'shop') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'shop') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='30703f4f-2ddc-4e80-8bb5-38c20d57b16b' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '2') OR (linkname = '')
-QUERY: select * from pageheaders where ident='&HEA-ABO/EQU';
-QUERYARRAY: select coalesce(title_fr,title_fr) as title, coalesce(content_fr,content_fr)  as content,image from logistics where isactive=1 order by ident;
-QUERYARRAY: SELECT * FROM partners;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'shop') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'shop') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'shop') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'shop') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='30703f4f-2ddc-4e80-8bb5-38c20d57b16b' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'shop') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'shop') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='30703f4f-2ddc-4e80-8bb5-38c20d57b16b' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '2') OR (linkname = '')
-QUERY: select * from pageheaders where ident='&HEA-ABO/EQU';
-QUERYARRAY: select coalesce(title_fr,title_fr) as title, coalesce(content_fr,content_fr)  as content,image from logistics where isactive=1 order by ident;
-QUERYARRAY: SELECT * FROM partners;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='30703f4f-2ddc-4e80-8bb5-38c20d57b16b' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '2') OR (linkname = '')
-QUERY: select * from pageheaders where ident='&HEA-ABO/EQU';
-QUERYARRAY: select coalesce(title_fr,title_fr) as title, coalesce(content_fr,content_fr)  as content,image from logistics where isactive=1 order by ident;
-QUERYARRAY: SELECT * FROM partners;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='30703f4f-2ddc-4e80-8bb5-38c20d57b16b' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '2') OR (linkname = '')
-QUERY: select * from pageheaders where ident='&HEA-ABO/EQU';
-QUERYARRAY: select coalesce(title_fr,title_fr) as title, coalesce(content_fr,content_fr)  as content,image from logistics where isactive=1 order by ident;
-QUERYARRAY: SELECT * FROM partners;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='30703f4f-2ddc-4e80-8bb5-38c20d57b16b' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art is not null  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '4') OR (linkname = '')
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 24;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='30703f4f-2ddc-4e80-8bb5-38c20d57b16b' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '5') OR (linkname = '')
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='30703f4f-2ddc-4e80-8bb5-38c20d57b16b' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '7') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='30703f4f-2ddc-4e80-8bb5-38c20d57b16b' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art is not null  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '2') OR (linkname = '')
-QUERY: select * from pageheaders where ident='&HEA-ABO/EQU';
-QUERYARRAY: select coalesce(title_fr,title_fr) as title, coalesce(content_fr,content_fr)  as content,image from logistics where isactive=1 order by ident;
-QUERYARRAY: SELECT * FROM partners;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='30703f4f-2ddc-4e80-8bb5-38c20d57b16b' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '')
-QUERY: select backgrounds from pageheaders where ident='&HEA-ACC'
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 24;
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC LIMIT 6
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '7') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='30703f4f-2ddc-4e80-8bb5-38c20d57b16b' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '7') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='30703f4f-2ddc-4e80-8bb5-38c20d57b16b' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '7') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='30703f4f-2ddc-4e80-8bb5-38c20d57b16b' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '7') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='30703f4f-2ddc-4e80-8bb5-38c20d57b16b' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '7') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='30703f4f-2ddc-4e80-8bb5-38c20d57b16b' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '7') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='30703f4f-2ddc-4e80-8bb5-38c20d57b16b' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '7') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='30703f4f-2ddc-4e80-8bb5-38c20d57b16b' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '7') OR (linkname = '')
-QUERY: select * from pageheaders where ident='&HEA-ABO/JOB';
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='30703f4f-2ddc-4e80-8bb5-38c20d57b16b' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '5') OR (linkname = '')
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='30703f4f-2ddc-4e80-8bb5-38c20d57b16b' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '4') OR (linkname = '')
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 24;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='30703f4f-2ddc-4e80-8bb5-38c20d57b16b' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art is not null  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '2') OR (linkname = '')
-QUERY: select * from pageheaders where ident='&HEA-ABO/EQU';
-QUERYARRAY: select coalesce(title_fr,title_fr) as title, coalesce(content_fr,content_fr)  as content,image from logistics where isactive=1 order by ident;
-QUERYARRAY: SELECT * FROM partners;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='30703f4f-2ddc-4e80-8bb5-38c20d57b16b' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '')
-QUERY: select backgrounds from pageheaders where ident='&HEA-ACC'
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 24;
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC LIMIT 6
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='30703f4f-2ddc-4e80-8bb5-38c20d57b16b' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '7') OR (linkname = '')
-QUERY: select * from pageheaders where ident='&HEA-ABO/JOB';
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='30703f4f-2ddc-4e80-8bb5-38c20d57b16b' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '2') OR (linkname = '')
-QUERY: select * from pageheaders where ident='&HEA-ABO/EQU';
-QUERYARRAY: select coalesce(title_fr,title_fr) as title, coalesce(content_fr,content_fr)  as content,image from logistics where isactive=1 order by ident;
-QUERYARRAY: SELECT * FROM partners;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='30703f4f-2ddc-4e80-8bb5-38c20d57b16b' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '2') OR (linkname = '')
-QUERY: select * from pageheaders where ident='&HEA-ABO/EQU';
-QUERYARRAY: select coalesce(title_fr,title_fr) as title, coalesce(content_fr,content_fr)  as content,image from logistics where isactive=1 order by ident;
-QUERYARRAY: SELECT * FROM partners;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='30703f4f-2ddc-4e80-8bb5-38c20d57b16b' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '')
-QUERY: select backgrounds from pageheaders where ident='&HEA-ACC'
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 24;
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC LIMIT 6
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art is not null  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='821f0a94-f34e-4e03-9d3a-a5007f081c44' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='821f0a94-f34e-4e03-9d3a-a5007f081c44' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select ax.article from article_search ax join articles ar on (ar.article=ax.article) join article_groups ag on (ar.article_group=ag.article) where ar.isactive=1 and ag.isactive=1 and  ax.search_fr LIKE '%brouette%'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink,fichebim,certificat,formulaire,soumission,solution from article_groups where article in (select article_group from articles where isactive=1 and article in ('SBK-C/B-090','SBK-C/C-090') group by article_group) order by titre,article;
-QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro,ar.doc_soumis,ar.doc_solu,ar.doc_form from articles ar left join article_prices ap on (ar.article = ap.article)
-    where ar.article in ('SBK-C/B-090','SBK-C/C-090') group by ar.article_group,ar.article,ar.id,ap.prix_net order by ar.article_group,ar.article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C6';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C6'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art='C6'  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='821f0a94-f34e-4e03-9d3a-a5007f081c44' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='821f0a94-f34e-4e03-9d3a-a5007f081c44' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A4') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='A4';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A4'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art='A4'  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='821f0a94-f34e-4e03-9d3a-a5007f081c44' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='821f0a94-f34e-4e03-9d3a-a5007f081c44' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A4') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='A4';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='A4' and gp_art='A401';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A401'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A4'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A4'  and ag.gp_art='A401' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='821f0a94-f34e-4e03-9d3a-a5007f081c44' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='A401' and famille_art='A4'  and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A4' and gp_art='A401' and isactive=1) group by id,article_group,article,ap.prix_net order by article_group,article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='821f0a94-f34e-4e03-9d3a-a5007f081c44' and oa.id_order is null and oa.code_document='DPS'
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A4') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='A4';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='A4' and gp_art='A401';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A401'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A4'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A4'  and ag.gp_art='A401' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='821f0a94-f34e-4e03-9d3a-a5007f081c44' and oa.id_order is null and oa.code_document='DPS'
-emontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='A401' and famille_art='A4'  and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A4' and gp_art='A401' and isactive=1) group by id,article_group,article,ap.prix_net order by article_group,article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='821f0a94-f34e-4e03-9d3a-a5007f081c44' and oa.id_order is null and oa.code_document='DPS'
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A4') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='A4';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='A4' and gp_art='A425';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A425'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A4'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A4'  and ag.gp_art='A425' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='821f0a94-f34e-4e03-9d3a-a5007f081c44' and oa.id_order is null and oa.code_document='DPS'
-emontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='A425' and famille_art='A4'  and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A4' and gp_art='A425' and isactive=1) group by id,article_group,article,ap.prix_net order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='821f0a94-f34e-4e03-9d3a-a5007f081c44' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C3') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C3';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C3'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art='C3'  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='821f0a94-f34e-4e03-9d3a-a5007f081c44' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='821f0a94-f34e-4e03-9d3a-a5007f081c44' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C3') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C3';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C3' and gp_art='C307';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C307'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C3'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C3'  and ag.gp_art='C307' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='821f0a94-f34e-4e03-9d3a-a5007f081c44' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C307' and famille_art='C3'  and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C3' and gp_art='C307' and isactive=1) group by id,article_group,article,ap.prix_net order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='821f0a94-f34e-4e03-9d3a-a5007f081c44' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C3') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C3';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C3' and gp_art='C306';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C306'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C3'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C3'  and ag.gp_art='C306' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C306' and famille_art='C3'  and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C3' and gp_art='C306' and isactive=1) group by id,article_group,article,ap.prix_net order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='821f0a94-f34e-4e03-9d3a-a5007f081c44' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C3') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C3';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C3' and gp_art='C304';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C304'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C3'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C3'  and ag.gp_art='C304' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C304' and famille_art='C3'  and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C3' and gp_art='C304' and isactive=1) group by id,article_group,article,ap.prix_net order by article_group,article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C3') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C3';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C3' and gp_art='C302';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C302'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C3'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C3'  and ag.gp_art='C302' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='821f0a94-f34e-4e03-9d3a-a5007f081c44' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C302' and famille_art='C3'  and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C3' and gp_art='C302' and isactive=1) group by id,article_group,article,ap.prix_net order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='821f0a94-f34e-4e03-9d3a-a5007f081c44' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C3') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C3';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C3' and gp_art='C301';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C301'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C3'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C3'  and ag.gp_art='C301' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C301' and famille_art='C3'  and isactive=1 order by titre,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='821f0a94-f34e-4e03-9d3a-a5007f081c44' and oa.id_order is null and oa.code_document='DPS'
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C3' and gp_art='C301' and isactive=1) group by id,article_group,article,ap.prix_net order by article_group,article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C3') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C3';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C3' and gp_art='C300';
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='821f0a94-f34e-4e03-9d3a-a5007f081c44' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C300'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C3'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C3'  and ag.gp_art='C300' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='821f0a94-f34e-4e03-9d3a-a5007f081c44' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C300' and famille_art='C3'  and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C3' and gp_art='C300' and isactive=1) group by id,article_group,article,ap.prix_net order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='821f0a94-f34e-4e03-9d3a-a5007f081c44' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C2';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C2'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art='C2'  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='821f0a94-f34e-4e03-9d3a-a5007f081c44' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='821f0a94-f34e-4e03-9d3a-a5007f081c44' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C2';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C2' and gp_art='C201';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C201'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2'  and ag.gp_art='C201' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='821f0a94-f34e-4e03-9d3a-a5007f081c44' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C201' and famille_art='C2'  and isactive=1 order by titre,article;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C201' and isactive=1) group by id,article_group,article,ap.prix_net order by article_group,article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='821f0a94-f34e-4e03-9d3a-a5007f081c44' and oa.id_order is null and oa.code_document='DPS'
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C2';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C2' and gp_art='C202';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C202'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2'  and ag.gp_art='C202' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='821f0a94-f34e-4e03-9d3a-a5007f081c44' and oa.id_order is null and oa.code_document='DPS'
-emontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C202' and famille_art='C2'  and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C202' and isactive=1) group by id,article_group,article,ap.prix_net order by article_group,article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='821f0a94-f34e-4e03-9d3a-a5007f081c44' and oa.id_order is null and oa.code_document='DPS'
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C2';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C2' and gp_art='C203';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C203'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C2'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2'  and ag.gp_art='C203' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='821f0a94-f34e-4e03-9d3a-a5007f081c44' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C203' and famille_art='C2'  and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C203' and isactive=1) group by id,article_group,article,ap.prix_net order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='821f0a94-f34e-4e03-9d3a-a5007f081c44' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C2';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C2' and gp_art='C205';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C205'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C2'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2'  and ag.gp_art='C205' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='821f0a94-f34e-4e03-9d3a-a5007f081c44' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C205' and famille_art='C2'  and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C205' and isactive=1) group by id,article_group,article,ap.prix_net order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='821f0a94-f34e-4e03-9d3a-a5007f081c44' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C2';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C2' and gp_art='C207';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C207'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C2'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2'  and ag.gp_art='C207' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='821f0a94-f34e-4e03-9d3a-a5007f081c44' and oa.id_order is null and oa.code_document='DPS'
-emontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C207' and famille_art='C2'  and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C207' and isactive=1) group by id,article_group,article,ap.prix_net order by article_group,article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C2';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C2' and gp_art='C208';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='821f0a94-f34e-4e03-9d3a-a5007f081c44' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C208'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C2'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2'  and ag.gp_art='C208' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='821f0a94-f34e-4e03-9d3a-a5007f081c44' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C208' and famille_art='C2'  and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C208' and isactive=1) group by id,article_group,article,ap.prix_net order by article_group,article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='821f0a94-f34e-4e03-9d3a-a5007f081c44' and oa.id_order is null and oa.code_document='DPS'
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C2';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C2' and gp_art='C204';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C204'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C2'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2'  and ag.gp_art='C204' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='821f0a94-f34e-4e03-9d3a-a5007f081c44' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C204' and famille_art='C2'  and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C204' and isactive=1) group by id,article_group,article,ap.prix_net order by article_group,article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='821f0a94-f34e-4e03-9d3a-a5007f081c44' and oa.id_order is null and oa.code_document='DPS'
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C2';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C2' and gp_art='C205';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C205'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C2'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2'  and ag.gp_art='C205' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C205' and famille_art='C2'  and isactive=1 order by titre,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='821f0a94-f34e-4e03-9d3a-a5007f081c44' and oa.id_order is null and oa.code_document='DPS'
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C205' and isactive=1) group by id,article_group,article,ap.prix_net order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='821f0a94-f34e-4e03-9d3a-a5007f081c44' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C2';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C2' and gp_art='C204';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C204'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C2'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2'  and ag.gp_art='C204' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='821f0a94-f34e-4e03-9d3a-a5007f081c44' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C204' and famille_art='C2'  and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C204' and isactive=1) group by id,article_group,article,ap.prix_net order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='821f0a94-f34e-4e03-9d3a-a5007f081c44' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C2';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C2' and gp_art='C202';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C202'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2'  and ag.gp_art='C202' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C202' and famille_art='C2'  and isactive=1 order by titre,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='821f0a94-f34e-4e03-9d3a-a5007f081c44' and oa.id_order is null and oa.code_document='DPS'
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C202' and isactive=1) group by id,article_group,article,ap.prix_net order by article_group,article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='821f0a94-f34e-4e03-9d3a-a5007f081c44' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C2';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C2' and gp_art='C202';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C202'
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '')
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2'  and ag.gp_art='C202' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C2';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C2' and gp_art='C203';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C203'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C2'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2'  and ag.gp_art='C203' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='821f0a94-f34e-4e03-9d3a-a5007f081c44' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C203' and famille_art='C2'  and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C203' and isactive=1) group by id,article_group,article,ap.prix_net order by article_group,article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C2';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C2' and gp_art='C203';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='821f0a94-f34e-4e03-9d3a-a5007f081c44' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C2';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C2' and gp_art='C203';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C203'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C2'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2'  and ag.gp_art='C203' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='821f0a94-f34e-4e03-9d3a-a5007f081c44' and oa.id_order is null and oa.code_document='DPS'
-emontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C203' and famille_art='C2'  and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C203' and isactive=1) group by id,article_group,article,ap.prix_net order by article_group,article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C2';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C2' and gp_art='C203';
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='821f0a94-f34e-4e03-9d3a-a5007f081c44' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C2';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C2' and gp_art='C203';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C203'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C2'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2'  and ag.gp_art='C203' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='821f0a94-f34e-4e03-9d3a-a5007f081c44' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C203' and famille_art='C2'  and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C203' and isactive=1) group by id,article_group,article,ap.prix_net order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='821f0a94-f34e-4e03-9d3a-a5007f081c44' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '4') OR (linkname = '')
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 24;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='821f0a94-f34e-4e03-9d3a-a5007f081c44' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art is not null  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='821f0a94-f34e-4e03-9d3a-a5007f081c44' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='821f0a94-f34e-4e03-9d3a-a5007f081c44' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'D1') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='D1';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-D1'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art='D1'  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='821f0a94-f34e-4e03-9d3a-a5007f081c44' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='821f0a94-f34e-4e03-9d3a-a5007f081c44' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'D1') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='D1';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='D1' and gp_art='D118';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-D118'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-D1'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='D1'  and ag.gp_art='D118' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='D118' and famille_art='D1'  and isactive=1 order by titre,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='821f0a94-f34e-4e03-9d3a-a5007f081c44' and oa.id_order is null and oa.code_document='DPS'
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='D1' and gp_art='D118' and isactive=1) group by id,article_group,article,ap.prix_net order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='821f0a94-f34e-4e03-9d3a-a5007f081c44' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '')
-QUERY: select backgrounds from pageheaders where ident='&HEA-ACC'
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 24;
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC LIMIT 6
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '7') OR (linkname = '')
-QUERY: select * from pageheaders where ident='&HEA-ABO/JOB';
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='11905d9e-57c4-4d20-ac9c-907981b13343' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='11905d9e-57c4-4d20-ac9c-907981b13343' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'jobs') OR (linkname = '')
-QUERY: select * from pageheaders where ident='&HEA-ABO/JOB';
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='11905d9e-57c4-4d20-ac9c-907981b13343' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'jobs') OR (linkname = '')
-QUERY: select * from pageheaders where ident='&HEA-ABO/JOB';
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='11905d9e-57c4-4d20-ac9c-907981b13343' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'jobs') OR (linkname = '')
-QUERY: select * from pageheaders where ident='&HEA-ABO/JOB';
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='11905d9e-57c4-4d20-ac9c-907981b13343' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'jobs') OR (linkname = '')
-QUERY: select * from pageheaders where ident='&HEA-ABO/JOB';
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='11905d9e-57c4-4d20-ac9c-907981b13343' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '')
-QUERY: select backgrounds from pageheaders where ident='&HEA-ACC'
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 24;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '4') OR (linkname = '')
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 24;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art is not null  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='88c237e5-2810-4561-b76f-f9776c2a45e0' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art is not null  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='88c237e5-2810-4561-b76f-f9776c2a45e0' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='88c237e5-2810-4561-b76f-f9776c2a45e0' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C7') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C7';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C7'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art='C7'  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='88c237e5-2810-4561-b76f-f9776c2a45e0' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='88c237e5-2810-4561-b76f-f9776c2a45e0' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C1';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C1'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art='C1'  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='88c237e5-2810-4561-b76f-f9776c2a45e0' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C1';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C1' and gp_art='C131';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C131'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C1'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1'  and ag.gp_art='C131' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='88c237e5-2810-4561-b76f-f9776c2a45e0' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C131' and famille_art='C1'  and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C131' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='88c237e5-2810-4561-b76f-f9776c2a45e0' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '127.0.0.1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '')
-QUERY: select backgrounds from pageheaders where ident='&HEA-ACC'
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (ag.article = ad.article_group) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 24;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '')
-QUERY: select backgrounds from pageheaders where ident='&HEA-ACC'
-QUERYARRAY: SELECT id,coalesce(title_fr,title_fr) as title,replace(coalesce(content_fr,content_fr),'
-','<br/>') as content,picture FROM website_news WHERE isactive='1' order by id;
-QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, coalesce(ag.titre_fr, ag.titre_fr) as titre, coalesce(ag.description_fr, ag.description_fr) as description, ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image,' ','%20') as image, ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ag.imgversion, ag.fichebim , ag.certificat, ag.formulaire, ag.soumission, ag.solution from article_groups ag join ( select article as article_group, id from ( select ag2.article, ar2.id from articles ar2 join article_groups ag2 on (ar2.article_group = ag2.article) where ag2.isactive = 1 and ag2.famille_art not LIKE 'W%' order by ar2.id DESC) ar3 group by article, id order by id DESC ) ad on (ag.article = ad.article_group) where ag.isactive = 1 group by ag.id order by ag.id DESC, ag.article LIMIT 24;
-QUERYARRAY: SELECT id,picture,coalesce(content_fr,content_fr) as content,coalesce(title_fr,title_fr) as title FROM website_projects where isactive='1' ORDER BY publishdate DESC LIMIT 6
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art is not null  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C9';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C9'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art='C9'  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C9';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C9' and gp_art='C900';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C900'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C9'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9'  and ag.gp_art='C900' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C900' and famille_art='C9'  and isactive=1 order by titre,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C9' and gp_art='C900' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C9';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C9'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art='C9'  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C8') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C8';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C8'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art='C8'  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C8') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C8';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C8' and gp_art='C804';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C804'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C8'  and ag.gp_art='C804' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C804' and famille_art='C8'  and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C8' and gp_art='C804' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C6';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C6'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art='C6'  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C6';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C6'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art='C6'  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C1';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C1'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art='C1'  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'B2') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='B2';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-B2'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art='B2'  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A5') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='A5';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A5'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art='A5'  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C3') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C3';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C3'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art='C3'  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C3') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C3';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C3' and gp_art='C307';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C307'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C3'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C3'  and ag.gp_art='C307' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C307' and famille_art='C3'  and isactive=1 order by titre,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C3' and gp_art='C307' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C3') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C3';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C3' and gp_art='C310';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C310'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C3'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C3'  and ag.gp_art='C310' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C310' and famille_art='C3'  and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C3' and gp_art='C310' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C2';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C2'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art='C2'  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C2';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C2'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art='C2'  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C1';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C1'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art='C1'  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C1';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C1'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art='C1'  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C1';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C1' and gp_art='C100';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C100'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1'  and ag.gp_art='C100' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C100' and famille_art='C1'  and isactive=1 order by titre,article;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C100' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C1';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C1' and gp_art='C102';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C102'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C1'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1'  and ag.gp_art='C102' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C102' and famille_art='C1'  and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C102' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A5') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='A5';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A5'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art='A5'  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A5') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='A5';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A5'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art='A5'  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A4') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='A4';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A4'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art='A4'  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A5') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='A5';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A5'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art='A5'  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A5') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='A5';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A5'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art='A5'  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A5') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='A5';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='A5' and gp_art='A500';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A500'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A5'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A5'  and ag.gp_art='A500' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='A500' and famille_art='A5'  and isactive=1 order by titre,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A5' and gp_art='A500' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A5') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='A5';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='A5' and gp_art='A501';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A501'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A5'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A5'  and ag.gp_art='A501' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='A501' and famille_art='A5'  and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A5' and gp_art='A501' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A5') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='A5';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='A5' and gp_art='A502';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A502'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A5'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A5'  and ag.gp_art='A502' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='A502' and famille_art='A5'  and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A5' and gp_art='A502' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A5') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='A5';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='A5' and gp_art='A509';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A509'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A5'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A5'  and ag.gp_art='A509' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='A509' and famille_art='A5'  and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A5' and gp_art='A509' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A5') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='A5';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='A5' and gp_art='A510';
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A510'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A5'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A5'  and ag.gp_art='A510' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='A510' and famille_art='A5'  and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A5' and gp_art='A510' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A5') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='A5';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='A5' and gp_art='A512';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A512'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A5'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A5'  and ag.gp_art='A512' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='A512' and famille_art='A5'  and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A5' and gp_art='A512' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'B2') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='B2';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-B2'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art='B2'  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'B2') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='B2';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='B2' and gp_art='B217';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-B217'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-B2'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='B2'  and ag.gp_art='B217' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='B217' and famille_art='B2'  and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='B2' and gp_art='B217' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'B2') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='B2';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='B2' and gp_art='B202';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-B202'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-B2'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='B2'  and ag.gp_art='B202' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='B202' and famille_art='B2'  and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='B2' and gp_art='B202' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'B2') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='B2';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='B2' and gp_art='B201';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-B201'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-B2'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='B2'  and ag.gp_art='B201' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='B201' and famille_art='B2'  and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='B2' and gp_art='B201' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A5') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='A5';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A5'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art='A5'  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C1';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C1'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art='C1'  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C1';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C1' and gp_art='C105';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C105'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1'  and ag.gp_art='C105' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C105' and famille_art='C1'  and isactive=1 order by titre,article;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C105' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C1';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C1' and gp_art='C106';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C106'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1'  and ag.gp_art='C106' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C106' and famille_art='C1'  and isactive=1 order by titre,article;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C106' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C1';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C1' and gp_art='C108';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C108'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C1'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1'  and ag.gp_art='C108' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C108' and famille_art='C1'  and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C108' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C1';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C1' and gp_art='C102';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C102'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C1'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1'  and ag.gp_art='C102' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C102' and famille_art='C1'  and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C102' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C1';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C1' and gp_art='C101';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C101'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C1'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1'  and ag.gp_art='C101' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C101' and famille_art='C1'  and isactive=1 order by titre,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C101' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C1';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C1' and gp_art='C100';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C100'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1'  and ag.gp_art='C100' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C100' and famille_art='C1'  and isactive=1 order by titre,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C100' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'B2') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='B2';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-B2'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art='B2'  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim,certificat,formulaire,soumission,solution from article_groups where article='&HIK-BOULONNEUSE-A' and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='B2' and gp_art='B200' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim,certificat,formulaire,soumission,solution from article_groups where article='&HIK-COMBO-A' and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='B2' and gp_art='B200' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'B2') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='B2';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='B2' and gp_art='B208';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-B208'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-B2'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='B2'  and ag.gp_art='B208' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='B208' and famille_art='B2'  and isactive=1 order by titre,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='B2' and gp_art='B208' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'B2') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='B2';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='B2' and gp_art='B222';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-B222'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-B2'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='B2'  and ag.gp_art='B222' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='B222' and famille_art='B2'  and isactive=1 order by titre,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='B2' and gp_art='B222' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'B2') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='B2';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='B2' and gp_art='B222';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-B222'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-B2'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='B2'  and ag.gp_art='B222' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='B222' and famille_art='B2'  and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='B2' and gp_art='B222' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'B2') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='B2';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='B2' and gp_art='B222';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-B222'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-B2'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='B2'  and ag.gp_art='B222' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='B222' and famille_art='B2'  and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='B2' and gp_art='B222' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'B2') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='B2';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='B2' and gp_art='B222';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-B222'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-B2'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='B2'  and ag.gp_art='B222' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='B222' and famille_art='B2'  and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='B2' and gp_art='B222' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'B2') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='B2';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='B2' and gp_art='B222';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-B222'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-B2'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='B2'  and ag.gp_art='B222' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='B222' and famille_art='B2'  and isactive=1 order by titre,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='B2' and gp_art='B222' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'B2') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='B2';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='B2' and gp_art='B222';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-B222'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-B2'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='B2'  and ag.gp_art='B222' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='B222' and famille_art='B2'  and isactive=1 order by titre,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='B2' and gp_art='B222' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'B2') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='B2';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='B2' and gp_art='B201';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-B201'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-B2'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='B2'  and ag.gp_art='B201' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='B201' and famille_art='B2'  and isactive=1 order by titre,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='B2' and gp_art='B201' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'B2') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='B2';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='B2' and gp_art='B200';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-B200'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-B2'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='B2'  and ag.gp_art='B200' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='B200' and famille_art='B2'  and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='B2' and gp_art='B200' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'B2') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='B2';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='B2' and gp_art='B206';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-B206'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-B2'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='B2'  and ag.gp_art='B206' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='B206' and famille_art='B2'  and isactive=1 order by titre,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='B2' and gp_art='B206' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'B2') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='B2';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='B2' and gp_art='B208';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-B208'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-B2'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='B2'  and ag.gp_art='B208' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='B208' and famille_art='B2'  and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='B2' and gp_art='B208' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'B2') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='B2';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='B2' and gp_art='B217';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-B217'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-B2'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='B2'  and ag.gp_art='B217' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='B217' and famille_art='B2'  and isactive=1 order by titre,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='B2' and gp_art='B217' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'B2') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='B2';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='B2' and gp_art='B200';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-B200'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-B2'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='B2'  and ag.gp_art='B200' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='B200' and famille_art='B2'  and isactive=1 order by titre,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='B2' and gp_art='B200' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'B2') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='B2';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-B2'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art='B2'  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A5') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='A5';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A5'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art='A5'  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A5') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='A5';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='A5' and gp_art='A500';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A500'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A5'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A5'  and ag.gp_art='A500' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='A500' and famille_art='A5'  and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A5' and gp_art='A500' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A5') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='A5';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='A5' and gp_art='A501';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A501'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A5'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A5'  and ag.gp_art='A501' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='A501' and famille_art='A5'  and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A5' and gp_art='A501' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A5') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='A5';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='A5' and gp_art='A502';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A502'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A5'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A5'  and ag.gp_art='A502' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-emontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='A502' and famille_art='A5'  and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A5' and gp_art='A502' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A5') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='A5';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='A5' and gp_art='A510';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A510'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A5'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A5'  and ag.gp_art='A510' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='A510' and famille_art='A5'  and isactive=1 order by titre,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A5' and gp_art='A510' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'B2') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='B2';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-B2'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art='B2'  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'B2') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='B2';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-B2'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art='B2'  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'B2') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='B2';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='B2' and gp_art='B200';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-B200'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-B2'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='B2'  and ag.gp_art='B200' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='B200' and famille_art='B2'  and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='B2' and gp_art='B200' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'B2') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='B2';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='B2' and gp_art='B201';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-B201'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-B2'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='B2'  and ag.gp_art='B201' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-emontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='B201' and famille_art='B2'  and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='B2' and gp_art='B201' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C5';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C5'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art='C5'  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C5';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C5' and gp_art='C505';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C505'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C5'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5'  and ag.gp_art='C505' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C505' and famille_art='C5'  and isactive=1 order by titre,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C5' and gp_art='C505' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C5';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C5' and gp_art='C513';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C513'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C5'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5'  and ag.gp_art='C513' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C513' and famille_art='C5'  and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C5' and gp_art='C513' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C5';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C5' and gp_art='C526';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C526'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C5'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5'  and ag.gp_art='C526' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C526' and famille_art='C5'  and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C5' and gp_art='C526' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C4';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C4'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art='C4'  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C4';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C4'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art='C4'  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C4';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C4'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art='C4'  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C4';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C4' and gp_art='C401';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C401'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C4'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4'  and ag.gp_art='C401' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C401' and famille_art='C4'  and isactive=1 order by titre,article;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C4' and gp_art='C401' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C4';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C4' and gp_art='C402';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C402'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C4'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4'  and ag.gp_art='C402' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C402' and famille_art='C4'  and isactive=1 order by titre,article;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C4' and gp_art='C402' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C4';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C4' and gp_art='C403';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C403'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C4'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4'  and ag.gp_art='C403' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C403' and famille_art='C4'  and isactive=1 order by titre,article;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C4' and gp_art='C403' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C4';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C4' and gp_art='C407';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C407'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C4'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4'  and ag.gp_art='C407' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C407' and famille_art='C4'  and isactive=1 order by titre,article;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C4' and gp_art='C407' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C4';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C4' and gp_art='C409';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C409'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C4'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4'  and ag.gp_art='C409' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C409' and famille_art='C4'  and isactive=1 order by titre,article;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C4' and gp_art='C409' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C5';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C5'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art='C5'  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C5';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C5' and gp_art='C500';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C500'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C5'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5'  and ag.gp_art='C500' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C500' and famille_art='C5'  and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C5' and gp_art='C500' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C5';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C5' and gp_art='C500';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C500'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C5'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5'  and ag.gp_art='C500' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C500' and famille_art='C5'  and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C5' and gp_art='C500' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C5';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C5' and gp_art='C500';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C500'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C5'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5'  and ag.gp_art='C500' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C500' and famille_art='C5'  and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C5' and gp_art='C500' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C5';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C5' and gp_art='C505';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C505'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C5'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5'  and ag.gp_art='C505' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C505' and famille_art='C5'  and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C5' and gp_art='C505' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C5';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C5' and gp_art='C513';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C513'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C5'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5'  and ag.gp_art='C513' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C513' and famille_art='C5'  and isactive=1 order by titre,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C5' and gp_art='C513' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C5';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C5' and gp_art='C514';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C514'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C5'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5'  and ag.gp_art='C514' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C514' and famille_art='C5'  and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C5' and gp_art='C514' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C5';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C5' and gp_art='C519';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C519'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C5'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5'  and ag.gp_art='C519' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C519' and famille_art='C5'  and isactive=1 order by titre,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C5' and gp_art='C519' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C5';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C5' and gp_art='C520';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C520'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C5'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5'  and ag.gp_art='C520' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C520' and famille_art='C5'  and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C5' and gp_art='C520' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C5';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C5' and gp_art='C521';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C521'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C5'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5'  and ag.gp_art='C521' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C521' and famille_art='C5'  and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C5' and gp_art='C521' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C5';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C5' and gp_art='C500';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C500'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C5'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5'  and ag.gp_art='C500' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C500' and famille_art='C5'  and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C5' and gp_art='C500' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C2';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C2'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art='C2'  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C2';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C2' and gp_art='C200';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C200'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2'  and ag.gp_art='C200' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C200' and famille_art='C2'  and isactive=1 order by titre,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C200' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C2';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C2' and gp_art='C201';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C201'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2'  and ag.gp_art='C201' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C201' and famille_art='C2'  and isactive=1 order by titre,article;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C201' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C2';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C2' and gp_art='C203';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C203'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C2'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2'  and ag.gp_art='C203' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C203' and famille_art='C2'  and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C203' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C2';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C2' and gp_art='C204';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C204'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C2'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2'  and ag.gp_art='C204' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C204' and famille_art='C2'  and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C204' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C2';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C2' and gp_art='C207';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C207'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C2'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2'  and ag.gp_art='C207' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C207' and famille_art='C2'  and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C207' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C2';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C2' and gp_art='C206';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C206'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C2'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2'  and ag.gp_art='C206' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C206' and famille_art='C2'  and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C206' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C2';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C2' and gp_art='C204';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C204'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C2'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2'  and ag.gp_art='C204' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C204' and famille_art='C2'  and isactive=1 order by titre,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C204' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C2';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C2' and gp_art='C203';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C203'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C2'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2'  and ag.gp_art='C203' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C203' and famille_art='C2'  and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C203' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C2';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C2' and gp_art='C202';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C202'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2'  and ag.gp_art='C202' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C202' and famille_art='C2'  and isactive=1 order by titre,article;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C202' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C2';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C2' and gp_art='C201';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C201'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2'  and ag.gp_art='C201' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-emontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C201' and famille_art='C2'  and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C201' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A5') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='A5';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A5'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art='A5'  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A5') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='A5';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='A5' and gp_art='A500';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A500'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A5'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A5'  and ag.gp_art='A500' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='A500' and famille_art='A5'  and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A5' and gp_art='A500' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A5') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='A5';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='A5' and gp_art='A501';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A501'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A5'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A5'  and ag.gp_art='A501' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='A501' and famille_art='A5'  and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A5' and gp_art='A501' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A5') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='A5';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='A5' and gp_art='A509';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A509'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A5'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A5'  and ag.gp_art='A509' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='A509' and famille_art='A5'  and isactive=1 order by titre,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A5' and gp_art='A509' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A5') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='A5';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='A5' and gp_art='A510';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A510'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A5'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A5'  and ag.gp_art='A510' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='A510' and famille_art='A5'  and isactive=1 order by titre,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A5' and gp_art='A510' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A5') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='A5';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='A5' and gp_art='A512';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A512'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A5'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A5'  and ag.gp_art='A512' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-emontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='A512' and famille_art='A5'  and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A5' and gp_art='A512' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A5') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='A5';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='A5' and gp_art='A500';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A500'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A5'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A5'  and ag.gp_art='A500' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='A500' and famille_art='A5'  and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A5' and gp_art='A500' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A4') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='A4';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A4'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art='A4'  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A4') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='A4';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='A4' and gp_art='A400';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A400'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A4'  and ag.gp_art='A400' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='A400' and famille_art='A4'  and isactive=1 order by titre,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A4' and gp_art='A400' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A4') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='A4';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='A4' and gp_art='A401';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A401'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A4'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A4'  and ag.gp_art='A401' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='A401' and famille_art='A4'  and isactive=1 order by titre,article;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A4' and gp_art='A401' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A4') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='A4';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='A4' and gp_art='A405';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A405'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A4'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A4'  and ag.gp_art='A405' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='A405' and famille_art='A4'  and isactive=1 order by titre,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A4' and gp_art='A405' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A4') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='A4';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='A4' and gp_art='A415';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A415'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A4'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A4'  and ag.gp_art='A415' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='A415' and famille_art='A4'  and isactive=1 order by titre,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A4' and gp_art='A415' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A4') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='A4';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='A4' and gp_art='A426';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A426'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A4'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A4'  and ag.gp_art='A426' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='A426' and famille_art='A4'  and isactive=1 order by titre,article;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A4' and gp_art='A426' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A4') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='A4';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='A4' and gp_art='A415';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A415'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A4'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A4'  and ag.gp_art='A415' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='A415' and famille_art='A4'  and isactive=1 order by titre,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A4' and gp_art='A415' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A4') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='A4';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='A4' and gp_art='A403';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A403'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A4'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A4'  and ag.gp_art='A403' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='A403' and famille_art='A4'  and isactive=1 order by titre,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A4' and gp_art='A403' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A4') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='A4';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='A4' and gp_art='A402';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A402'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A4'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A4'  and ag.gp_art='A402' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-emontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='A402' and famille_art='A4'  and isactive=1 order by titre,article;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A4' and gp_art='A402' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A4') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='A4';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='A4' and gp_art='A427';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A427'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A4'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A4'  and ag.gp_art='A427' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='A427' and famille_art='A4'  and isactive=1 order by titre,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A4' and gp_art='A427' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A4') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='A4';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='A4' and gp_art='A405';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A405'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A4'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A4'  and ag.gp_art='A405' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='A405' and famille_art='A4'  and isactive=1 order by titre,article;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A4' and gp_art='A405' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A5') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='A5';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A5'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art='A5'  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C4';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C4'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art='C4'  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C4';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C4' and gp_art='C408';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C408'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C4'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4'  and ag.gp_art='C408' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C408' and famille_art='C4'  and isactive=1 order by titre,article;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C4' and gp_art='C408' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C4';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C4' and gp_art='C407';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C407'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C4'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4'  and ag.gp_art='C407' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C407' and famille_art='C4'  and isactive=1 order by titre,article;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C4' and gp_art='C407' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C4';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C4' and gp_art='C403';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C403'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C4'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4'  and ag.gp_art='C403' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-emontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C403' and famille_art='C4'  and isactive=1 order by titre,article;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C4' and gp_art='C403' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C4';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C4' and gp_art='C402';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C402'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C4'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4'  and ag.gp_art='C402' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C402' and famille_art='C4'  and isactive=1 order by titre,article;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C4' and gp_art='C402' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C7') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C7';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C7'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art='C7'  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C7') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C7';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C7' and gp_art='C703';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C703'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C7'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C7'  and ag.gp_art='C703' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C703' and famille_art='C7'  and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C7' and gp_art='C703' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C7') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C7';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C7' and gp_art='C701';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C701'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C7'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C7'  and ag.gp_art='C701' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C701' and famille_art='C7'  and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C7' and gp_art='C701' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C7') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C7';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C7' and gp_art='C700';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C700'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C7'  and ag.gp_art='C700' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C700' and famille_art='C7'  and isactive=1 order by titre,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C7' and gp_art='C700' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C7') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C7';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C7' and gp_art='C700';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C700'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C7'  and ag.gp_art='C700' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C700' and famille_art='C7'  and isactive=1 order by titre,article;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C7' and gp_art='C700' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C7') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C7';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C7' and gp_art='C700';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C700'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C7'  and ag.gp_art='C700' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C700' and famille_art='C7'  and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C7' and gp_art='C700' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C7') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C7';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C7' and gp_art='C701';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C701'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C7'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C7'  and ag.gp_art='C701' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C701' and famille_art='C7'  and isactive=1 order by titre,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C7' and gp_art='C701' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C7') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C7';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C7' and gp_art='C702';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C702'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C7'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C7'  and ag.gp_art='C702' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C702' and famille_art='C7'  and isactive=1 order by titre,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C7' and gp_art='C702' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C7') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C7';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C7' and gp_art='C703';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C703'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C7'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C7'  and ag.gp_art='C703' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C703' and famille_art='C7'  and isactive=1 order by titre,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C7' and gp_art='C703' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C7') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C7';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C7' and gp_art='C705';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C705'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C7'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C7'  and ag.gp_art='C705' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C705' and famille_art='C7'  and isactive=1 order by titre,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C7' and gp_art='C705' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C5';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C5'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art='C5'  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C5';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C5' and gp_art='C500';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C500'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C5'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5'  and ag.gp_art='C500' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C500' and famille_art='C5'  and isactive=1 order by titre,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C5' and gp_art='C500' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C5';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C5' and gp_art='C505';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C505'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C5'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5'  and ag.gp_art='C505' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C505' and famille_art='C5'  and isactive=1 order by titre,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C5' and gp_art='C505' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C4';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C4'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art='C4'  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C4';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C4'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art='C4'  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C4';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C4'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art='C4'  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C4';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C4'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art='C4'  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C3') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C3';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C3'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art='C3'  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C2';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C2'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art='C2'  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C1';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C1'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art='C1'  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C1';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C1'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art='C1'  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'B2') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='B2';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-B2'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art='B2'  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'B2') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='B2';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-B2'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art='B2'  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'B2') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='B2';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-B2'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art='B2'  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'B2') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='B2';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-B2'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art='B2'  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'B2') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='B2';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='B2' and gp_art='B201';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-B201'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-B2'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='B2'  and ag.gp_art='B201' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='B201' and famille_art='B2'  and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='B2' and gp_art='B201' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'B2') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='B2';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='B2' and gp_art='B201';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-B201'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-B2'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='B2'  and ag.gp_art='B201' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='B201' and famille_art='B2'  and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='B2' and gp_art='B201' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'B2') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='B2';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-B2'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art='B2'  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A5') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='A5';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A5'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art='A5'  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A2') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='A2';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A2'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art='A2'  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A1') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='A1';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A1'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art='A1'  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A4') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='A4';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A4'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art='A4'  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'B2') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='B2';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-B2'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art='B2'  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C6';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C6'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art='C6'  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C6';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C6' and gp_art='C612';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C612'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C6'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6'  and ag.gp_art='C612' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C612' and famille_art='C6'  and isactive=1 order by titre,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C6' and gp_art='C612' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C6';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C6' and gp_art='C600';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C600'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6'  and ag.gp_art='C600' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C600' and famille_art='C6'  and isactive=1 order by titre,article;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C6' and gp_art='C600' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C6';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C6' and gp_art='C616';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C616'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C6'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6'  and ag.gp_art='C616' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C616' and famille_art='C6'  and isactive=1 order by titre,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C6' and gp_art='C616' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C5';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C5'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art='C5'  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C5';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C5' and gp_art='C500';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C500'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C5'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5'  and ag.gp_art='C500' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C500' and famille_art='C5'  and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C5' and gp_art='C500' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C5';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C5' and gp_art='C505';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C505'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C5'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5'  and ag.gp_art='C505' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C505' and famille_art='C5'  and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C5' and gp_art='C505' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C5';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='C5' and gp_art='C505';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C505'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C5'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5'  and ag.gp_art='C505' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='C505' and famille_art='C5'  and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C5' and gp_art='C505' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A4') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='A4';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A4'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art='A4'  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A4') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='A4';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='A4' and gp_art='A400';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A400'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A4'  and ag.gp_art='A400' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='A400' and famille_art='A4'  and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A4' and gp_art='A400' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A4') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='A4';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='A4' and gp_art='A400';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A400'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A4'  and ag.gp_art='A400' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='A400' and famille_art='A4'  and isactive=1 order by titre,article;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A4' and gp_art='A400' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A4') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='A4';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='A4' and gp_art='A401';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A401'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A4'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A4'  and ag.gp_art='A401' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='A401' and famille_art='A4'  and isactive=1 order by titre,article;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A4' and gp_art='A401' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A4') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='A4';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A4'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art='A4'  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A4') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='A4';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A4'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art='A4'  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A2') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='A2';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A2'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art='A2'  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'media') OR (linkname = '')
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A1') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='A1';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A1'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art='A1'  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A1') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='A1';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='A1' and gp_art='A101';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A101'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A1'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1'  and ag.gp_art='A101' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='A101' and famille_art='A1'  and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A101' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A1') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='A1';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='A1' and gp_art='A102';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A102'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A1'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1'  and ag.gp_art='A102' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='A102' and famille_art='A1'  and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A102' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'img') OR (linkname = '')
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A5') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='A5';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A5'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art='A5'  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C7') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C7';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C7'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art='C7'  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C5';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C5'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art='C5'  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='C2';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-C2'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art='C2'  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A5') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='A5';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A5'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art='A5'  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A5') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='A5';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A5'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.isactive=1  and ag.famille_art='A5'  group by ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A5') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='A5';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='A5' and gp_art='A500';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A500'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A5'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A5'  and ag.gp_art='A500' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='A500' and famille_art='A5'  and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A5' and gp_art='A500' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A5') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='A5';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='A5' and gp_art='A501';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A501'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A5'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A5'  and ag.gp_art='A501' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='A501' and famille_art='A5'  and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A5' and gp_art='A501' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A5') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='A5';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='A5' and gp_art='A502';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A502'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A5'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A5'  and ag.gp_art='A502' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='A502' and famille_art='A5'  and isactive=1 order by titre,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A5' and gp_art='A502' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A5') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='A5';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='A5' and gp_art='A509';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A509'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A5'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A5'  and ag.gp_art='A509' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='A509' and famille_art='A5'  and isactive=1 order by titre,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A5' and gp_art='A509' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A5') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='A5';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='A5' and gp_art='A510';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A510'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A5'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A5'  and ag.gp_art='A510' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='A510' and famille_art='A5'  and isactive=1 order by titre,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A5' and gp_art='A510' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se 
-        join users us on (se.id_user=us.id) 
-        where se.id = '8fe60e22-96f3-4703-8084-c85e24fd5fd9' and us.isenabled ='1'  and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36' ;
-QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A5') OR (linkname = '')
-QUERYARRAY: select famille_art,coalesce(titre_fr,titre_fr) as titre from familles where famille_art in (select distinct(famille_art) from articles where isactive='1') order by famille_art;
-QUERY: select coalesce(titre_fr,titre_fr) as title from familles where famille_art='A5';
-QUERY: select coalesce(titre_fr,titre_fr) as title from groupes where famille_art='A5' and gp_art='A500';
-QUERYARRAY: select aa.gp_art as id,aa.gp_art,aa.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,coalesce(gr.titre_fr,gr.titre_fr) as groupe
-    from (
-    select ar.gp_art,ar.famille_art ,ar.article_group,ar.article 
-    from article_groups ag left join articles ar on (ag.article=ar.article_group) 
-    where ag.isactive =1 or ar.isactive=1) aa 
-    join groupes gr on (gr.gp_art=aa.gp_art)
-    join familles fm on (gr.famille_art=fm.famille_art) where 
-    gr.titre_fr is not null
-    group by aa.famille_art,aa.gp_art,famille,groupe order by aa.famille_art ASC,aa.gp_art ASC;
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A500'
-QUERY: select files,backgrounds,links from pageheaders where ident='&HEA-A5'
-QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(coalesce(ag.titre_fr,ag.titre_fr), position(' | ' in coalesce(ag.titre_fr,ag.titre_fr))+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat,ag.formulaire,ag.soumission,ag.solution from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A5'  and ag.gp_art='A500' and ag.isactive=1  group by ag.id,ag.id,ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
-QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat,formulaire,soumission,solution from article_groups 
-    where gp_art='A500' and famille_art='A5'  and isactive=1 order by titre,article;
-QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink,ar.doc_cert,ar.doc_bim,ar.doc_bro from articles ar where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A5' and gp_art='A500' and isactive=1) group by id,article_group,article order by article_group,article;
-QUERY: select count(oa.id) as cnt,JSON_ARRAYAGG(oa.article) as articles,JSON_ARRAYAGG(ar.id) as aid from order_articles oa join articles ar on (oa.article=ar.article) where ar.isactive= 1 and oa.id_user='582a07ce-3cba-4b54-887c-a92d4b101c7d' and oa.id_order is null and oa.code_document='DPS'
index 33a83c2..87c236e 100644 (file)
@@ -31,10 +31,27 @@ if (strlen($prod) > 1){
       </div>\r
   </div>\r
 </nav>\r
-\r
-\r
+<div class="modal" tabindex="-1" id="dlgprogress">\r
+  <div class="modal-dialog">\r
+    <div class="modal-content">\r
+      <div class="modal-header">\r
+        <h5 class="modal-title"><?php echo $lbl["progress"]; ?></h5>\r
+      </div>\r
+      <div class="modal-body">\r
+        <div class="d-flex justify-content-center">\r
+          <div class="spinner-border" role="status">\r
+            <span class="visually-hidden">Loading...</span>\r
+          </div>\r
+        </div>\r
+      </div>\r
+    </div>\r
+  </div>\r
+</div>\r
+<?php\r
+  include_once("shop/tmpl/elements/articlecart.html");\r
+?> \r
 <div class="row" style="margin-right: 0px;">\r
-  <div class="col d-none d-lg-block col-lg-4 col-xl-2" id="gartgroups" style="width: 300px; border-bottom: 0.5px solid #ccc;border-right:0.5px solid #ccc; padding-right: 0px;">\r
+  <div class="col d-none d-lg-block col-lg-4 col-xl-2" id="gartgroups" style="width: 300px;  padding-right: 0px;">\r
         \r
        <!-- START -->\r
 \r
@@ -60,13 +77,13 @@ if (strlen($prod) > 1){
                 if (($ax['famille_art'] == $selfamille) && ($selfamille != null)) {\r
                   // onclick="mysite.reload('<?php echo $cfg["basepath"]."product/".$ax["famille_art"].'/'.$ax["gp_art"].'/'.$cfg["lang"]; ?  >/');"\r
                 ?>\r
-                  <div class="tabulator-row tabulator-selectable tabulator-row-<?php echo $cla; ?>" role="row" name="fam_<?php echo $ax['famille_art']; ?>" style="padding-left: 0px;" >\r
-                  <a class="tabulator-cell"  style="color: black; font-size: 14px; font-weight: 400; color: #333; padding:0px;text-decoration: none;" href="<?php echo $cfg["basepath"]."product/".$ax["famille_art"].'/'.$ax["gp_art"].'/'.$cfg["lang"]."/"; ?>"> \r
+                  <div class="tabulator-row tabulator-selectable tabulator-row-<?php echo $cla; ?>" role="row" name="fam_<?php echo $ax['famille_art']; ?>" style="padding-left: 0px;;" >\r
+                  <a class="tabulator-cell"  style="color: black; font-size: 14px; font-weight: 400; color: #333; padding:0px;text-decoration: none;border-right: 0px!important" href="<?php echo $cfg["basepath"]."product/".$ax["famille_art"].'/'.$ax["gp_art"].'/'.$cfg["lang"]."/"; ?>"> \r
                   <div class="tabulator-cell" role="gridcell" tabulator-field="famille" title="" style="display: none; height: 36px;">\r
                     <?php echo $ax["famille"]; ?>\r
                   </div>\r
                   <div class="tabulator-cell" role="gridcell" tabulator-field="gp_art" title="" style="width: 50px; height: 36px;"><?php echo $ax["gp_art"]; ?></div>\r
-                  <div class="tabulator-cell" role="gridcell" tabulator-field="groupe" title="" style="width: 215px; height: 36px;"><?php echo $ax["groupe"]; ?></div></div>\r
+                  <div class="tabulator-cell" role="gridcell" tabulator-field="groupe" title="" style="width: 215px; height: 36px;border-right: 0px;"><?php echo $ax["groupe"]; ?></div></div>\r
                 </a>\r
                 <?php\r
                 }\r
@@ -157,6 +174,8 @@ if (strlen($prod) > 1){
 </div>\r
 </div>\r
 \r
+        \r
+\r
 \r
     <?php\r
       if ($pgrp == null){\r
@@ -207,6 +226,7 @@ if (strlen($prod) > 1){
           function initpage(){\r
             publicaskprice.init();\r
             publicaskprice.getItemCount();\r
+            shop.initEvents();\r
           }\r
           </script> <?php\r
       } else {\r
@@ -249,23 +269,4 @@ if (strlen($prod) > 1){
   </div>\r
   </div>\r
   </div>\r
-  <div class="modal" tabindex="-1" id="dlgprogress">\r
-  <div class="modal-dialog">\r
-    <div class="modal-content">\r
-      <div class="modal-header">\r
-        <h5 class="modal-title"><?php echo $lbl["progress"]; ?></h5>\r
-      </div>\r
-      <div class="modal-body">\r
-        <div class="d-flex justify-content-center">\r
-          <div class="spinner-border" role="status">\r
-            <span class="visually-hidden">Loading...</span>\r
-          </div>\r
-        </div>\r
-      </div>\r
-    </div>\r
-  </div>\r
-</div>\r
-        \r
-        <?php\r
-  include_once("shop/tmpl/elements/articlecart.html");\r
-?> 
\ No newline at end of file
+  
\ No newline at end of file
index 269eaba..8465d66 100644 (file)
@@ -65,7 +65,7 @@
       <div class="btn-group" >
         [%#show_fav%]<button class="btn btn-warning text-white btn-sm" onclick="favorites.articletofavorites('[%adx%]','[%gdx%]');"><span class="icon icon-star"></span></button>[%/show_fav%]
         [%#show_favrem%]<button class="btn btn-danger text-white btn-sm" onclick="favorites.favoritesRemoveArticle('[%adx%]','[%gdx%]');"><span class="icon icon-trash"></span></button>[%/show_favrem%]
-        [%#show_ask%]<button class="btn btn-askprice btn-sm" name="btnask_[%id%]" title="ajouter au panier pour demande de prix" onclick="askprice.articletoaskprice('[%adx%]','[%gdx%]');"><span class="icon icon-euro-tag" ></span></button>[%/show_ask%]
+        [%#show_ask%]<button class="btn btn-askprice btn-sm" name="btnask_[%id%]" title="ajouter au panier pour demande de prix" onclick="shop.articletoaskprice('[%adx%]','[%gdx%]');"><span class="icon icon-euro-tag" ></span></button>[%/show_ask%]
         [%#show_shop%]<button class="btn btn-success btn-sm" name="btnbsk_[%id%]" onclick="basket.articletobasket('[%adx%]','[%gdx%]');"><span class="icon icon-shop" ></span></button>[%/show_shop%]
         
         <div class="btn-group [%nodoc%]">