From 276cb9f5d80eff2f2f5e7357da223a946e2c72a8 Mon Sep 17 00:00:00 2001 From: Kilian Saffran Date: Wed, 11 Aug 2021 09:24:30 +0200 Subject: [PATCH] v20210811 --- api/bin/getapidata.pl | 254 +- api/bin/lib/api.pm | 18 +- api/bin/tmpsync.sh | 133 + {public_html/qubeshop => dev}/dev/genpwd.php | 70 +- dev/rsync_tohost.sh | 3 + dev/ventes_doctypes.txt | 14 + public_html/qubeshop/api.php | 3 +- public_html/qubeshop/apitest | 94 + public_html/qubeshop/composer/composer.json | 9 +- public_html/qubeshop/composer/composer.lock | 48 +- .../qubeshop/composer/vendor/autoload.php | 14 +- .../composer/vendor/composer/ClassLoader.php | 890 +-- .../vendor/composer/InstalledVersions.php | 499 +- .../qubeshop/composer/vendor/composer/LICENSE | 42 +- .../vendor/composer/autoload_classmap.php | 20 +- .../vendor/composer/autoload_files.php | 22 +- .../vendor/composer/autoload_namespaces.php | 19 +- .../vendor/composer/autoload_psr4.php | 26 +- .../vendor/composer/autoload_real.php | 150 +- .../vendor/composer/autoload_static.php | 135 +- .../composer/vendor/composer/installed.json | 49 - .../composer/vendor/composer/installed.php | 129 +- .../vendor/composer/platform_check.php | 52 +- public_html/qubeshop/getsession | 32 + public_html/qubeshop/index.php | 27 +- public_html/qubeshop/lib/.htaccess | 1 + public_html/qubeshop/lib/config.php | 20 +- public_html/qubeshop/lib/database.php | 25 +- public_html/qubeshop/lib/lang/de.php | 4 +- public_html/qubeshop/lib/lang/fr.php | 23 +- public_html/qubeshop/lib/modules/Api.php | 298 +- .../qubeshop/lib/modules/ArticleGroups.php | 5 + public_html/qubeshop/lib/modules/Articles.php | 29 +- public_html/qubeshop/lib/modules/Email.php | 76 + public_html/qubeshop/lib/modules/Profile.php | 31 +- public_html/qubeshop/lib/modules/Shop.php | 11 + public_html/qubeshop/lib/modules/User.php | 41 + public_html/qubeshop/lib/publicaliases.php | 8 + public_html/qubeshop/lib/session.php | 32 +- public_html/qubeshop/log/.htaccess | 1 + public_html/qubeshop/log/sql.log | 5173 +++++++++++++++++ public_html/qubeshop/publicapi.php | 48 + public_html/qubeshop/tmpl/.htaccess | 1 + public_html/qubeshop/tmpl/js/contratcadre.js | 111 +- public_html/qubeshop/tmpl/js/login.js | 26 + public_html/qubeshop/tmpl/js/myapp.js | 2 +- public_html/qubeshop/tmpl/js/profile.js | 13 +- public_html/qubeshop/tmpl/js/publicrequest.js | 18 + public_html/qubeshop/tmpl/js/shop.js | 490 +- public_html/qubeshop/tmpl/login.html | 18 +- public_html/qubeshop/tmpl/module/error.html | 2 +- public_html/qubeshop/tmpl/module/login.html | 1 + .../tmpl/module/login/forgotpassword.html | 16 +- .../qubeshop/tmpl/module/login/login.html | 10 +- .../tmpl/module/login/newaccount.html | 60 + .../tmpl/panels/pnl_contratcadre.html | 6 +- .../qubeshop/tmpl/panels/pnl_favorites.html | 2 +- .../qubeshop/tmpl/panels/pnl_profile.html | 6 +- 58 files changed, 7500 insertions(+), 1860 deletions(-) create mode 100644 api/bin/tmpsync.sh rename {public_html/qubeshop => dev}/dev/genpwd.php (96%) create mode 100644 dev/rsync_tohost.sh create mode 100644 dev/ventes_doctypes.txt create mode 100644 public_html/qubeshop/apitest create mode 100644 public_html/qubeshop/getsession create mode 100644 public_html/qubeshop/lib/.htaccess create mode 100644 public_html/qubeshop/lib/modules/Email.php create mode 100644 public_html/qubeshop/lib/modules/User.php create mode 100644 public_html/qubeshop/lib/publicaliases.php create mode 100644 public_html/qubeshop/log/.htaccess create mode 100644 public_html/qubeshop/log/sql.log create mode 100644 public_html/qubeshop/publicapi.php create mode 100644 public_html/qubeshop/tmpl/.htaccess create mode 100644 public_html/qubeshop/tmpl/js/login.js create mode 100644 public_html/qubeshop/tmpl/js/publicrequest.js create mode 100644 public_html/qubeshop/tmpl/module/login.html create mode 100644 public_html/qubeshop/tmpl/module/login/newaccount.html diff --git a/api/bin/getapidata.pl b/api/bin/getapidata.pl index 8ebdd7f..fa112a0 100644 --- a/api/bin/getapidata.pl +++ b/api/bin/getapidata.pl @@ -7,6 +7,7 @@ use Getopt::Long; use MIME::Base64; use POSIX 'strftime'; use Data::Dumper; +use JSON::PP; use lib ($RealBin.'/lib'); use lib ($RealBin.'/api/bin/lib'); use mysql; @@ -18,7 +19,8 @@ my $dryrun = 0; my $live = 0; my $onlycopy = 0; my $onlyget = 0; -GetOptions("steps|s=s" => \$steps,"type|t=s" => \$type,"dryrun|dr"=> \$dryrun,"live|l" => \$live, "onlycopy|c" => \$onlycopy, "onlyget|g" => \$onlyget); +my $sdata = "{}"; +GetOptions("steps|s=s" => \$steps,"type|t=s" => \$type,"dryrun|dr"=> \$dryrun,"live|l" => \$live, "onlycopy|c" => \$onlycopy, "onlyget|g" => \$onlyget, "data|d=s" => \$sdata); my $runcmd = 'ps ax | grep '.basename($0).' | grep -v \'grep\' | head -n1 | awk \'{print $1}\''; my $run = `$runcmd`; @@ -77,68 +79,70 @@ if ($onlycopy == 0){ } } elsif ($type eq 'upd') { #$articles = $db->querysorted("select max(date_update) as date_update from wiges_s_article;"); - my $res = $db->querysorted("select date(max(date_update)) as date_update from wiges_s_article;"); + my $res = $db->querysorted("select max(date_update) - INTERVAL 2 HOUR as date_update from wiges_s_article;"); my @c = (); - my $updx = "2021-07-24 00:00:00"; + my $updx = $res->{0}->{date_update}; + $updx =~ s/\.\d+$//; push(@c,'>'); push(@c,$updx); $tmpart->{0}->{'date_update'} = \@c; + } elsif ($type eq 'data'){ + if (($sdata =~ /^\{/) && ($sdata =~ /\}$/) && ($sdata ne "{}")){ + #print $sdata."\n"; + + $tmpart->{0} = decode_json($sdata); + #print Dumper($tmpart); + #exit(0); + } else { + print "$sdata incompete!"; + exit(1); + } + } $articles = $api->getData('s_article',$tmpart,'article'); } if (($steps =~ /translation,/) || ($steps =~ /articles,/)){ - if ($type eq 'full'){ - $articles = $db->querysorted("select article from wiges_s_article;"); - } $api->getData('l_article',$articles,undef); } if (($steps =~ /article_groups,/) || ($steps =~ /articles,/)){ my $tmpref = (); - if ($type eq 'full'){ - $tmpref = $db->querysorted("select article as article_lie from wiges_s_article;"); - } elsif ($type eq 'upd') { foreach my $a (keys(%{$articles})){ $tmpref->{$a}->{article_lie} = $articles->{$a}->{article}; - } - } + } $api->getData('private_catalogue',$tmpref,undef); } if (($steps =~ /files,/) || ($steps =~ /articles,/)){ - if ($type eq 'full'){ - $articles = $db->querysorted("select article from wiges_s_article;"); - } - $api->getFiles('ole_article',$articles); + my $tmpdoc = (); + my $res = $db->querysorted("select max(dateheure_document) - INTERVAL 1 HOUR as dateheure_document from wiges_ole_article;"); + my @c = (); + my $updx = $res->{0}->{dateheure_document}; + $updx =~ s/\.\d+$//; + push(@c,'>'); + push(@c,$updx); + $tmpdoc->{0}->{'dateheure_document'} = \@c; + $api->getFiles('ole_article',$tmpdoc); } # get prix_vente if (($steps =~ /prix_vente,/) || ($steps =~ /articles,/)){ - if ($type eq 'full'){ - $articles = $db->querysorted("select article from wiges_s_article;"); - } $api->getData('v_prix_vente',$articles); } # get stock if (($steps =~ /stock,/) || ($steps =~ /articles,/)){ - if ($type eq 'full'){ - $articles = $db->querysorted("select article from wiges_s_article;"); - } $api->getData('v_stock',$articles); } # get familles if (($steps =~ /famille,/) || ($steps =~ /articles,/)){ my $tmpsel = (); - if ($type eq 'full'){ - $tmpsel = $db->querysorted("select famille_art from wiges_s_article group by famille_art;"); - } else { my @xarts = (); foreach my $a (keys(%{$articles})){ push(@xarts,"'".$articles->{$a}->{article}."'"); } $tmpsel = $db->querysorted("select famille_art from wiges_s_article where article in (".join(",",@xarts).") group by famille_art;"); - } + $api->getData('s_famille_article',$tmpsel); } @@ -146,29 +150,54 @@ if ($onlycopy == 0){ # get groups if (($steps =~ /groups,/) || ($steps =~ /articles,/)){ my $tmpsel = (); - if ($type eq 'full'){ - $articles = $db->querysorted("select gp_art from wiges_s_article group by gp_art;"); - } else { my @xarts = (); foreach my $a (keys(%{$articles})){ push(@xarts,"'".$articles->{$a}->{article}."'"); } $tmpsel = $db->querysorted("select gp_art from wiges_s_article where article in (".join(",",@xarts).") group by gp_art;"); - } $api->getData('s_groupe_article',$tmpsel); } + my $ventes = (); + if (($steps =~ /ventes,/)){ + my $tmpsel = (); + if ($type eq 'upd'){ + my $res = $db->querysorted("select max(dateheure_modif) as dateheure_modif from wiges_w_ventes;"); + my @c = (); + my $updx = $res->{0}->{"dateheure_modif"}.""; + push(@c,'>'); + push(@c,$updx); + $tmpsel->{0}->{'dateheure_modif'} = \@c; + $tmpsel->{0}->{'dateheure_modif'} = ['>',$res->{dateheure_modif}]; + } elsif ($type eq 'data'){ + if (($sdata =~ /^\{/) && ($sdata =~ /\}$/) && ($sdata ne "{}")){ + #print $sdata."\n"; + + $tmpsel->{0} = decode_json($sdata); + #print Dumper($tmpart); + #exit(0); + } else { + print "$sdata incompete!"; + exit(1); + } + + } + + $ventes = $api->getData('w_ventes',$tmpsel,'no_document'); + } + # get ventes_pos + if (($steps =~ /ventes_pos,/) || ($steps =~ /ventes,/)){ + my $res = $db->query("select max(dateheure_modif) as dateheure_modif from wiges_s_article;"); + $articles->{0}->{'dateheure_modif'} = ['>',$res->{dateheure_modif}]; + $api->getData('w_ventes_pos',$articles); + } if (($steps =~ /clients,/)){ - if ($type eq 'full'){ - $clients->{0}->{'date_update'} = ['>','2012-01-01 00:00:00']; - } elsif ($type eq 'upd') { my $res = $db->querysorted("select CONCAT(max(date(date_update)),' 00:00:00') as date_update from wiges_s_client;"); my @c = (); my $updx = $res->{0}->{"date_update"}.""; push(@c,'>'); push(@c,$updx); $clients->{0}->{'date_update'} = \@c; - } $api->getData('s_client',$clients,undef); } if (($steps =~ /contacts,/)){ @@ -176,31 +205,18 @@ if ($onlycopy == 0){ $api->getData('s_contact_client',$clients,undef); } # get ventes - if (($steps =~ /ventes,/)){ - if ($type eq 'full'){ - $clients = $db->querysorted("select client from wiges_s_client;"); - } elsif ($type eq 'upd') { - my $res = $db->query("select max(dateheure_modif) as dateheure_modif from wiges_w_ventes;"); - $clients->{0}->{'dateheure_modif'} = ['>',$res->{dateheure_modif}]; - } - $api->getData('w_ventes',$clients); - } - # get ventes_pos - if (($steps =~ /ventes_pos,/)){ - if ($type eq 'full'){ - $articles = $db->querysorted("select article from wiges_s_article;"); - } elsif ($type eq 'upd') { - my $res = $db->query("select max(dateheure_modif) as dateheure_modif from wiges_s_article;"); - $articles->{0}->{'dateheure_modif'} = ['>',$res->{dateheure_modif}]; - } - $api->getData('w_ventes_pos',$articles); - } + # get contrats cadres + + } + if ($onlyget == 0){ + #my $wiges_where = "article in "; #sync apidata to shopdata if (($steps =~ /famille,/) || ($steps =~ /articles,/)){ #wiges_s_famille_article => prod_cat + $api->writelog("Copy famille..."); my $data = $db->queryarray("select * from wiges_s_famille_article"); foreach my $r (@{$data}){ #print Dumper($r); @@ -224,23 +240,25 @@ if ($onlyget == 0){ } } + $api->writelog("End Copy famille..."); } if ($steps =~ /groups,/ || ($steps =~ /articles,/)){ #wiges_s_groupe_article => prod_group + $api->writelog("Copy groups..."); my $data = $db->queryarray("select * from wiges_s_groupe_article;"); foreach my $r (@{$data}){ my ($fr,$de,$qb); if ($r->{'designation'} =~ /.*-.*\|.*/){ - print "FR|DE|QUBE\n"; + #print "FR|DE|QUBE\n"; ($fr,$de,$qb) = $r->{'designation'} =~ m/^(.*)\s-\s(.*)\s\|\s(.*)$/; } elsif ($r->{'designation'} =~ /.*-.*/){ - print "FR|DE\n"; + #print "FR|DE\n"; ($fr,$de) = $r->{'designation'} =~ m/^(.*)\s-\s(.*)$/; }elsif ($r->{'designation'} =~ /.*\|.*/){ - print "FR|QUBE\n"; + #print "FR|QUBE\n"; ($fr,$qb) = $r->{'designation'} =~ m/^(.*)\s\|\s(.*)$/; }else { - print "Only FR\n"; + #print "Only FR\n"; ($fr) = $r->{'designation'}; } @@ -259,11 +277,11 @@ if ($onlyget == 0){ $api->writesql('prod_group',$sql); $db->exec($sql); } - - } + $api->writelog("End Copy groups..."); } if ($steps =~ /clients,/){ + $api->writelog("Copy clients..."); #wiges_s_groupe_article => prod_group my $data = $db->queryarray("SELECT * FROM wiges_s_client;"); foreach my $r (@{$data}){ @@ -314,9 +332,11 @@ if ($onlyget == 0){ $db->exec($sql); } } + $api->writelog("End Copy clients..."); } if ($steps =~ /contacts,/){ + $api->writelog("Copy contacts..."); my $data = $db->queryarray("select id as id_wiges,client as id_client, personne as id_personne, nom, adresse_email as useremail from wiges_s_contact_client where adresse_email is not null;"); foreach my $r (@{$data}){ my $nd = { @@ -336,9 +356,11 @@ if ($onlyget == 0){ } } + $api->writelog("End Copy contacts..."); } if (($steps =~ /article_groups,/) || ($steps =~ /articles,/)){ + $api->writelog("Copy article_groups..."); my $agdata = $db->queryarray("select wsa.id, wsa.article, wsa.gp_art, @@ -362,16 +384,25 @@ if ($onlyget == 0){ my ($fr,$de,$sup); $r->{titre} =~ s/“/"/g; $r->{titre} =~ s/”/"/g; - if ($r->{'titre'} =~ /.*-.*\".*\"/){ + if ($r->{'titre'} =~ /\n/){ + $r->{'titre'} =~ s/\r//g; + my @xtitre = split("\n",$r->{'titre'}); + ($fr,$sup) = $xtitre[0] =~ m/^(.*)\"(.*)\"$/; + } elsif ($r->{'titre'} =~ /.*-.*\".*\"/){ #print "FR|DE|SUP\n"; - ($fr,$de,$sup) = $r->{'titre'} =~ m/^(.*)\s-\s(.*)\"(.*)\".*$/; + ($fr,$de,$sup) = $r->{'titre'} =~ m/^(.*)-(.*)\"(.*)\".*$/; } elsif ($r->{'titre'} =~ /.*-.*/){ #print "FR|DE\n"; - ($fr,$de) = $r->{'titre'} =~ m/^(.*)\s-\s(.*)$/; + ($fr,$de) = $r->{'titre'} =~ m/^(.*)-(.*)$/; }else { #print "Only FR\n"; ($fr) = $r->{'titre'}; } + if (!$fr || $fr eq "" ){ + if ($de && $de ne ""){ + $fr = $de; + } + } #print $r->{'titre'}." => $fr == $de == $sup\n"; my $nd = { 'id' => $r->{'id'}, @@ -402,6 +433,7 @@ if ($onlyget == 0){ } #group descriptions + $api->writelog("update article_groups descriptions..."); my $agtrans = $db->queryarray("select ag.id,ag.article,wla.langue,wla.designation from wiges_l_article wla join article_groups ag on (wla.article=ag.article) where wla.langue in ('D','F') ;"); foreach my $r (@{$agtrans}){ my $sql =""; @@ -420,16 +452,20 @@ if ($onlyget == 0){ } } } + #group images + $api->writelog("update article_groups images..."); my $agimg = $db->queryarray("select ag.article,woa.nom_fichier from wiges_ole_article woa join article_groups ag on (woa.article=ag.article) where woa.code_document ='art_image' and woa.nom_fichier is not null;"); + if (scalar(@{$agimg}) > 0){ + my $cmd = 'rsync -av '.$cfg->{datapath}.'/art_image/ '.$cfg->{imgpath}.'article_groups/'; + my $cpr = system($cmd); + if ($cpr != 0){ + $api->writelog("cmd failed:".$cmd."!"); + } + } foreach my $r (@{$agimg}){ if (-e $cfg->{datapath}.'/'.$r->{nom_fichier}){ my $newfname = basename($r->{nom_fichier}); - #$newfname =~ s/\s/_/g; - my $cmd = 'cp "'.$cfg->{datapath}.'/'.$r->{nom_fichier}.'" "'.$cfg->{imgpath}.'article_groups/'.$newfname.'"'; - print $cmd."\n"; - system($cmd); - my $sql = "UPDATE article_groups set image='article_groups/".$newfname."' where article='".$r->{article}."';"; #system($cmd); if ($cfg->{dryrun} == 1){ @@ -442,17 +478,24 @@ if ($onlyget == 0){ #print "File ".dirname($RealBin).'/data/'.$r->{nom_fichier}." does not exist!\n"; } } - - my $sqlcleanft = "UPDATE article_groups set fichetechnique=null;"; - $db->exec($sqlcleanft); + $api->writelog("update article_groups fichetechnique..."); + #my $sqlcleanft = "UPDATE article_groups set fichetechnique=null;"; + #$db->exec($sqlcleanft); my $agfiche = $db->queryarray("select ag.article,woa.nom_fichier from wiges_ole_article woa join article_groups ag on (woa.article=ag.article) where woa.code_document ='art_fiche' and woa.nom_fichier is not null;"); + if (scalar(@{$agfiche}) > 0){ + my $cmd = 'rsync -av '.$cfg->{datapath}.'/art_fiche/ '.$cfg->{mediapath}.'fiche/'; + my $cpr = system($cmd); + if ($cpr != 0){ + $api->writelog("cmd failed:".$cmd."!"); + } + } foreach my $r (@{$agfiche}){ if (-e $cfg->{datapath}.'/'.$r->{nom_fichier}){ my $newfname = basename($r->{nom_fichier}); #$newfname =~ s/\s/_/g; - my $cmd = 'cp "'.$cfg->{datapath}.'/'.$r->{nom_fichier}.'" "'.$cfg->{mediapath}.'fiche/'.$newfname.'"'; - print $cmd."\n"; - system($cmd); + # my $cmd = 'cp "'.$cfg->{datapath}.'/'.$r->{nom_fichier}.'" "'.$cfg->{mediapath}.'fiche/'.$newfname.'"'; + # print $cmd."\n"; + # system($cmd); my $sql = "UPDATE article_groups set fichetechnique='fiche/".$newfname."' where article='".$r->{article}."';"; #system($cmd); @@ -466,16 +509,24 @@ if ($onlyget == 0){ #print "File ".dirname($RealBin).'/data/'.$r->{nom_fichier}." does not exist!\n"; } } - my $sqlcleanbro = "UPDATE article_groups set brochure=null;"; - $db->exec($sqlcleanbro); - my $agbrochure = $db->queryarray("select ag.article,woa.nom_fichier from wiges_ole_article woa join article_groups ag on (woa.article=ag.article) where woa.code_document ='art_fiche' and woa.nom_fichier is not null;"); + $api->writelog("update article_groups brochure..."); + #my $sqlcleanbro = "UPDATE article_groups set brochure=null;"; + #$db->exec($sqlcleanbro); + my $agbrochure = $db->queryarray("select ag.article,woa.nom_fichier from wiges_ole_article woa join article_groups ag on (woa.article=ag.article) where woa.code_document ='art_brochure' and woa.nom_fichier is not null;"); + if (scalar(@{$agbrochure}) > 0){ + my $cmd = 'rsync -av '.$cfg->{datapath}.'/art_brochure/ '.$cfg->{mediapath}.'brochure/'; + my $cpr = system($cmd); + if ($cpr != 0){ + $api->writelog("cmd failed:".$cmd."!"); + } + } foreach my $r (@{$agbrochure}){ if (-e $cfg->{datapath}.'/'.$r->{nom_fichier}){ my $newfname = basename($r->{nom_fichier}); #$newfname =~ s/\s/_/g; - my $cmd = 'cp "'.$cfg->{datapath}.'/'.$r->{nom_fichier}.'" "'.$cfg->{mediapath}.'brochure/'.$newfname.'"'; - print $cmd."\n"; - system($cmd); + # my $cmd = 'cp "'.$cfg->{datapath}.'/'.$r->{nom_fichier}.'" "'.$cfg->{mediapath}.'brochure/'.$newfname.'"'; + # print $cmd."\n"; + # system($cmd); my $sql = "UPDATE article_groups set brochure='brochure/".$newfname."' where article='".$r->{article}."';"; #system($cmd); @@ -489,8 +540,10 @@ if ($onlyget == 0){ #print "File ".dirname($RealBin).'/data/'.$r->{nom_fichier}." does not exist!\n"; } } + $api->writelog("End Copy article_groups..."); } if ($steps =~ /articles,/){ + $api->writelog("copy articles..."); my $xarticles = $db->queryarray("select wsa.id, wpc.article_generique as article_group, wsa.article, @@ -540,18 +593,20 @@ if ($onlyget == 0){ $db->exec($sql); } } - - my $sqlcleanft = "UPDATE articles set doc_ft=null;"; - $db->exec($sqlcleanft); + $api->writelog("update articles fiches..."); + #my $sqlcleanft = "UPDATE articles set doc_ft=null;"; + #$db->exec($sqlcleanft); my $agfiche = $db->queryarray("select ag.article,woa.nom_fichier from wiges_ole_article woa join articles ag on (woa.article=ag.article) where woa.code_document ='art_fiche' and woa.nom_fichier is not null;"); + if (scalar(@{$agfiche}) > 0){ + my $cmd = 'rsync -av '.$cfg->{datapath}.'/art_fiche/ '.$cfg->{mediapath}.'fiche/'; + my $cpr = system($cmd); + if ($cpr != 0){ + $api->writelog("cmd failed:".$cmd."!"); + } + } foreach my $r (@{$agfiche}){ if (-e $cfg->{datapath}.'/'.$r->{nom_fichier}){ my $newfname = basename($r->{nom_fichier}); - #$newfname =~ s/\s/_/g; - my $cmd = 'cp "'.$cfg->{datapath}.'/'.$r->{nom_fichier}.'" "'.$cfg->{mediapath}.'fiche/'.$newfname.'"'; - print $cmd."\n"; - system($cmd); - my $sql = "UPDATE articles set doc_ft='fiche/".$newfname."' where article='".$r->{article}."';"; #system($cmd); if ($cfg->{dryrun} == 1){ @@ -578,19 +633,19 @@ if ($onlyget == 0){ # $db->exec($sql); # } - + $api->writelog("end copy articles..."); } if (($steps =~ /prices,/) || ($steps =~ /articles,/)){ - my $arprice = $db->queryarray("select wvpw2.article,wvpw2.date_debut,wvpw2.pu_vente,(wvpw2.pu_vente * 0.17) + wvpw2.pu_vente as prix_brut from wiges_v_prix_vente wvpw2 join (select article,max(date_debut) as maxdate from wiges_v_prix_vente group by article) wvpv1 on (wvpw2.article=wvpv1.article and wvpw2.date_debut=wvpv1.maxdate);"); + $api->writelog("copy article prices..."); + my $arprice = $db->queryarray("select wvpw2.article,wvpw2.date_debut,wvpw2.pu_vente from wiges_v_prix_vente wvpw2 join (select article,max(date_debut) as maxdate from wiges_v_prix_vente group by article) wvpv1 on (wvpw2.article=wvpv1.article and wvpw2.date_debut=wvpv1.maxdate);"); foreach my $r (@{$arprice}){ my $nd = { 'date_debut' => $r->{'date_debut'}, 'cc_client' => 0, 'article' => $r->{'article'}, 'prix_net' => $r->{'pu_vente'}, - 'prix_brut' => $r->{'prix_brut'} }; - my $sql = $db->createReplaceDDL('article_prices',$nd,undef); + my $sql = $db->createUpsertDDL('article_prices',$nd,undef,'cc_client,article'); #print $sql."\n"; if ($cfg->{dryrun} == 1){ print $sql."\n"; @@ -601,16 +656,16 @@ if ($onlyget == 0){ } # #contrat cadre client - $arprice = $db->queryarray("select null as date_debut,wwv.client as cc_client,wwvp.article,wwvp.pu_net as prix_net,(wwvp.pu_net * 0.17) + wwvp.pu_net as prix_brut from wiges_w_ventes wwv join wiges_w_ventes_pos wwvp on (wwv.no_document=wwvp.no_document and wwv.document='CCC' and wwvp.document='CCC') where wwvp.document='CCC';"); + $api->writelog("copy contrat cadre prices..."); + $arprice = $db->queryarray("select null as date_debut,wwv.client as cc_client,wwvp.article,wwvp.pu_net as prix_net from wiges_w_ventes_pos wwvp join wiges_w_ventes wwv on (wwvp.no_document=wwv.no_document and wwv.document='CCC');"); foreach my $r (@{$arprice}){ my $nd = { 'date_debut' => $r->{'date_debut'}, 'cc_client' => $r->{'cc_client'}, 'article' => $r->{'article'}, - 'prix_net' => $r->{'prix_net'}, - 'prix_brut' => $r->{'prix_brut'} + 'prix_net' => $r->{'prix_net'} }; - my $sql = $db->createReplaceDDL('article_prices',$nd,undef); + my $sql = $db->createUpsertDDL('article_prices',$nd,undef,'cc_client,article'); #print $sql."\n"; if ($cfg->{dryrun} == 1){ print $sql."\n"; @@ -619,8 +674,10 @@ if ($onlyget == 0){ $db->exec($sql); } } + $api->writelog("end copy articles..."); } if ($steps =~ /stock,/ || ($steps =~ /articles,/)){ + $api->writelog("copy stock..."); my $stockar = $db->queryarray("select wvs.article,wvs.qte_stock ,wvs.qte_commandee - wvs.qte_reservee as qte_commandee from articles a join wiges_v_stock wvs on (a.article=wvs.article);"); foreach my $r (@{$stockar}){ my $nd = { @@ -640,13 +697,14 @@ if ($onlyget == 0){ } } } + $api->writelog("end copy stock..."); } my $endtime = POSIX::strftime('%F %T',localtime); -print "Started at: ".$starttime."\n"; -print "Normal End at: ".$endtime."\n"; -if ($type eq 'upd'){ - print "Total Articles updated: ".keys(%{$articles})."\n"; +$api->writelog("Started at: ".$starttime); +$api->writelog("Normal End at: ".$endtime); +if (($type eq 'upd' || $type eq 'data')){ + $api->writelog("Total Articles updated: ".keys(%{$articles})); } diff --git a/api/bin/lib/api.pm b/api/bin/lib/api.pm index 5e859d4..081c69f 100644 --- a/api/bin/lib/api.pm +++ b/api/bin/lib/api.pm @@ -104,9 +104,9 @@ sub getData($$){ } my $sql = $self->{dbh}->createReplaceDDL('wiges_'.$wtable,$r,undef); if ($self->{dryrun} == 0){ - open(FF,">>".$self->{sqlpath}."/".$self->{cdate}."_wiges_".$wtable.".sql"); - print FF $sql."\n"; - close(FF); + # open(FF,">>".$self->{sqlpath}."/".$self->{cdate}."_wiges_".$wtable.".sql"); + # print FF $sql."\n"; + # close(FF); $self->{dbh}->exec($sql); }else { print $sql."\n"; @@ -139,9 +139,9 @@ sub getUpdatedList($$){ foreach my $r (@{$curlres}){ my $sql = $self->{dbh}->createReplaceDDL('wiges_'.$wtable,$r,undef); if ($self->{dryrun} == 0){ - open(FF,">>".$self->{sqlpath}."/".$self->{cdate}."_wiges_".$wtable.".sql"); - print FF $sql."\n"; - close(FF); + # open(FF,">>".$self->{sqlpath}."/".$self->{cdate}."_wiges_".$wtable.".sql"); + # print FF $sql."\n"; + # close(FF); $self->{dbh}->exec($sql); }else { print $sql."\n"; @@ -198,9 +198,9 @@ sub getFiles(){ delete($r->{objet_base64}); $r->{nom_fichier} = $folder.'/'.$newarticle.lc($suffix); my $sql = $self->{dbh}->createReplaceDDL('wiges_'.$wtable,$r,undef); - open(FF,">>".$self->{sqlpath}."/".$self->{cdate}."_wiges_".$wtable.".sql"); - print FF $sql."\n"; - close(FF); + # open(FF,">>".$self->{sqlpath}."/".$self->{cdate}."_wiges_".$wtable.".sql"); + # print FF $sql."\n"; + # close(FF); $self->{dbh}->exec($sql); } else { if (! -d $self->{datapath}.'/'.$folder){ diff --git a/api/bin/tmpsync.sh b/api/bin/tmpsync.sh new file mode 100644 index 0000000..87da762 --- /dev/null +++ b/api/bin/tmpsync.sh @@ -0,0 +1,133 @@ +#!/bin/bash +CALLDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" +CMD='/usr/local/bin/perl /usr/home/qubewv/api/bin/getapidata.pl -l -t data -s articles -d' + +TMPLOG=${CALLDIR}"/tmp.log" +#${CMD} '{"gp_art":"A102","famille_art":"A1"}' +${CMD} '{"gp_art":"A104","famille_art":"A1"}' >> ${TMPLOG} +${CMD} '{"gp_art":"A301","famille_art":"A3"}' >> ${TMPLOG} +${CMD} '{"gp_art":"A303","famille_art":"A3"}' >> ${TMPLOG} +${CMD} '{"gp_art":"B111","famille_art":"B1"}' >> ${TMPLOG} +${CMD} '{"gp_art":"B112","famille_art":"B1"}' >> ${TMPLOG} +${CMD} '{"gp_art":"B113","famille_art":"B1"}' >> ${TMPLOG} +${CMD} '{"gp_art":"B114","famille_art":"B1"}' >> ${TMPLOG} +${CMD} '{"gp_art":"B116","famille_art":"B1"}' >> ${TMPLOG} +${CMD} '{"gp_art":"B117","famille_art":"B1"}' >> ${TMPLOG} +${CMD} '{"gp_art":"B118","famille_art":"B1"}' >> ${TMPLOG} +${CMD} '{"gp_art":"B122","famille_art":"B1"}' >> ${TMPLOG} +${CMD} '{"gp_art":"B124","famille_art":"B1"}' >> ${TMPLOG} +${CMD} '{"gp_art":"B132","famille_art":"B1"}' >> ${TMPLOG} +${CMD} '{"gp_art":"B603","famille_art":"B6"}' >> ${TMPLOG} +${CMD} '{"gp_art":"B604","famille_art":"B6"}' >> ${TMPLOG} +${CMD} '{"gp_art":"B609","famille_art":"B6"}' >> ${TMPLOG} +${CMD} '{"gp_art":"B610","famille_art":"B6"}' >> ${TMPLOG} +${CMD} '{"gp_art":"B611","famille_art":"B6"}' >> ${TMPLOG} +${CMD} '{"gp_art":"B612","famille_art":"B6"}' >> ${TMPLOG} +${CMD} '{"gp_art":"B701","famille_art":"B7"}' >> ${TMPLOG} +${CMD} '{"gp_art":"B708","famille_art":"B7"}' >> ${TMPLOG} +${CMD} '{"gp_art":"B801","famille_art":"B8"}' >> ${TMPLOG} +${CMD} '{"gp_art":"B802","famille_art":"B8"}' >> ${TMPLOG} +${CMD} '{"gp_art":"B803","famille_art":"B8"}' >> ${TMPLOG} +${CMD} '{"gp_art":"B804","famille_art":"B8"}' >> ${TMPLOG} +${CMD} '{"gp_art":"B806","famille_art":"B8"}' >> ${TMPLOG} +${CMD} '{"gp_art":"B807","famille_art":"B8"}' >> ${TMPLOG} +${CMD} '{"gp_art":"B808","famille_art":"B8"}' >> ${TMPLOG} +${CMD} '{"gp_art":"B809","famille_art":"B8"}' >> ${TMPLOG} +${CMD} '{"gp_art":"B810","famille_art":"B8"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C100","famille_art":"C1"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C101","famille_art":"C1"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C102","famille_art":"C1"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C105","famille_art":"C1"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C106","famille_art":"C1"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C107","famille_art":"C1"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C108","famille_art":"C1"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C109","famille_art":"C1"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C113","famille_art":"C1"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C115","famille_art":"C1"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C116","famille_art":"C1"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C131","famille_art":"C1"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C137","famille_art":"C1"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C147","famille_art":"C1"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C148","famille_art":"C1"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C200","famille_art":"C2"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C201","famille_art":"C2"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C204","famille_art":"C2"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C205","famille_art":"C2"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C206","famille_art":"C2"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C213","famille_art":"C2"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C218","famille_art":"C2"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C219","famille_art":"C2"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C220","famille_art":"C2"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C221","famille_art":"C2"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C222","famille_art":"C2"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C300","famille_art":"C3"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C301","famille_art":"C3"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C302","famille_art":"C3"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C303","famille_art":"C3"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C304","famille_art":"C3"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C306","famille_art":"C3"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C307","famille_art":"C3"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C309","famille_art":"C3"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C310","famille_art":"C3"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C311","famille_art":"C3"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C312","famille_art":"C3"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C314","famille_art":"C3"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C316","famille_art":"C3"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C318","famille_art":"C3"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C319","famille_art":"C3"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C322","famille_art":"C3"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C323","famille_art":"C3"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C325","famille_art":"C3"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C401","famille_art":"C4"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C407","famille_art":"C4"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C408","famille_art":"C4"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C409","famille_art":"C4"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C500","famille_art":"C5"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C505","famille_art":"C5"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C516","famille_art":"C5"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C517","famille_art":"C5"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C519","famille_art":"C5"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C520","famille_art":"C5"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C521","famille_art":"C5"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C522","famille_art":"C5"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C523","famille_art":"C5"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C600","famille_art":"C6"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C601","famille_art":"C6"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C602","famille_art":"C6"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C603","famille_art":"C6"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C604","famille_art":"C6"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C606","famille_art":"C6"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C607","famille_art":"C6"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C608","famille_art":"C6"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C609","famille_art":"C6"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C610","famille_art":"C6"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C613","famille_art":"C6"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C615","famille_art":"C6"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C616","famille_art":"C6"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C617","famille_art":"C6"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C622","famille_art":"C6"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C700","famille_art":"C7"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C701","famille_art":"C7"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C702","famille_art":"C7"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C706","famille_art":"C7"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C707","famille_art":"C7"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C708","famille_art":"C7"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C711","famille_art":"C7"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C712","famille_art":"C7"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C713","famille_art":"C7"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C716","famille_art":"C7"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C717","famille_art":"C7"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C718","famille_art":"C7"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C804","famille_art":"C8"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C805","famille_art":"C8"}' >> ${TMPLOG} +${CMD} '{"gp_art":"C806","famille_art":"C8"}' >> ${TMPLOG} +${CMD} '{"gp_art":"S500","famille_art":"S5"}' >> ${TMPLOG} +${CMD} '{"gp_art":"U300","famille_art":"U3"}' >> ${TMPLOG} +${CMD} '{"gp_art":"U301","famille_art":"U3"}' >> ${TMPLOG} +${CMD} '{"gp_art":"U303","famille_art":"U3"}' >> ${TMPLOG} +${CMD} '{"gp_art":"U304","famille_art":"U3"}' >> ${TMPLOG} +${CMD} '{"gp_art":"U305","famille_art":"U3"}' >> ${TMPLOG} +${CMD} '{"gp_art":"U307","famille_art":"U3"}' >> ${TMPLOG} +${CMD} '{"gp_art":"U308","famille_art":"U3"}' >> ${TMPLOG} +${CMD} '{"gp_art":"U309","famille_art":"U3"}' >> ${TMPLOG} +${CMD} '{"gp_art":"U315","famille_art":"U3"}' >> ${TMPLOG} \ No newline at end of file diff --git a/public_html/qubeshop/dev/genpwd.php b/dev/dev/genpwd.php similarity index 96% rename from public_html/qubeshop/dev/genpwd.php rename to dev/dev/genpwd.php index 83d65e7..9d9ad10 100644 --- a/public_html/qubeshop/dev/genpwd.php +++ b/dev/dev/genpwd.php @@ -1,36 +1,36 @@ - 0) { - // echo print_r($data)."\n"; - // } - // if (preg_match("/^-([a-z0-9])/", trim($argv[$i]),$data) > 0) { - // echo print_r($data)."\n"; - // } - - - // } - // echo print_r($argv[$i],true)."\n"; - // // if (preg_match('--([^=]+)=(.*)',$arg,$reg)) { - // // $_ARG[$reg[1]] = $reg[2]; - // // } elseif(preg_match('-([a-zA-Z0-9])',$arg,$reg)) { - // // $_ARG[$reg[1]] = 'true'; - // // } - - // } - // return $_ARG; - // } - //$myargs = arguments($argv); - //if (isset($myargs["pwd"])){ - - //} + 0) { + // echo print_r($data)."\n"; + // } + // if (preg_match("/^-([a-z0-9])/", trim($argv[$i]),$data) > 0) { + // echo print_r($data)."\n"; + // } + + + // } + // echo print_r($argv[$i],true)."\n"; + // // if (preg_match('--([^=]+)=(.*)',$arg,$reg)) { + // // $_ARG[$reg[1]] = $reg[2]; + // // } elseif(preg_match('-([a-zA-Z0-9])',$arg,$reg)) { + // // $_ARG[$reg[1]] = 'true'; + // // } + + // } + // return $_ARG; + // } + //$myargs = arguments($argv); + //if (isset($myargs["pwd"])){ + + //} ?> \ No newline at end of file diff --git a/dev/rsync_tohost.sh b/dev/rsync_tohost.sh new file mode 100644 index 0000000..0657229 --- /dev/null +++ b/dev/rsync_tohost.sh @@ -0,0 +1,3 @@ +#!/bin/bash + +rsync -av -n \ No newline at end of file diff --git a/dev/ventes_doctypes.txt b/dev/ventes_doctypes.txt new file mode 100644 index 0000000..9cd5d0a --- /dev/null +++ b/dev/ventes_doctypes.txt @@ -0,0 +1,14 @@ +BLC +BRC +CAT +CCC +CDC +FAC +FGC +LOC +NCC +OFC +OFT +ROC +RSC +SOC \ No newline at end of file diff --git a/public_html/qubeshop/api.php b/public_html/qubeshop/api.php index 05817d7..1c3bc11 100644 --- a/public_html/qubeshop/api.php +++ b/public_html/qubeshop/api.php @@ -1,4 +1,5 @@ $value) { @@ -19,7 +20,7 @@ $vars["sid"] = $_COOKIE[$cfg["cookie"]]; } $db = new database($cfg["db"]); - $se = new session($db); + $se = new session($db,$cfg); if (isset($vars["sid"]) && ($vars["sid"] != "")){ $vars["session"] = $se->getSession($vars["sid"]); diff --git a/public_html/qubeshop/apitest b/public_html/qubeshop/apitest new file mode 100644 index 0000000..cb134cb --- /dev/null +++ b/public_html/qubeshop/apitest @@ -0,0 +1,94 @@ +#!/usr/bin/php74 + $value) +{ + if ((is_file("lib/".$value) && strpos($value,'.') !== 0) && substr_compare($value, ".php", -strlen(".php")) === 0){ + require("lib/".$value); + } +} +$moduleclasses = scandir("lib/modules"); + foreach ($moduleclasses as $key => $value){ + if ((is_file("lib/modules/".$value) && strpos($value,'.') !== 0) && substr_compare($value, ".php", -strlen(".php")) === 0){ + //error_log($value); + require("lib/modules/".$value); + } + } + $vars["sid"] = ""; + if (isset($copt["s"])){ + $vars["sid"] = $copt["s"]; + } + $db = new database($cfg["db"]); + $se = new session($db,$cfg); + + if (isset($vars["sid"]) && ($vars["sid"] != "")){ + $vars["session"] = $se->getSession($vars["sid"]); + $sess = $vars["session"]; + if (!isset($sess["userlanguage"])){ + $sess["userlanguage"] = $cfg["lang"]; + + } + require_once("lib/lang/".$sess["userlanguage"].".php"); +} else { + //error_log("No Session!"); + $html["error"] = " No Authorization"; + //header('Content-Type: application/json'); + echo json_encode($html, JSON_PRETTY_PRINT); + exit(0); + } + $html = array(); + $params = json_decode($copt["p"], true); + if ($cfg["debug"] == 1){ + $html["params"] = $params; + // $html["cfg"] = $cfg; + } + if (isset($params["cl"]) && isset($params["fn"]) && $params["cl"] != "database"){ + if (class_exists($params["cl"])) { + $strclass=$params["cl"]; + $cl = new $strclass($db,$cfg); + if (!method_exists($cl,$params["fn"])){ + $html["error"] = "class ".$params["cl"]."->method ".$params["fn"]." does not exist!"; + } + $r = new ReflectionMethod($strclass, $params["fn"]); + $metparams = $r->getParameters(); + $fnp = array(); + $prcnt = 0; + foreach ($metparams as $p) { + if (isset($params[$p->getName()])){ + array_push($fnp,$params[$p->getName()]); + } + if ($p->isOptional() === false){ + $prcnt++; + } + $html["fnparams"][$p->getName()] = (($p->isOptional() === true)?"optional":"required"); + } + // print count($fnp)." < ".$prcnt."\n"; + if (count($fnp) < $prcnt){ + $html["error"] = "Function has ".$prcnt." required parameters!"; + } else { + $html["data"] = call_user_func_array(array($cl, $params["fn"]), $fnp); + } + } else { + $html["error"] = "class ".$params["cl"]." does not exist!"; + } +} + if (isset($copt["f"])){ + file_put_contents($copt["f"],json_encode($html, JSON_PRETTY_PRINT)."\n"); + } elseif (isset($copt["a"])){ + file_put_contents($copt["a"],json_encode($html, JSON_PRETTY_PRINT)."\n",FILE_APPEND); + } else { + echo json_encode($html, JSON_PRETTY_PRINT)."\n"; + } + +?> \ No newline at end of file diff --git a/public_html/qubeshop/composer/composer.json b/public_html/qubeshop/composer/composer.json index 5329140..913e88b 100644 --- a/public_html/qubeshop/composer/composer.json +++ b/public_html/qubeshop/composer/composer.json @@ -1,7 +1,6 @@ { - "require":{ - "mustache/mustache":"2.13.0", - "phpmailer/phpmailer":"~6.1", - "twig/twig": "^3.3" - } + "require": { + "phpmailer/phpmailer": "~6.1", + "twig/twig": "^3.3" + } } diff --git a/public_html/qubeshop/composer/composer.lock b/public_html/qubeshop/composer/composer.lock index 1f1b196..0d6647c 100644 --- a/public_html/qubeshop/composer/composer.lock +++ b/public_html/qubeshop/composer/composer.lock @@ -4,54 +4,8 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "2310ee9458f8097a59dc22cd3098a95f", + "content-hash": "f573b80bcff1eb214a1e170848d8062e", "packages": [ - { - "name": "mustache/mustache", - "version": "v2.13.0", - "source": { - "type": "git", - "url": "https://github.com/bobthecow/mustache.php.git", - "reference": "e95c5a008c23d3151d59ea72484d4f72049ab7f4" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/bobthecow/mustache.php/zipball/e95c5a008c23d3151d59ea72484d4f72049ab7f4", - "reference": "e95c5a008c23d3151d59ea72484d4f72049ab7f4", - "shasum": "" - }, - "require": { - "php": ">=5.2.4" - }, - "require-dev": { - "friendsofphp/php-cs-fixer": "~1.11", - "phpunit/phpunit": "~3.7|~4.0|~5.0" - }, - "type": "library", - "autoload": { - "psr-0": { - "Mustache": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Justin Hileman", - "email": "justin@justinhileman.info", - "homepage": "http://justinhileman.com" - } - ], - "description": "A Mustache implementation in PHP.", - "homepage": "https://github.com/bobthecow/mustache.php", - "keywords": [ - "mustache", - "templating" - ], - "time": "2019-11-23T21:40:31+00:00" - }, { "name": "phpmailer/phpmailer", "version": "v6.1.8", diff --git a/public_html/qubeshop/composer/vendor/autoload.php b/public_html/qubeshop/composer/vendor/autoload.php index 07174b9..2286229 100644 --- a/public_html/qubeshop/composer/vendor/autoload.php +++ b/public_html/qubeshop/composer/vendor/autoload.php @@ -1,7 +1,7 @@ - - * Jordi Boggiano - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Composer\Autoload; - -/** - * ClassLoader implements a PSR-0, PSR-4 and classmap class loader. - * - * $loader = new \Composer\Autoload\ClassLoader(); - * - * // register classes with namespaces - * $loader->add('Symfony\Component', __DIR__.'/component'); - * $loader->add('Symfony', __DIR__.'/framework'); - * - * // activate the autoloader - * $loader->register(); - * - * // to enable searching the include path (eg. for PEAR packages) - * $loader->setUseIncludePath(true); - * - * In this example, if you try to use a class in the Symfony\Component - * namespace or one of its children (Symfony\Component\Console for instance), - * the autoloader will first look for the class under the component/ - * directory, and it will then fallback to the framework/ directory if not - * found before giving up. - * - * This class is loosely based on the Symfony UniversalClassLoader. - * - * @author Fabien Potencier - * @author Jordi Boggiano - * @see https://www.php-fig.org/psr/psr-0/ - * @see https://www.php-fig.org/psr/psr-4/ - */ -class ClassLoader -{ - // PSR-4 - private $prefixLengthsPsr4 = array(); - private $prefixDirsPsr4 = array(); - private $fallbackDirsPsr4 = array(); - - // PSR-0 - private $prefixesPsr0 = array(); - private $fallbackDirsPsr0 = array(); - - private $useIncludePath = false; - private $classMap = array(); - private $classMapAuthoritative = false; - private $missingClasses = array(); - private $apcuPrefix; - - public function getPrefixes() - { - if (!empty($this->prefixesPsr0)) { - return call_user_func_array('array_merge', array_values($this->prefixesPsr0)); - } - - return array(); - } - - public function getPrefixesPsr4() - { - return $this->prefixDirsPsr4; - } - - public function getFallbackDirs() - { - return $this->fallbackDirsPsr0; - } - - public function getFallbackDirsPsr4() - { - return $this->fallbackDirsPsr4; - } - - public function getClassMap() - { - return $this->classMap; - } - - /** - * @param array $classMap Class to filename map - */ - public function addClassMap(array $classMap) - { - if ($this->classMap) { - $this->classMap = array_merge($this->classMap, $classMap); - } else { - $this->classMap = $classMap; - } - } - - /** - * Registers a set of PSR-0 directories for a given prefix, either - * appending or prepending to the ones previously set for this prefix. - * - * @param string $prefix The prefix - * @param array|string $paths The PSR-0 root directories - * @param bool $prepend Whether to prepend the directories - */ - public function add($prefix, $paths, $prepend = false) - { - if (!$prefix) { - if ($prepend) { - $this->fallbackDirsPsr0 = array_merge( - (array) $paths, - $this->fallbackDirsPsr0 - ); - } else { - $this->fallbackDirsPsr0 = array_merge( - $this->fallbackDirsPsr0, - (array) $paths - ); - } - - return; - } - - $first = $prefix[0]; - if (!isset($this->prefixesPsr0[$first][$prefix])) { - $this->prefixesPsr0[$first][$prefix] = (array) $paths; - - return; - } - if ($prepend) { - $this->prefixesPsr0[$first][$prefix] = array_merge( - (array) $paths, - $this->prefixesPsr0[$first][$prefix] - ); - } else { - $this->prefixesPsr0[$first][$prefix] = array_merge( - $this->prefixesPsr0[$first][$prefix], - (array) $paths - ); - } - } - - /** - * Registers a set of PSR-4 directories for a given namespace, either - * appending or prepending to the ones previously set for this namespace. - * - * @param string $prefix The prefix/namespace, with trailing '\\' - * @param array|string $paths The PSR-4 base directories - * @param bool $prepend Whether to prepend the directories - * - * @throws \InvalidArgumentException - */ - public function addPsr4($prefix, $paths, $prepend = false) - { - if (!$prefix) { - // Register directories for the root namespace. - if ($prepend) { - $this->fallbackDirsPsr4 = array_merge( - (array) $paths, - $this->fallbackDirsPsr4 - ); - } else { - $this->fallbackDirsPsr4 = array_merge( - $this->fallbackDirsPsr4, - (array) $paths - ); - } - } elseif (!isset($this->prefixDirsPsr4[$prefix])) { - // Register directories for a new namespace. - $length = strlen($prefix); - if ('\\' !== $prefix[$length - 1]) { - throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator."); - } - $this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length; - $this->prefixDirsPsr4[$prefix] = (array) $paths; - } elseif ($prepend) { - // Prepend directories for an already registered namespace. - $this->prefixDirsPsr4[$prefix] = array_merge( - (array) $paths, - $this->prefixDirsPsr4[$prefix] - ); - } else { - // Append directories for an already registered namespace. - $this->prefixDirsPsr4[$prefix] = array_merge( - $this->prefixDirsPsr4[$prefix], - (array) $paths - ); - } - } - - /** - * Registers a set of PSR-0 directories for a given prefix, - * replacing any others previously set for this prefix. - * - * @param string $prefix The prefix - * @param array|string $paths The PSR-0 base directories - */ - public function set($prefix, $paths) - { - if (!$prefix) { - $this->fallbackDirsPsr0 = (array) $paths; - } else { - $this->prefixesPsr0[$prefix[0]][$prefix] = (array) $paths; - } - } - - /** - * Registers a set of PSR-4 directories for a given namespace, - * replacing any others previously set for this namespace. - * - * @param string $prefix The prefix/namespace, with trailing '\\' - * @param array|string $paths The PSR-4 base directories - * - * @throws \InvalidArgumentException - */ - public function setPsr4($prefix, $paths) - { - if (!$prefix) { - $this->fallbackDirsPsr4 = (array) $paths; - } else { - $length = strlen($prefix); - if ('\\' !== $prefix[$length - 1]) { - throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator."); - } - $this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length; - $this->prefixDirsPsr4[$prefix] = (array) $paths; - } - } - - /** - * Turns on searching the include path for class files. - * - * @param bool $useIncludePath - */ - public function setUseIncludePath($useIncludePath) - { - $this->useIncludePath = $useIncludePath; - } - - /** - * Can be used to check if the autoloader uses the include path to check - * for classes. - * - * @return bool - */ - public function getUseIncludePath() - { - return $this->useIncludePath; - } - - /** - * Turns off searching the prefix and fallback directories for classes - * that have not been registered with the class map. - * - * @param bool $classMapAuthoritative - */ - public function setClassMapAuthoritative($classMapAuthoritative) - { - $this->classMapAuthoritative = $classMapAuthoritative; - } - - /** - * Should class lookup fail if not found in the current class map? - * - * @return bool - */ - public function isClassMapAuthoritative() - { - return $this->classMapAuthoritative; - } - - /** - * APCu prefix to use to cache found/not-found classes, if the extension is enabled. - * - * @param string|null $apcuPrefix - */ - public function setApcuPrefix($apcuPrefix) - { - $this->apcuPrefix = function_exists('apcu_fetch') && filter_var(ini_get('apc.enabled'), FILTER_VALIDATE_BOOLEAN) ? $apcuPrefix : null; - } - - /** - * The APCu prefix in use, or null if APCu caching is not enabled. - * - * @return string|null - */ - public function getApcuPrefix() - { - return $this->apcuPrefix; - } - - /** - * Registers this instance as an autoloader. - * - * @param bool $prepend Whether to prepend the autoloader or not - */ - public function register($prepend = false) - { - spl_autoload_register(array($this, 'loadClass'), true, $prepend); - } - - /** - * Unregisters this instance as an autoloader. - */ - public function unregister() - { - spl_autoload_unregister(array($this, 'loadClass')); - } - - /** - * Loads the given class or interface. - * - * @param string $class The name of the class - * @return bool|null True if loaded, null otherwise - */ - public function loadClass($class) - { - if ($file = $this->findFile($class)) { - includeFile($file); - - return true; - } - } - - /** - * Finds the path to the file where the class is defined. - * - * @param string $class The name of the class - * - * @return string|false The path if found, false otherwise - */ - public function findFile($class) - { - // class map lookup - if (isset($this->classMap[$class])) { - return $this->classMap[$class]; - } - if ($this->classMapAuthoritative || isset($this->missingClasses[$class])) { - return false; - } - if (null !== $this->apcuPrefix) { - $file = apcu_fetch($this->apcuPrefix.$class, $hit); - if ($hit) { - return $file; - } - } - - $file = $this->findFileWithExtension($class, '.php'); - - // Search for Hack files if we are running on HHVM - if (false === $file && defined('HHVM_VERSION')) { - $file = $this->findFileWithExtension($class, '.hh'); - } - - if (null !== $this->apcuPrefix) { - apcu_add($this->apcuPrefix.$class, $file); - } - - if (false === $file) { - // Remember that this class does not exist. - $this->missingClasses[$class] = true; - } - - return $file; - } - - private function findFileWithExtension($class, $ext) - { - // PSR-4 lookup - $logicalPathPsr4 = strtr($class, '\\', DIRECTORY_SEPARATOR) . $ext; - - $first = $class[0]; - if (isset($this->prefixLengthsPsr4[$first])) { - $subPath = $class; - while (false !== $lastPos = strrpos($subPath, '\\')) { - $subPath = substr($subPath, 0, $lastPos); - $search = $subPath . '\\'; - if (isset($this->prefixDirsPsr4[$search])) { - $pathEnd = DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $lastPos + 1); - foreach ($this->prefixDirsPsr4[$search] as $dir) { - if (file_exists($file = $dir . $pathEnd)) { - return $file; - } - } - } - } - } - - // PSR-4 fallback dirs - foreach ($this->fallbackDirsPsr4 as $dir) { - if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr4)) { - return $file; - } - } - - // PSR-0 lookup - if (false !== $pos = strrpos($class, '\\')) { - // namespaced class name - $logicalPathPsr0 = substr($logicalPathPsr4, 0, $pos + 1) - . strtr(substr($logicalPathPsr4, $pos + 1), '_', DIRECTORY_SEPARATOR); - } else { - // PEAR-like class name - $logicalPathPsr0 = strtr($class, '_', DIRECTORY_SEPARATOR) . $ext; - } - - if (isset($this->prefixesPsr0[$first])) { - foreach ($this->prefixesPsr0[$first] as $prefix => $dirs) { - if (0 === strpos($class, $prefix)) { - foreach ($dirs as $dir) { - if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) { - return $file; - } - } - } - } - } - - // PSR-0 fallback dirs - foreach ($this->fallbackDirsPsr0 as $dir) { - if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) { - return $file; - } - } - - // PSR-0 include paths. - if ($this->useIncludePath && $file = stream_resolve_include_path($logicalPathPsr0)) { - return $file; - } - - return false; - } -} - -/** - * Scope isolated include. - * - * Prevents access to $this/self from included files. - */ -function includeFile($file) -{ - include $file; -} + + * Jordi Boggiano + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace Composer\Autoload; + +/** + * ClassLoader implements a PSR-0, PSR-4 and classmap class loader. + * + * $loader = new \Composer\Autoload\ClassLoader(); + * + * // register classes with namespaces + * $loader->add('Symfony\Component', __DIR__.'/component'); + * $loader->add('Symfony', __DIR__.'/framework'); + * + * // activate the autoloader + * $loader->register(); + * + * // to enable searching the include path (eg. for PEAR packages) + * $loader->setUseIncludePath(true); + * + * In this example, if you try to use a class in the Symfony\Component + * namespace or one of its children (Symfony\Component\Console for instance), + * the autoloader will first look for the class under the component/ + * directory, and it will then fallback to the framework/ directory if not + * found before giving up. + * + * This class is loosely based on the Symfony UniversalClassLoader. + * + * @author Fabien Potencier + * @author Jordi Boggiano + * @see https://www.php-fig.org/psr/psr-0/ + * @see https://www.php-fig.org/psr/psr-4/ + */ +class ClassLoader +{ + // PSR-4 + private $prefixLengthsPsr4 = array(); + private $prefixDirsPsr4 = array(); + private $fallbackDirsPsr4 = array(); + + // PSR-0 + private $prefixesPsr0 = array(); + private $fallbackDirsPsr0 = array(); + + private $useIncludePath = false; + private $classMap = array(); + private $classMapAuthoritative = false; + private $missingClasses = array(); + private $apcuPrefix; + + public function getPrefixes() + { + if (!empty($this->prefixesPsr0)) { + return call_user_func_array('array_merge', array_values($this->prefixesPsr0)); + } + + return array(); + } + + public function getPrefixesPsr4() + { + return $this->prefixDirsPsr4; + } + + public function getFallbackDirs() + { + return $this->fallbackDirsPsr0; + } + + public function getFallbackDirsPsr4() + { + return $this->fallbackDirsPsr4; + } + + public function getClassMap() + { + return $this->classMap; + } + + /** + * @param array $classMap Class to filename map + */ + public function addClassMap(array $classMap) + { + if ($this->classMap) { + $this->classMap = array_merge($this->classMap, $classMap); + } else { + $this->classMap = $classMap; + } + } + + /** + * Registers a set of PSR-0 directories for a given prefix, either + * appending or prepending to the ones previously set for this prefix. + * + * @param string $prefix The prefix + * @param array|string $paths The PSR-0 root directories + * @param bool $prepend Whether to prepend the directories + */ + public function add($prefix, $paths, $prepend = false) + { + if (!$prefix) { + if ($prepend) { + $this->fallbackDirsPsr0 = array_merge( + (array) $paths, + $this->fallbackDirsPsr0 + ); + } else { + $this->fallbackDirsPsr0 = array_merge( + $this->fallbackDirsPsr0, + (array) $paths + ); + } + + return; + } + + $first = $prefix[0]; + if (!isset($this->prefixesPsr0[$first][$prefix])) { + $this->prefixesPsr0[$first][$prefix] = (array) $paths; + + return; + } + if ($prepend) { + $this->prefixesPsr0[$first][$prefix] = array_merge( + (array) $paths, + $this->prefixesPsr0[$first][$prefix] + ); + } else { + $this->prefixesPsr0[$first][$prefix] = array_merge( + $this->prefixesPsr0[$first][$prefix], + (array) $paths + ); + } + } + + /** + * Registers a set of PSR-4 directories for a given namespace, either + * appending or prepending to the ones previously set for this namespace. + * + * @param string $prefix The prefix/namespace, with trailing '\\' + * @param array|string $paths The PSR-4 base directories + * @param bool $prepend Whether to prepend the directories + * + * @throws \InvalidArgumentException + */ + public function addPsr4($prefix, $paths, $prepend = false) + { + if (!$prefix) { + // Register directories for the root namespace. + if ($prepend) { + $this->fallbackDirsPsr4 = array_merge( + (array) $paths, + $this->fallbackDirsPsr4 + ); + } else { + $this->fallbackDirsPsr4 = array_merge( + $this->fallbackDirsPsr4, + (array) $paths + ); + } + } elseif (!isset($this->prefixDirsPsr4[$prefix])) { + // Register directories for a new namespace. + $length = strlen($prefix); + if ('\\' !== $prefix[$length - 1]) { + throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator."); + } + $this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length; + $this->prefixDirsPsr4[$prefix] = (array) $paths; + } elseif ($prepend) { + // Prepend directories for an already registered namespace. + $this->prefixDirsPsr4[$prefix] = array_merge( + (array) $paths, + $this->prefixDirsPsr4[$prefix] + ); + } else { + // Append directories for an already registered namespace. + $this->prefixDirsPsr4[$prefix] = array_merge( + $this->prefixDirsPsr4[$prefix], + (array) $paths + ); + } + } + + /** + * Registers a set of PSR-0 directories for a given prefix, + * replacing any others previously set for this prefix. + * + * @param string $prefix The prefix + * @param array|string $paths The PSR-0 base directories + */ + public function set($prefix, $paths) + { + if (!$prefix) { + $this->fallbackDirsPsr0 = (array) $paths; + } else { + $this->prefixesPsr0[$prefix[0]][$prefix] = (array) $paths; + } + } + + /** + * Registers a set of PSR-4 directories for a given namespace, + * replacing any others previously set for this namespace. + * + * @param string $prefix The prefix/namespace, with trailing '\\' + * @param array|string $paths The PSR-4 base directories + * + * @throws \InvalidArgumentException + */ + public function setPsr4($prefix, $paths) + { + if (!$prefix) { + $this->fallbackDirsPsr4 = (array) $paths; + } else { + $length = strlen($prefix); + if ('\\' !== $prefix[$length - 1]) { + throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator."); + } + $this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length; + $this->prefixDirsPsr4[$prefix] = (array) $paths; + } + } + + /** + * Turns on searching the include path for class files. + * + * @param bool $useIncludePath + */ + public function setUseIncludePath($useIncludePath) + { + $this->useIncludePath = $useIncludePath; + } + + /** + * Can be used to check if the autoloader uses the include path to check + * for classes. + * + * @return bool + */ + public function getUseIncludePath() + { + return $this->useIncludePath; + } + + /** + * Turns off searching the prefix and fallback directories for classes + * that have not been registered with the class map. + * + * @param bool $classMapAuthoritative + */ + public function setClassMapAuthoritative($classMapAuthoritative) + { + $this->classMapAuthoritative = $classMapAuthoritative; + } + + /** + * Should class lookup fail if not found in the current class map? + * + * @return bool + */ + public function isClassMapAuthoritative() + { + return $this->classMapAuthoritative; + } + + /** + * APCu prefix to use to cache found/not-found classes, if the extension is enabled. + * + * @param string|null $apcuPrefix + */ + public function setApcuPrefix($apcuPrefix) + { + $this->apcuPrefix = function_exists('apcu_fetch') && filter_var(ini_get('apc.enabled'), FILTER_VALIDATE_BOOLEAN) ? $apcuPrefix : null; + } + + /** + * The APCu prefix in use, or null if APCu caching is not enabled. + * + * @return string|null + */ + public function getApcuPrefix() + { + return $this->apcuPrefix; + } + + /** + * Registers this instance as an autoloader. + * + * @param bool $prepend Whether to prepend the autoloader or not + */ + public function register($prepend = false) + { + spl_autoload_register(array($this, 'loadClass'), true, $prepend); + } + + /** + * Unregisters this instance as an autoloader. + */ + public function unregister() + { + spl_autoload_unregister(array($this, 'loadClass')); + } + + /** + * Loads the given class or interface. + * + * @param string $class The name of the class + * @return bool|null True if loaded, null otherwise + */ + public function loadClass($class) + { + if ($file = $this->findFile($class)) { + includeFile($file); + + return true; + } + } + + /** + * Finds the path to the file where the class is defined. + * + * @param string $class The name of the class + * + * @return string|false The path if found, false otherwise + */ + public function findFile($class) + { + // class map lookup + if (isset($this->classMap[$class])) { + return $this->classMap[$class]; + } + if ($this->classMapAuthoritative || isset($this->missingClasses[$class])) { + return false; + } + if (null !== $this->apcuPrefix) { + $file = apcu_fetch($this->apcuPrefix.$class, $hit); + if ($hit) { + return $file; + } + } + + $file = $this->findFileWithExtension($class, '.php'); + + // Search for Hack files if we are running on HHVM + if (false === $file && defined('HHVM_VERSION')) { + $file = $this->findFileWithExtension($class, '.hh'); + } + + if (null !== $this->apcuPrefix) { + apcu_add($this->apcuPrefix.$class, $file); + } + + if (false === $file) { + // Remember that this class does not exist. + $this->missingClasses[$class] = true; + } + + return $file; + } + + private function findFileWithExtension($class, $ext) + { + // PSR-4 lookup + $logicalPathPsr4 = strtr($class, '\\', DIRECTORY_SEPARATOR) . $ext; + + $first = $class[0]; + if (isset($this->prefixLengthsPsr4[$first])) { + $subPath = $class; + while (false !== $lastPos = strrpos($subPath, '\\')) { + $subPath = substr($subPath, 0, $lastPos); + $search = $subPath . '\\'; + if (isset($this->prefixDirsPsr4[$search])) { + $pathEnd = DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $lastPos + 1); + foreach ($this->prefixDirsPsr4[$search] as $dir) { + if (file_exists($file = $dir . $pathEnd)) { + return $file; + } + } + } + } + } + + // PSR-4 fallback dirs + foreach ($this->fallbackDirsPsr4 as $dir) { + if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr4)) { + return $file; + } + } + + // PSR-0 lookup + if (false !== $pos = strrpos($class, '\\')) { + // namespaced class name + $logicalPathPsr0 = substr($logicalPathPsr4, 0, $pos + 1) + . strtr(substr($logicalPathPsr4, $pos + 1), '_', DIRECTORY_SEPARATOR); + } else { + // PEAR-like class name + $logicalPathPsr0 = strtr($class, '_', DIRECTORY_SEPARATOR) . $ext; + } + + if (isset($this->prefixesPsr0[$first])) { + foreach ($this->prefixesPsr0[$first] as $prefix => $dirs) { + if (0 === strpos($class, $prefix)) { + foreach ($dirs as $dir) { + if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) { + return $file; + } + } + } + } + } + + // PSR-0 fallback dirs + foreach ($this->fallbackDirsPsr0 as $dir) { + if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) { + return $file; + } + } + + // PSR-0 include paths. + if ($this->useIncludePath && $file = stream_resolve_include_path($logicalPathPsr0)) { + return $file; + } + + return false; + } +} + +/** + * Scope isolated include. + * + * Prevents access to $this/self from included files. + */ +function includeFile($file) +{ + include $file; +} diff --git a/public_html/qubeshop/composer/vendor/composer/InstalledVersions.php b/public_html/qubeshop/composer/vendor/composer/InstalledVersions.php index 062ce9b..0fb90de 100644 --- a/public_html/qubeshop/composer/vendor/composer/InstalledVersions.php +++ b/public_html/qubeshop/composer/vendor/composer/InstalledVersions.php @@ -1,254 +1,245 @@ - - array ( - 'pretty_version' => 'dev-master', - 'version' => 'dev-master', - 'aliases' => - array ( - ), - 'reference' => 'cae2158618790f04515c21bd8e718117402242d5', - 'name' => '__root__', - ), - 'versions' => - array ( - '__root__' => - array ( - 'pretty_version' => 'dev-master', - 'version' => 'dev-master', - 'aliases' => - array ( - ), - 'reference' => 'cae2158618790f04515c21bd8e718117402242d5', - ), - 'mustache/mustache' => - array ( - 'pretty_version' => 'v2.13.0', - 'version' => '2.13.0.0', - 'aliases' => - array ( - ), - 'reference' => 'e95c5a008c23d3151d59ea72484d4f72049ab7f4', - ), - 'phpmailer/phpmailer' => - array ( - 'pretty_version' => 'v6.1.8', - 'version' => '6.1.8.0', - 'aliases' => - array ( - ), - 'reference' => '917ab212fa00dc6eacbb26e8bc387ebe40993bc1', - ), - 'symfony/polyfill-ctype' => - array ( - 'pretty_version' => 'v1.22.1', - 'version' => '1.22.1.0', - 'aliases' => - array ( - ), - 'reference' => 'c6c942b1ac76c82448322025e084cadc56048b4e', - ), - 'symfony/polyfill-mbstring' => - array ( - 'pretty_version' => 'v1.22.1', - 'version' => '1.22.1.0', - 'aliases' => - array ( - ), - 'reference' => '5232de97ee3b75b0360528dae24e73db49566ab1', - ), - 'twig/twig' => - array ( - 'pretty_version' => 'v3.3.0', - 'version' => '3.3.0.0', - 'aliases' => - array ( - ), - 'reference' => '1f3b7e2c06cc05d42936a8ad508ff1db7975cdc5', - ), - ), -); - - - - - - - -public static function getInstalledPackages() -{ -return array_keys(self::$installed['versions']); -} - - - - - - - - - -public static function isInstalled($packageName) -{ -return isset(self::$installed['versions'][$packageName]); -} - - - - - - - - - - - - - - -public static function satisfies(VersionParser $parser, $packageName, $constraint) -{ -$constraint = $parser->parseConstraints($constraint); -$provided = $parser->parseConstraints(self::getVersionRanges($packageName)); - -return $provided->matches($constraint); -} - - - - - - - - - - -public static function getVersionRanges($packageName) -{ -if (!isset(self::$installed['versions'][$packageName])) { -throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); -} - -$ranges = array(); -if (isset(self::$installed['versions'][$packageName]['pretty_version'])) { -$ranges[] = self::$installed['versions'][$packageName]['pretty_version']; -} -if (array_key_exists('aliases', self::$installed['versions'][$packageName])) { -$ranges = array_merge($ranges, self::$installed['versions'][$packageName]['aliases']); -} -if (array_key_exists('replaced', self::$installed['versions'][$packageName])) { -$ranges = array_merge($ranges, self::$installed['versions'][$packageName]['replaced']); -} -if (array_key_exists('provided', self::$installed['versions'][$packageName])) { -$ranges = array_merge($ranges, self::$installed['versions'][$packageName]['provided']); -} - -return implode(' || ', $ranges); -} - - - - - -public static function getVersion($packageName) -{ -if (!isset(self::$installed['versions'][$packageName])) { -throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); -} - -if (!isset(self::$installed['versions'][$packageName]['version'])) { -return null; -} - -return self::$installed['versions'][$packageName]['version']; -} - - - - - -public static function getPrettyVersion($packageName) -{ -if (!isset(self::$installed['versions'][$packageName])) { -throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); -} - -if (!isset(self::$installed['versions'][$packageName]['pretty_version'])) { -return null; -} - -return self::$installed['versions'][$packageName]['pretty_version']; -} - - - - - -public static function getReference($packageName) -{ -if (!isset(self::$installed['versions'][$packageName])) { -throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); -} - -if (!isset(self::$installed['versions'][$packageName]['reference'])) { -return null; -} - -return self::$installed['versions'][$packageName]['reference']; -} - - - - - -public static function getRootPackage() -{ -return self::$installed['root']; -} - - - - - - - -public static function getRawData() -{ -return self::$installed; -} - - - - - - - - - - - - - - - - - - - -public static function reload($data) -{ -self::$installed = $data; -} -} + + array ( + 'pretty_version' => 'dev-master', + 'version' => 'dev-master', + 'aliases' => + array ( + ), + 'reference' => 'd6d9f859a02aa1fe1966b13ccd2d4903b45b3808', + 'name' => '__root__', + ), + 'versions' => + array ( + '__root__' => + array ( + 'pretty_version' => 'dev-master', + 'version' => 'dev-master', + 'aliases' => + array ( + ), + 'reference' => 'd6d9f859a02aa1fe1966b13ccd2d4903b45b3808', + ), + 'phpmailer/phpmailer' => + array ( + 'pretty_version' => 'v6.1.8', + 'version' => '6.1.8.0', + 'aliases' => + array ( + ), + 'reference' => '917ab212fa00dc6eacbb26e8bc387ebe40993bc1', + ), + 'symfony/polyfill-ctype' => + array ( + 'pretty_version' => 'v1.22.1', + 'version' => '1.22.1.0', + 'aliases' => + array ( + ), + 'reference' => 'c6c942b1ac76c82448322025e084cadc56048b4e', + ), + 'symfony/polyfill-mbstring' => + array ( + 'pretty_version' => 'v1.22.1', + 'version' => '1.22.1.0', + 'aliases' => + array ( + ), + 'reference' => '5232de97ee3b75b0360528dae24e73db49566ab1', + ), + 'twig/twig' => + array ( + 'pretty_version' => 'v3.3.0', + 'version' => '3.3.0.0', + 'aliases' => + array ( + ), + 'reference' => '1f3b7e2c06cc05d42936a8ad508ff1db7975cdc5', + ), + ), +); + + + + + + + +public static function getInstalledPackages() +{ +return array_keys(self::$installed['versions']); +} + + + + + + + + + +public static function isInstalled($packageName) +{ +return isset(self::$installed['versions'][$packageName]); +} + + + + + + + + + + + + + + +public static function satisfies(VersionParser $parser, $packageName, $constraint) +{ +$constraint = $parser->parseConstraints($constraint); +$provided = $parser->parseConstraints(self::getVersionRanges($packageName)); + +return $provided->matches($constraint); +} + + + + + + + + + + +public static function getVersionRanges($packageName) +{ +if (!isset(self::$installed['versions'][$packageName])) { +throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); +} + +$ranges = array(); +if (isset(self::$installed['versions'][$packageName]['pretty_version'])) { +$ranges[] = self::$installed['versions'][$packageName]['pretty_version']; +} +if (array_key_exists('aliases', self::$installed['versions'][$packageName])) { +$ranges = array_merge($ranges, self::$installed['versions'][$packageName]['aliases']); +} +if (array_key_exists('replaced', self::$installed['versions'][$packageName])) { +$ranges = array_merge($ranges, self::$installed['versions'][$packageName]['replaced']); +} +if (array_key_exists('provided', self::$installed['versions'][$packageName])) { +$ranges = array_merge($ranges, self::$installed['versions'][$packageName]['provided']); +} + +return implode(' || ', $ranges); +} + + + + + +public static function getVersion($packageName) +{ +if (!isset(self::$installed['versions'][$packageName])) { +throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); +} + +if (!isset(self::$installed['versions'][$packageName]['version'])) { +return null; +} + +return self::$installed['versions'][$packageName]['version']; +} + + + + + +public static function getPrettyVersion($packageName) +{ +if (!isset(self::$installed['versions'][$packageName])) { +throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); +} + +if (!isset(self::$installed['versions'][$packageName]['pretty_version'])) { +return null; +} + +return self::$installed['versions'][$packageName]['pretty_version']; +} + + + + + +public static function getReference($packageName) +{ +if (!isset(self::$installed['versions'][$packageName])) { +throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); +} + +if (!isset(self::$installed['versions'][$packageName]['reference'])) { +return null; +} + +return self::$installed['versions'][$packageName]['reference']; +} + + + + + +public static function getRootPackage() +{ +return self::$installed['root']; +} + + + + + + + +public static function getRawData() +{ +return self::$installed; +} + + + + + + + + + + + + + + + + + + + +public static function reload($data) +{ +self::$installed = $data; +} +} diff --git a/public_html/qubeshop/composer/vendor/composer/LICENSE b/public_html/qubeshop/composer/vendor/composer/LICENSE index 6256709..f27399a 100644 --- a/public_html/qubeshop/composer/vendor/composer/LICENSE +++ b/public_html/qubeshop/composer/vendor/composer/LICENSE @@ -1,21 +1,21 @@ - -Copyright (c) Nils Adermann, Jordi Boggiano - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is furnished -to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - + +Copyright (c) Nils Adermann, Jordi Boggiano + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is furnished +to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + diff --git a/public_html/qubeshop/composer/vendor/composer/autoload_classmap.php b/public_html/qubeshop/composer/vendor/composer/autoload_classmap.php index de612c3..b26f1b1 100644 --- a/public_html/qubeshop/composer/vendor/composer/autoload_classmap.php +++ b/public_html/qubeshop/composer/vendor/composer/autoload_classmap.php @@ -1,10 +1,10 @@ - $vendorDir . '/composer/InstalledVersions.php', -); + $vendorDir . '/composer/InstalledVersions.php', +); diff --git a/public_html/qubeshop/composer/vendor/composer/autoload_files.php b/public_html/qubeshop/composer/vendor/composer/autoload_files.php index 746b15f..a3e38ec 100644 --- a/public_html/qubeshop/composer/vendor/composer/autoload_files.php +++ b/public_html/qubeshop/composer/vendor/composer/autoload_files.php @@ -1,11 +1,11 @@ - $vendorDir . '/symfony/polyfill-mbstring/bootstrap.php', - '320cde22f66dd4f5d3fd621d3e88b98f' => $vendorDir . '/symfony/polyfill-ctype/bootstrap.php', -); + $vendorDir . '/symfony/polyfill-ctype/bootstrap.php', + '0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => $vendorDir . '/symfony/polyfill-mbstring/bootstrap.php', +); diff --git a/public_html/qubeshop/composer/vendor/composer/autoload_namespaces.php b/public_html/qubeshop/composer/vendor/composer/autoload_namespaces.php index 9b4c97d..b7fc012 100644 --- a/public_html/qubeshop/composer/vendor/composer/autoload_namespaces.php +++ b/public_html/qubeshop/composer/vendor/composer/autoload_namespaces.php @@ -1,10 +1,9 @@ - array($vendorDir . '/mustache/mustache/src'), -); + array($vendorDir . '/twig/twig/src'), - 'Symfony\\Polyfill\\Mbstring\\' => array($vendorDir . '/symfony/polyfill-mbstring'), - 'Symfony\\Polyfill\\Ctype\\' => array($vendorDir . '/symfony/polyfill-ctype'), - 'PHPMailer\\PHPMailer\\' => array($vendorDir . '/phpmailer/phpmailer/src'), -); + array($vendorDir . '/twig/twig/src'), + 'Symfony\\Polyfill\\Mbstring\\' => array($vendorDir . '/symfony/polyfill-mbstring'), + 'Symfony\\Polyfill\\Ctype\\' => array($vendorDir . '/symfony/polyfill-ctype'), + 'PHPMailer\\PHPMailer\\' => array($vendorDir . '/phpmailer/phpmailer/src'), +); diff --git a/public_html/qubeshop/composer/vendor/composer/autoload_real.php b/public_html/qubeshop/composer/vendor/composer/autoload_real.php index 92ef08d..6bb7d88 100644 --- a/public_html/qubeshop/composer/vendor/composer/autoload_real.php +++ b/public_html/qubeshop/composer/vendor/composer/autoload_real.php @@ -1,75 +1,75 @@ -= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded()); - if ($useStaticLoader) { - require __DIR__ . '/autoload_static.php'; - - call_user_func(\Composer\Autoload\ComposerStaticInit885fbe19dab1b37aa91c383b45da3786::getInitializer($loader)); - } else { - $map = require __DIR__ . '/autoload_namespaces.php'; - foreach ($map as $namespace => $path) { - $loader->set($namespace, $path); - } - - $map = require __DIR__ . '/autoload_psr4.php'; - foreach ($map as $namespace => $path) { - $loader->setPsr4($namespace, $path); - } - - $classMap = require __DIR__ . '/autoload_classmap.php'; - if ($classMap) { - $loader->addClassMap($classMap); - } - } - - $loader->register(true); - - if ($useStaticLoader) { - $includeFiles = Composer\Autoload\ComposerStaticInit885fbe19dab1b37aa91c383b45da3786::$files; - } else { - $includeFiles = require __DIR__ . '/autoload_files.php'; - } - foreach ($includeFiles as $fileIdentifier => $file) { - composerRequire885fbe19dab1b37aa91c383b45da3786($fileIdentifier, $file); - } - - return $loader; - } -} - -function composerRequire885fbe19dab1b37aa91c383b45da3786($fileIdentifier, $file) -{ - if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) { - require $file; - - $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true; - } -} += 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded()); + if ($useStaticLoader) { + require __DIR__ . '/autoload_static.php'; + + call_user_func(\Composer\Autoload\ComposerStaticInit885fbe19dab1b37aa91c383b45da3786::getInitializer($loader)); + } else { + $map = require __DIR__ . '/autoload_namespaces.php'; + foreach ($map as $namespace => $path) { + $loader->set($namespace, $path); + } + + $map = require __DIR__ . '/autoload_psr4.php'; + foreach ($map as $namespace => $path) { + $loader->setPsr4($namespace, $path); + } + + $classMap = require __DIR__ . '/autoload_classmap.php'; + if ($classMap) { + $loader->addClassMap($classMap); + } + } + + $loader->register(true); + + if ($useStaticLoader) { + $includeFiles = Composer\Autoload\ComposerStaticInit885fbe19dab1b37aa91c383b45da3786::$files; + } else { + $includeFiles = require __DIR__ . '/autoload_files.php'; + } + foreach ($includeFiles as $fileIdentifier => $file) { + composerRequire885fbe19dab1b37aa91c383b45da3786($fileIdentifier, $file); + } + + return $loader; + } +} + +function composerRequire885fbe19dab1b37aa91c383b45da3786($fileIdentifier, $file) +{ + if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) { + require $file; + + $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true; + } +} diff --git a/public_html/qubeshop/composer/vendor/composer/autoload_static.php b/public_html/qubeshop/composer/vendor/composer/autoload_static.php index c3d745a..aaad859 100644 --- a/public_html/qubeshop/composer/vendor/composer/autoload_static.php +++ b/public_html/qubeshop/composer/vendor/composer/autoload_static.php @@ -1,73 +1,62 @@ - __DIR__ . '/..' . '/symfony/polyfill-mbstring/bootstrap.php', - '320cde22f66dd4f5d3fd621d3e88b98f' => __DIR__ . '/..' . '/symfony/polyfill-ctype/bootstrap.php', - ); - - public static $prefixLengthsPsr4 = array ( - 'T' => - array ( - 'Twig\\' => 5, - ), - 'S' => - array ( - 'Symfony\\Polyfill\\Mbstring\\' => 26, - 'Symfony\\Polyfill\\Ctype\\' => 23, - ), - 'P' => - array ( - 'PHPMailer\\PHPMailer\\' => 20, - ), - ); - - public static $prefixDirsPsr4 = array ( - 'Twig\\' => - array ( - 0 => __DIR__ . '/..' . '/twig/twig/src', - ), - 'Symfony\\Polyfill\\Mbstring\\' => - array ( - 0 => __DIR__ . '/..' . '/symfony/polyfill-mbstring', - ), - 'Symfony\\Polyfill\\Ctype\\' => - array ( - 0 => __DIR__ . '/..' . '/symfony/polyfill-ctype', - ), - 'PHPMailer\\PHPMailer\\' => - array ( - 0 => __DIR__ . '/..' . '/phpmailer/phpmailer/src', - ), - ); - - public static $prefixesPsr0 = array ( - 'M' => - array ( - 'Mustache' => - array ( - 0 => __DIR__ . '/..' . '/mustache/mustache/src', - ), - ), - ); - - public static $classMap = array ( - 'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php', - ); - - public static function getInitializer(ClassLoader $loader) - { - return \Closure::bind(function () use ($loader) { - $loader->prefixLengthsPsr4 = ComposerStaticInit885fbe19dab1b37aa91c383b45da3786::$prefixLengthsPsr4; - $loader->prefixDirsPsr4 = ComposerStaticInit885fbe19dab1b37aa91c383b45da3786::$prefixDirsPsr4; - $loader->prefixesPsr0 = ComposerStaticInit885fbe19dab1b37aa91c383b45da3786::$prefixesPsr0; - $loader->classMap = ComposerStaticInit885fbe19dab1b37aa91c383b45da3786::$classMap; - - }, null, ClassLoader::class); - } -} + __DIR__ . '/..' . '/symfony/polyfill-ctype/bootstrap.php', + '0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => __DIR__ . '/..' . '/symfony/polyfill-mbstring/bootstrap.php', + ); + + public static $prefixLengthsPsr4 = array ( + 'T' => + array ( + 'Twig\\' => 5, + ), + 'S' => + array ( + 'Symfony\\Polyfill\\Mbstring\\' => 26, + 'Symfony\\Polyfill\\Ctype\\' => 23, + ), + 'P' => + array ( + 'PHPMailer\\PHPMailer\\' => 20, + ), + ); + + public static $prefixDirsPsr4 = array ( + 'Twig\\' => + array ( + 0 => __DIR__ . '/..' . '/twig/twig/src', + ), + 'Symfony\\Polyfill\\Mbstring\\' => + array ( + 0 => __DIR__ . '/..' . '/symfony/polyfill-mbstring', + ), + 'Symfony\\Polyfill\\Ctype\\' => + array ( + 0 => __DIR__ . '/..' . '/symfony/polyfill-ctype', + ), + 'PHPMailer\\PHPMailer\\' => + array ( + 0 => __DIR__ . '/..' . '/phpmailer/phpmailer/src', + ), + ); + + public static $classMap = array ( + 'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php', + ); + + public static function getInitializer(ClassLoader $loader) + { + return \Closure::bind(function () use ($loader) { + $loader->prefixLengthsPsr4 = ComposerStaticInit885fbe19dab1b37aa91c383b45da3786::$prefixLengthsPsr4; + $loader->prefixDirsPsr4 = ComposerStaticInit885fbe19dab1b37aa91c383b45da3786::$prefixDirsPsr4; + $loader->classMap = ComposerStaticInit885fbe19dab1b37aa91c383b45da3786::$classMap; + + }, null, ClassLoader::class); + } +} diff --git a/public_html/qubeshop/composer/vendor/composer/installed.json b/public_html/qubeshop/composer/vendor/composer/installed.json index 94f5f42..bee6d50 100644 --- a/public_html/qubeshop/composer/vendor/composer/installed.json +++ b/public_html/qubeshop/composer/vendor/composer/installed.json @@ -1,54 +1,5 @@ { "packages": [ - { - "name": "mustache/mustache", - "version": "v2.13.0", - "version_normalized": "2.13.0.0", - "source": { - "type": "git", - "url": "https://github.com/bobthecow/mustache.php.git", - "reference": "e95c5a008c23d3151d59ea72484d4f72049ab7f4" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/bobthecow/mustache.php/zipball/e95c5a008c23d3151d59ea72484d4f72049ab7f4", - "reference": "e95c5a008c23d3151d59ea72484d4f72049ab7f4", - "shasum": "" - }, - "require": { - "php": ">=5.2.4" - }, - "require-dev": { - "friendsofphp/php-cs-fixer": "~1.11", - "phpunit/phpunit": "~3.7|~4.0|~5.0" - }, - "time": "2019-11-23T21:40:31+00:00", - "type": "library", - "installation-source": "dist", - "autoload": { - "psr-0": { - "Mustache": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Justin Hileman", - "email": "justin@justinhileman.info", - "homepage": "http://justinhileman.com" - } - ], - "description": "A Mustache implementation in PHP.", - "homepage": "https://github.com/bobthecow/mustache.php", - "keywords": [ - "mustache", - "templating" - ], - "install-path": "../mustache/mustache" - }, { "name": "phpmailer/phpmailer", "version": "v6.1.8", diff --git a/public_html/qubeshop/composer/vendor/composer/installed.php b/public_html/qubeshop/composer/vendor/composer/installed.php index f3f5b47..bb7936c 100644 --- a/public_html/qubeshop/composer/vendor/composer/installed.php +++ b/public_html/qubeshop/composer/vendor/composer/installed.php @@ -1,69 +1,60 @@ - - array ( - 'pretty_version' => 'dev-master', - 'version' => 'dev-master', - 'aliases' => - array ( - ), - 'reference' => 'cae2158618790f04515c21bd8e718117402242d5', - 'name' => '__root__', - ), - 'versions' => - array ( - '__root__' => - array ( - 'pretty_version' => 'dev-master', - 'version' => 'dev-master', - 'aliases' => - array ( - ), - 'reference' => 'cae2158618790f04515c21bd8e718117402242d5', - ), - 'mustache/mustache' => - array ( - 'pretty_version' => 'v2.13.0', - 'version' => '2.13.0.0', - 'aliases' => - array ( - ), - 'reference' => 'e95c5a008c23d3151d59ea72484d4f72049ab7f4', - ), - 'phpmailer/phpmailer' => - array ( - 'pretty_version' => 'v6.1.8', - 'version' => '6.1.8.0', - 'aliases' => - array ( - ), - 'reference' => '917ab212fa00dc6eacbb26e8bc387ebe40993bc1', - ), - 'symfony/polyfill-ctype' => - array ( - 'pretty_version' => 'v1.22.1', - 'version' => '1.22.1.0', - 'aliases' => - array ( - ), - 'reference' => 'c6c942b1ac76c82448322025e084cadc56048b4e', - ), - 'symfony/polyfill-mbstring' => - array ( - 'pretty_version' => 'v1.22.1', - 'version' => '1.22.1.0', - 'aliases' => - array ( - ), - 'reference' => '5232de97ee3b75b0360528dae24e73db49566ab1', - ), - 'twig/twig' => - array ( - 'pretty_version' => 'v3.3.0', - 'version' => '3.3.0.0', - 'aliases' => - array ( - ), - 'reference' => '1f3b7e2c06cc05d42936a8ad508ff1db7975cdc5', - ), - ), -); + + array ( + 'pretty_version' => 'dev-master', + 'version' => 'dev-master', + 'aliases' => + array ( + ), + 'reference' => 'd6d9f859a02aa1fe1966b13ccd2d4903b45b3808', + 'name' => '__root__', + ), + 'versions' => + array ( + '__root__' => + array ( + 'pretty_version' => 'dev-master', + 'version' => 'dev-master', + 'aliases' => + array ( + ), + 'reference' => 'd6d9f859a02aa1fe1966b13ccd2d4903b45b3808', + ), + 'phpmailer/phpmailer' => + array ( + 'pretty_version' => 'v6.1.8', + 'version' => '6.1.8.0', + 'aliases' => + array ( + ), + 'reference' => '917ab212fa00dc6eacbb26e8bc387ebe40993bc1', + ), + 'symfony/polyfill-ctype' => + array ( + 'pretty_version' => 'v1.22.1', + 'version' => '1.22.1.0', + 'aliases' => + array ( + ), + 'reference' => 'c6c942b1ac76c82448322025e084cadc56048b4e', + ), + 'symfony/polyfill-mbstring' => + array ( + 'pretty_version' => 'v1.22.1', + 'version' => '1.22.1.0', + 'aliases' => + array ( + ), + 'reference' => '5232de97ee3b75b0360528dae24e73db49566ab1', + ), + 'twig/twig' => + array ( + 'pretty_version' => 'v3.3.0', + 'version' => '3.3.0.0', + 'aliases' => + array ( + ), + 'reference' => '1f3b7e2c06cc05d42936a8ad508ff1db7975cdc5', + ), + ), +); diff --git a/public_html/qubeshop/composer/vendor/composer/platform_check.php b/public_html/qubeshop/composer/vendor/composer/platform_check.php index 70c743f..a8b98d5 100644 --- a/public_html/qubeshop/composer/vendor/composer/platform_check.php +++ b/public_html/qubeshop/composer/vendor/composer/platform_check.php @@ -1,26 +1,26 @@ -= 70205)) { - $issues[] = 'Your Composer dependencies require a PHP version ">= 7.2.5". You are running ' . PHP_VERSION . '.'; -} - -if ($issues) { - if (!headers_sent()) { - header('HTTP/1.1 500 Internal Server Error'); - } - if (!ini_get('display_errors')) { - if (PHP_SAPI === 'cli' || PHP_SAPI === 'phpdbg') { - fwrite(STDERR, 'Composer detected issues in your platform:' . PHP_EOL.PHP_EOL . implode(PHP_EOL, $issues) . PHP_EOL.PHP_EOL); - } elseif (!headers_sent()) { - echo 'Composer detected issues in your platform:' . PHP_EOL.PHP_EOL . str_replace('You are running '.PHP_VERSION.'.', '', implode(PHP_EOL, $issues)) . PHP_EOL.PHP_EOL; - } - } - trigger_error( - 'Composer detected issues in your platform: ' . implode(' ', $issues), - E_USER_ERROR - ); -} += 70205)) { + $issues[] = 'Your Composer dependencies require a PHP version ">= 7.2.5". You are running ' . PHP_VERSION . '.'; +} + +if ($issues) { + if (!headers_sent()) { + header('HTTP/1.1 500 Internal Server Error'); + } + if (!ini_get('display_errors')) { + if (PHP_SAPI === 'cli' || PHP_SAPI === 'phpdbg') { + fwrite(STDERR, 'Composer detected issues in your platform:' . PHP_EOL.PHP_EOL . implode(PHP_EOL, $issues) . PHP_EOL.PHP_EOL); + } elseif (!headers_sent()) { + echo 'Composer detected issues in your platform:' . PHP_EOL.PHP_EOL . str_replace('You are running '.PHP_VERSION.'.', '', implode(PHP_EOL, $issues)) . PHP_EOL.PHP_EOL; + } + } + trigger_error( + 'Composer detected issues in your platform: ' . implode(' ', $issues), + E_USER_ERROR + ); +} diff --git a/public_html/qubeshop/getsession b/public_html/qubeshop/getsession new file mode 100644 index 0000000..77a5ed7 --- /dev/null +++ b/public_html/qubeshop/getsession @@ -0,0 +1,32 @@ +#!/usr/bin/php74 + $value) +{ + if ((is_file("lib/".$value) && strpos($value,'.') !== 0) && substr_compare($value, ".php", -strlen(".php")) === 0){ + require("lib/".$value); + } +} +$moduleclasses = scandir("lib/modules"); + foreach ($moduleclasses as $key => $value){ + if ((is_file("lib/modules/".$value) && strpos($value,'.') !== 0) && substr_compare($value, ".php", -strlen(".php")) === 0){ + //error_log($value); + require("lib/modules/".$value); + } + } + $db = new database($cfg["db"]); + $res= $db->query("select se.id from sessions se join users us on (se.id_user=us.id) where us.useremail='".$copt["u"]."' order by se.created DESC LIMIT 1;"); + //echo print_r($res,true); + echo $res["id"]."\n"; + + +?> \ No newline at end of file diff --git a/public_html/qubeshop/index.php b/public_html/qubeshop/index.php index a5061fd..593c43a 100644 --- a/public_html/qubeshop/index.php +++ b/public_html/qubeshop/index.php @@ -8,7 +8,7 @@ $vars = array(); $db = new database($cfg["db"]); $sess = array(); - $se = new session($db); + $se = new session($db,$cfg); $vars["skeleton"] = "index.html"; $vars["page"] = 'index.html'; $vars["filepath"] = 'index.html'; @@ -24,12 +24,12 @@ if (isset($_POST)){ $postdata = $_POST; } - $vars["posts"] = $postdata; + #$vars["posts"] = $postdata; $vars["requri"] = $_SERVER["REQUEST_URI"]; if ($_SERVER["REQUEST_METHOD"] == "POST"){ - $vars["hasposts"] = $_POST; + #$vars["hasposts"] = $_POST; if (isset($_POST["btnlogin"])){ @@ -46,19 +46,6 @@ if ($_SERVER["REQUEST_METHOD"] == "POST"){ $vars["page"] = "message.html"; } } - - if (isset($_POST["btnforgotpassword"])){ - $ret = $se->passwordforgotten($_POST["email"]); - $vars["message"] = $ret["message"]; - $vars["messagetype"] = $ret["messagetype"]; - $vars["page"] = "message.html"; - } -} -if (isset($_POST["logout"]) || isset($_GET["logout"])){ - $se->deletesession($vars["sid"]); - $vars["sid"] = ""; - setcookie($cfg["cookie"], "", time()-3600,false,true); - } //error_log("before get session: ".$vars["sid"]); @@ -69,7 +56,7 @@ if (($vars["sid"] != "") && ($vars["sid"] != null)){ if ($sess == null){ $vars["sid"] = ""; $vars["skeleton"] = "login.html"; - } elseif ($vars["page"] == "login.html"){ + } elseif ($vars["filepath"] == "login.html"){ $vars["page"] = 'index.html'; } } else { @@ -153,8 +140,8 @@ $vars["session"] = $sess; // $mainsite = $m->render($vars["page"],$vars); // echo $mainsite; } -// if ($vars["contenttype"] == 'text/html' && $cfg["debug"] == 1){ -// echo "
".print_r($vars,true)."
"; -// } + if ($vars["contenttype"] == 'text/html' && $cfg["debug"] == 1){ + echo "
".print_r($vars,true)."
"; + } ?> \ No newline at end of file diff --git a/public_html/qubeshop/lib/.htaccess b/public_html/qubeshop/lib/.htaccess new file mode 100644 index 0000000..a7a56f7 --- /dev/null +++ b/public_html/qubeshop/lib/.htaccess @@ -0,0 +1 @@ +Require all denied \ No newline at end of file diff --git a/public_html/qubeshop/lib/config.php b/public_html/qubeshop/lib/config.php index d4f89c8..6a1373b 100644 --- a/public_html/qubeshop/lib/config.php +++ b/public_html/qubeshop/lib/config.php @@ -2,15 +2,23 @@ $cfg = array( "cookie" => "qubeshop", "lang" => "fr", - "debug" => 1, + "debug" => 0, // "db"=> array( // "type" => "mysql", // "host" => "dedi1781.your-server.de", // "dbname" => "qubewv_db3", - // "user" => "qubewv_3", + // "user" => "qubewv_db3", // "password" => "rhNpYMtXch1Lx6RQ", // "prefix" => "wiges", // ), + "mail" => array( + "server" => "mail.your-server.de", + "login" => "ksaffran@dks.lu", + "password" => "Fb1ia1ka", + "port" => 587, + "encrpytion" => "tls", + "debug" => 0 + ), "db"=> array( "type" => "mysql", "host" => "dedi1781.your-server.de", @@ -18,6 +26,7 @@ "user" => "qube_user4", "password" => "xevt4b99cNRHPEjF", "prefix" => "wiges", + "debug" => 0 ), "api" => array( "useragent" => "Qube Wiges WebSync", @@ -25,14 +34,15 @@ "password" => "poco941", "api-app-key" => "l9345y3e-4b56-3fb4-91ca-404f62d52jfs", "api-device-key" => "webdev", - "url" => "https://pointcomm.api.qube.wiges.lu/api/%%TABLE%%/search" + "url" => "https://pointcomm.api.qube.wiges.lu/api/%%TABLE%%/search", + "sqlpath" => '../api/bin/sql', + "logpath" => '../api/bin/log' ), "datapath" => "data/", "templatepath" => "tmpl/", "basepath" => substr(dirname($_SERVER["SCRIPT_FILENAME"]),strlen($_SERVER["DOCUMENT_ROOT"])).'/', "version" => date("YmdHis"), "cdate" => date("Ymd"), - "sqlpath" => '../api/bin/sql', - "logpath" => '../api/bin/log' + ); ?> \ No newline at end of file diff --git a/public_html/qubeshop/lib/database.php b/public_html/qubeshop/lib/database.php index 756c81a..9f86f31 100644 --- a/public_html/qubeshop/lib/database.php +++ b/public_html/qubeshop/lib/database.php @@ -2,19 +2,12 @@ class database { private $conn; private $dbconf; - private $debug=0; public function __construct($pdbconf){ $this->dbconf = $pdbconf; try { - //'mysql:host=;dbname=', $user, password - //'sqlite:/opt/databases/mydb.sq3 - //pgsql:host=localhost;port=5432;dbname=testdb;user=bruce;password=mypass - //error_log("connect: ".'sqlite:'.$this->dbconf["dbfile"]); - //echo print_r($this->dbconf,true); - //error_log(print_r($this->dbconf,true)); $this->conn = new PDO('mysql:host='.$this->dbconf["host"].';dbname='.$this->dbconf["dbname"],$this->dbconf["user"],$this->dbconf["password"],array(PDO::MYSQL_ATTR_INIT_COMMAND => "SET NAMES utf8")); } catch(PDOException $e){ - //file_put_contents('error.log',$e->getMessage(),FILE_APPEND); + print "Connection Error: ".$e->getMessage(); error_log("Connection Error: ".$e->getMessage()); } } @@ -35,8 +28,8 @@ class database { public function query($sql){ $result = array(); - if ($this->debug == 1){ - //error_log("QUERY:".$sql); + if ($this->dbconf["debug"] == 1){ + file_put_contents("log/sql.log","QUERY: ".$sql."\n",FILE_APPEND); } try { if ($this->conn){ @@ -55,8 +48,8 @@ class database { $result = null; $kresult = array(); - if ($this->debug == 1){ - // file_put_contents("sql.log",$sql,FILE_APPEND); + if ($this->dbconf["debug"] == 1){ + file_put_contents("log/sql.log","QUERYBYKEY: ".$sql."\n",FILE_APPEND); } try { if ($this->conn){ @@ -80,8 +73,8 @@ class database { public function queryarray($sql){ $result = null; - if ($this->debug == 1){ - //error_log("QUERYARRAY: ".$sql); + if ($this->dbconf["debug"] == 1){ + file_put_contents("log/sql.log","QUERYARRAY: ".$sql."\n",FILE_APPEND); } try { if ($this->conn){ @@ -97,8 +90,8 @@ class database { } public function exec($sql){ - if ($this->debug == 1){ - error_log("EXEC: ".$sql); + if ($this->dbconf["debug"] == 1){ + file_put_contents("log/sql.log","EXEC: ".$sql."\n",FILE_APPEND); } try { if ($this->conn){ diff --git a/public_html/qubeshop/lib/lang/de.php b/public_html/qubeshop/lib/lang/de.php index d776678..5588a41 100644 --- a/public_html/qubeshop/lib/lang/de.php +++ b/public_html/qubeshop/lib/lang/de.php @@ -1,5 +1,6 @@ "Diese Seite existiert nicht!", "search" => "suchen", "category" => "Kategorie", "cancel" => "Abrechen", @@ -19,6 +20,7 @@ "accountexists" => "Es existsiert bereits ein Benutzer mit dieser E-Mail-Adresse!", "emailinvalid" => "Bitte eine gültige E-Mail-adresse angeben!", "usernamechange" => "E-Mail (Login) ändern", - "newusername" => "E-mail Adresse" + "newusername" => "E-mail Adresse", + "unknownlogin" => "Login oder Passwort unbekannt!", ); ?> \ No newline at end of file diff --git a/public_html/qubeshop/lib/lang/fr.php b/public_html/qubeshop/lib/lang/fr.php index e42f43d..3f9f531 100644 --- a/public_html/qubeshop/lib/lang/fr.php +++ b/public_html/qubeshop/lib/lang/fr.php @@ -1,5 +1,6 @@ "Cette page n'existe pas!", "search" => "rechercher", "category" => "Catégorie", "cancel" => "Abondonner", @@ -13,7 +14,8 @@ "forgotpassword" => "mot de passe oublié?", "login" => "se connecter", "newpassword" => "Nouveau mot de passe", - "retypepwd" => "répéter mot de passe", + "asknewpassword" => "Demander nouveau mot de passe!", + "retypepwd" => "répéter mot de passe", "pwdcondition" => "les mots de passes doivent contenir au moins 10 lettres , au moins une lettre majuscule, une lettre minuscule et un nombre", "genpwd" => "Proposer un mot de passe", "accountexists" => "Il existe déjà un compte avec cette addresse E-Mail!", @@ -30,6 +32,23 @@ "message" => "message supplémentaire", "clientaddress" => "Addresse client", "numbondecommande" => "No. bon de commande", - "fichierbondecommande" => "Fichier Bon de commande" + "fichierbondecommande" => "Fichier Bon de commande", + "unknownlogin" => "Mot de passe ou Login inconnue!", + "loginlink" => "Retour au Login", + "linknewaccount" => "Création compte / se régistrer", + "registernewaccount" => "Demande de création de compte", + "name" => "Votre Nom", + "email" => "E-Mail", + "registrationtype" => "Type de régistration", + "isclient" => "mon entreprise est déjà client", + "newclient" => "nouvelle entreprise", + "noclient" => "Numéro Client", + "company" => "Nom de l'entreprise", + "address" => "addresse", + "zip" => "Code postale", + "city" => "Ville", + "country" => "Pays", + "novat" => "Numero de TVA internationale", + "register" => "envoyer la demande", ); ?> \ No newline at end of file diff --git a/public_html/qubeshop/lib/modules/Api.php b/public_html/qubeshop/lib/modules/Api.php index 3788259..420ba55 100644 --- a/public_html/qubeshop/lib/modules/Api.php +++ b/public_html/qubeshop/lib/modules/Api.php @@ -12,11 +12,14 @@ class Api{ $this->conn = null; } - private function exec_curl($table,$data){ + private function exec_curl($table,$data,$fields=null){ $result = array(); - file_put_contents($this->cfg["logpath"]."/".$this->cfg["cdate"]."_curl.log","send ".print_r($data,true)."\n",FILE_APPEND); + file_put_contents($this->cfg["api"]["logpath"]."/".$this->cfg["cdate"]."_curl.log","send ".print_r($data,true)."\n",FILE_APPEND); $data["firme"] = "1"; $newdata = array("where"=> $data); + if ($fields){ + $newdata["fields"] = $fields; + } //error_log("sending to ".$this->cfg["htxurl"]." -> ".$data); try { $curlconn = curl_init(); @@ -25,7 +28,7 @@ class Api{ curl_setopt($curlconn, CURLOPT_RETURNTRANSFER, 1); curl_setopt($curlconn, CURLOPT_POST, 1); curl_setopt($curlconn, CURLOPT_USERAGENT, $this->cfg['api']["useragent"]); - array_push($headers,'Authorization: Basic '.base64_encode($this->cfg['api']["htxuser"].':'.$this->cfg['api']["password"])); + array_push($headers,'Authorization: Basic '.base64_encode($this->cfg['api']["user"].':'.$this->cfg['api']["password"])); array_push($headers,'Content-Type: application/json'); array_push($headers,'Wisol-Api-App-Key: '.$this->cfg['api']["api-app-key"]); array_push($headers,'Wisol-Api-Device-Key: '.$this->cfg['api']["api-device-key"]); @@ -34,168 +37,187 @@ class Api{ $url = str_replace("%%TABLE%%",$table,$this->cfg["api"]["url"]); curl_setopt($curlconn, CURLOPT_URL, $url); curl_setopt($curlconn, CURLOPT_POSTFIELDS,json_encode( $newdata)); - curl_setopt($curlconn, CURLOPT_VERBOSE, 1); + curl_setopt($curlconn, CURLOPT_VERBOSE, 0); //curl_setopt($curlconn, CURLOPT_STDERR, $fp); $result = curl_exec($curlconn); - file_put_contents($this->cfg["logpath"]."/".$this->cfg["cdate"]."_curl.log","get: ".$result."\n",FILE_APPEND); + file_put_contents($this->cfg["api"]["logpath"]."/".$this->cfg["cdate"]."_curl.log","get: ".$result."\n",FILE_APPEND); if (curl_errno($curlconn)){ - file_put_contents($this->cfg["logpath"]."/".$this->cfg["cdate"]."_curl.log",'Curl Error:'.curl_error($curlconn)."\n",FILE_APPEND); + file_put_contents($this->cfg["api"]["logpath"]."/".$this->cfg["cdate"]."_curl.log",'Curl Error:'.curl_error($curlconn)."\n",FILE_APPEND); return null; } } catch(Exception $e){ - file_put_contents($this->cfg["logpath"]."/".$this->cfg["cdate"]."_curl.log","CURL init Error : ".$e->getMessage()."\n",FILE_APPEND); + file_put_contents($this->cfg["api"]["logpath"]."/".$this->cfg["cdate"]."_curl.log","CURL init Error : ".$e->getMessage()."\n",FILE_APPEND); + return array("error" => "curl API-Error"); } return json_decode($result); } - public function getAPIData($wtable,$def,$retdata=false){ - $res = array(); - foreach ($def as $a){ - $res = $this->exec_curl($wtable,$a); - if ($res){ - for ($i=0;$idbh->createReplaceDDL('wiges_'.$wtable,$res[$i],null); - file_put_contents($this->cfg["sqlpath"]."/".$this->cfg["cdate"]."_wiges_".$wtable.".sql",$sql,FILE_APPEND); - $this->dbh->exec($sql); - } - } - sleep(0.5); + public function isUserValid($useremail){ + if (!isset($useremail)){ return array();} + $ret = $this->exec_curl("s_contact_client",array("adresse_email" => $useremail,"on_actif" => "1"), array("client","personne","nom","adresse_email","on_actif","id")); + // echo count($ret)."\n"; + if (!isset($ret["error"])){ + return true; } - if ($retdata == true){ - return $res; - } else { - return array(); + //echo print_r($ret); + if (count($ret) > 0){ + if ($ret[0]["on_actif"] == "1"){ + return true; + } else { + $this->dbh->exec("DELETE from sessions where id_user=(select id from users where useremail='".$useremail."');"); + $this->dbh->exec("UPDATE users set isenabled=null where useremail='".$useremail."';"); + } } - } - - public function getAPIFiles($wtables,$def){ - // foreach my $a (keys(%{$def})){ - // # &writelog($wtable.": ".Dumper($def->{$a})); - // my $curlres = &sendcurl($wtable,$def->{$a}); - // if (ref($curlres) eq "ARRAY"){ - // &writelog("Length: ".scalar(@{$curlres})." IS ARRAY!"); - // if (scalar(@{$curlres}) > 0){ - // &writelog("Create SQL..."); - // foreach my $r (@{$curlres}){ - // my $suffix = $r->{nom_fichier}; - // my $newarticle = $r->{article}; - // $newarticle =~ s/\//_/g; - // $newarticle =~ s/\\/_/g; - // #$r->{article} = $articles->{$a}->{article}; - // $suffix =~ s/^\@file\@//; - // my $folder= $r->{code_document}; - // # $folder =~ s/art_//; - // if (! -d $cfg->{datapath}.'/'.$folder){ - // mkdir($cfg->{datapath}.'/'.$folder); - // } - // print "Create file ".$cfg->{datapath}.'/'.$folder.'/'.$newarticle.lc($suffix)."\n"; - // open(FILE,">".$cfg->{datapath}.'/'.$folder.'/'.$newarticle.lc($suffix)); - // print FILE decode_base64($r->{objet_base64}); - // close(FILE); - // delete($r->{objet_base64}); - // $r->{nom_fichier} = $folder.'/'.$newarticle.lc($suffix); - // my $sql = $this->dbh->createReplaceDDL('wiges_'.$wtable,$r,undef); - // open(FF,">>".$sqlpath."/".$cdate."_wiges_".$wtable.".sql"); - // print FF $sql."\n"; - // close(FF); - // $this->dbh->exec($sql); - // } - // } - // }else { - // &writelog("noArray:=>".Dumper($def)); - // } - // sleep(0.5); - // } - } - - public function getAPIClients(){ - $res = $this->dbh->query("select max(date_update) as date_update from wiges_s_client;"); - $clients = array('date_update' => array(">",$res["date_update"])); - $this->getAPIData('s_client',$clients,false); - } - - public function getAPIArticles(){ - $res = $this->dbh->query("select max(date_update) as date_update from wiges_s_article;"); - $clients = array('date_update' => array(">",$res["date_update"])); - $this->getAPIData('s_article',$clients,false); - } - - public function getAPIPrivateCatalogue(){ - $articles = $this->dbh->queryarray("select article as article_lie from wiges_s_article;"); - $this->getAPIData('private_catalogue',$articles); - } - - public function getAPIArticleFiles(){ - $articles = $this->dbh->queryarray("select article from wiges_s_article;"); - $this->getAPIFiles('ole_article',$articles); - } - - public function getAPIGroups(){ - $articles = $this->dbh->queryarray("select gp_art from wiges_s_article wsa group by gp_art;"); - $this->getData('s_groupe_article',$articles); - } - - public function getAPIFamilles(){ - $articles = $this->dbh->queryarray("select famille_art from wiges_s_article where famille_art is not null group by famille_art;"); - $this->getData('s_famille_article',$articles); - } - - public function getAPIVentes(){ - // if ($type eq 'full'){ - // $clients = $this->dbh->querysorted("select client from wiges_s_client;"); - // } elsif ($type eq 'upd') { - $res = $this->dbh->query("select max(dateheure_modif) as dateheure_modif from wiges_w_ventes;"); - $clients = array('dateheure_modif' => array(">",$res["dateheure_modif"])); - $this->getAPIData('w_ventes',$clients); - } - - public function getAPIVentesPos(){ - // if (($steps eq "") || ($steps =~ /ventes_pos,/)){ - // if ($type eq 'full'){ - // $articles = $this->dbh->querysorted("select article from wiges_s_article;"); - $res = $this->dbh->query("select max(dateheure_modif) as dateheure_modif from wiges_s_article;"); - $articles = array('dateheure_modif' => array(">",$res["dateheure_modif"])); - $this->getAPIData('w_ventes_pos',$articles); - } - - public function getAPIPrixVente(){ - $articles = $this->dbh->querysorted("select article from wiges_s_article;"); - $this->getAPIData('v_prix_vente',$articles); - } - - public function getStock(){ - $articles = $this->dbh->querysorted("select article from wiges_s_article;"); - $this->getAPIData('v_stock',$articles); - } + return false; + } + // public function getAPIData($wtable,$def,$retdata=false){ + // $res = array(); + // foreach ($def as $a){ + // $res = $this->exec_curl($wtable,$a); + // if ($res){ + // for ($i=0;$idbh->createReplaceDDL('wiges_'.$wtable,$res[$i],null); + // file_put_contents($this->cfg["sqlpath"]."/".$this->cfg["cdate"]."_wiges_".$wtable.".sql",$sql,FILE_APPEND); + // $this->dbh->exec($sql); + // } + // } + // sleep(0.5); + // } + // if ($retdata == true){ + // return $res; + // } else { + // return array(); + // } + // } + + // public function getAPIFiles($wtables,$def){ + // // foreach my $a (keys(%{$def})){ + // // # &writelog($wtable.": ".Dumper($def->{$a})); + // // my $curlres = &sendcurl($wtable,$def->{$a}); + // // if (ref($curlres) eq "ARRAY"){ + // // &writelog("Length: ".scalar(@{$curlres})." IS ARRAY!"); + // // if (scalar(@{$curlres}) > 0){ + // // &writelog("Create SQL..."); + // // foreach my $r (@{$curlres}){ + // // my $suffix = $r->{nom_fichier}; + // // my $newarticle = $r->{article}; + // // $newarticle =~ s/\//_/g; + // // $newarticle =~ s/\\/_/g; + // // #$r->{article} = $articles->{$a}->{article}; + // // $suffix =~ s/^\@file\@//; + // // my $folder= $r->{code_document}; + // // # $folder =~ s/art_//; + // // if (! -d $cfg->{datapath}.'/'.$folder){ + // // mkdir($cfg->{datapath}.'/'.$folder); + // // } + // // print "Create file ".$cfg->{datapath}.'/'.$folder.'/'.$newarticle.lc($suffix)."\n"; + // // open(FILE,">".$cfg->{datapath}.'/'.$folder.'/'.$newarticle.lc($suffix)); + // // print FILE decode_base64($r->{objet_base64}); + // // close(FILE); + // // delete($r->{objet_base64}); + // // $r->{nom_fichier} = $folder.'/'.$newarticle.lc($suffix); + // // my $sql = $this->dbh->createReplaceDDL('wiges_'.$wtable,$r,undef); + // // open(FF,">>".$sqlpath."/".$cdate."_wiges_".$wtable.".sql"); + // // print FF $sql."\n"; + // // close(FF); + // // $this->dbh->exec($sql); + // // } + // // } + // // }else { + // // &writelog("noArray:=>".Dumper($def)); + // // } + // // sleep(0.5); + // // } + // } + + // public function getAPIClients(){ + // $res = $this->dbh->query("select max(date_update) as date_update from wiges_s_client;"); + // $clients = array('date_update' => array(">",$res["date_update"])); + // $this->getAPIData('s_client',$clients,false); + // } + + // public function getAPIArticles(){ + // $res = $this->dbh->query("select max(date_update) as date_update from wiges_s_article;"); + // $clients = array('date_update' => array(">",$res["date_update"])); + // $this->getAPIData('s_article',$clients,false); + // } + + // public function getAPIPrivateCatalogue(){ + // $articles = $this->dbh->queryarray("select article as article_lie from wiges_s_article;"); + // $this->getAPIData('private_catalogue',$articles); + // } + + // public function getAPIArticleFiles(){ + // $articles = $this->dbh->queryarray("select article from wiges_s_article;"); + // $this->getAPIFiles('ole_article',$articles); + // } + + // public function getAPIGroups(){ + // $articles = $this->dbh->queryarray("select gp_art from wiges_s_article wsa group by gp_art;"); + // $this->getData('s_groupe_article',$articles); + // } + + // public function getAPIFamilles(){ + // $articles = $this->dbh->queryarray("select famille_art from wiges_s_article where famille_art is not null group by famille_art;"); + // $this->getData('s_famille_article',$articles); + // } + + // public function getAPIVentes(){ + // // if ($type eq 'full'){ + // // $clients = $this->dbh->querysorted("select client from wiges_s_client;"); + // // } elsif ($type eq 'upd') { + // $res = $this->dbh->query("select max(dateheure_modif) as dateheure_modif from wiges_w_ventes;"); + // $clients = array('dateheure_modif' => array(">",$res["dateheure_modif"])); + // $this->getAPIData('w_ventes',$clients); + // } + + // public function getAPIVentesPos(){ + // // if (($steps eq "") || ($steps =~ /ventes_pos,/)){ + // // if ($type eq 'full'){ + // // $articles = $this->dbh->querysorted("select article from wiges_s_article;"); + // $res = $this->dbh->query("select max(dateheure_modif) as dateheure_modif from wiges_s_article;"); + // $articles = array('dateheure_modif' => array(">",$res["dateheure_modif"])); + // $this->getAPIData('w_ventes_pos',$articles); + // } + + // public function getAPIPrixVente(){ + // $articles = $this->dbh->querysorted("select article from wiges_s_article;"); + // $this->getAPIData('v_prix_vente',$articles); + // } + + // public function getStock(){ + // $articles = $this->dbh->querysorted("select article from wiges_s_article;"); + // $this->getAPIData('v_stock',$articles); + // } - public function syncFamille(){ + // public function syncFamille(){ - } + // } - public function syncGroup(){ + // public function syncGroup(){ - } + // } - public function syncClients(){ + // public function syncClients(){ - } + // } - public function syncArticleGroups(){ + // public function syncArticleGroups(){ - } + // } - public function syncArticles(){ + // public function syncArticles(){ - } + // } - public function syncPrices(){ + // public function syncPrices(){ - } + // } - public function syncStock(){ + // public function syncStock(){ - } + // } } ?> \ No newline at end of file diff --git a/public_html/qubeshop/lib/modules/ArticleGroups.php b/public_html/qubeshop/lib/modules/ArticleGroups.php index 7f73d00..890d692 100644 --- a/public_html/qubeshop/lib/modules/ArticleGroups.php +++ b/public_html/qubeshop/lib/modules/ArticleGroups.php @@ -21,5 +21,10 @@ class ArticleGroups{ group by ar.famille_art,ar.gp_art order by catname DESC,groupname ASC;"); } + + public function getArticleGroupsByFamille($famille,$lang){ + if (!$lang){ $lang=$this->cfg["lang"];} + return $this->dbh->queryarray("select id,article,gp_art,famille_art,coalesce(titre_".$lang.",titre_".$this->cfg["lang"].") as titre,replace(image,' ','%20') as image from article_groups where famille_art='".$famille."' order by titre,article;"); + } } ?> \ No newline at end of file diff --git a/public_html/qubeshop/lib/modules/Articles.php b/public_html/qubeshop/lib/modules/Articles.php index 18d7843..b597808 100644 --- a/public_html/qubeshop/lib/modules/Articles.php +++ b/public_html/qubeshop/lib/modules/Articles.php @@ -20,8 +20,33 @@ class Articles{ public function getByFamillyAndGroups($famillycode,$groupcode,$lang){ if (!$lang){ $lang=$this->cfg["lang"];} - return $this->dbh->querybykey('article_group',"select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) -where article_group in(select article from article_groups where famille_art='".$famillycode."' and gp_art='".$groupcode."') group by id,article_group,article order by article_group,article;"); + //all articles returned grouped by article_group; + return $this->dbh->querybykey('article_group',"select ar.id,UPPER(ar.article_group) as article_group,ar.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 from articles ar left join article_prices ap on (ar.article=ap.article) where article_group in (select article from article_groups where famille_art='".$famillycode."' and gp_art='".$groupcode."') group by id,article_group,article order by article_group,article;"); + } + + public function getFavoriteArticleGroups($iduser,$lang){ + if (!$lang){ $lang=$this->cfg["lang"];} + + return $this->dbh->queryarray("select id,article,gp_art,famille_art,coalesce(titre_".$lang.",titre_".$this->cfg["lang"].") as titre,coalesce(description_".$lang.",description_".$this->cfg["lang"].") as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage from article_groups where article in (select article_group from articles where article in (select article from userfavorites where id_user='".$iduser."') group by article_group) order by titre,article;"); + } + + public function getFavoriteArticles($iduser,$lang){ + if (!$lang){ $lang=$this->cfg["lang"];} + //all articles returned grouped by article_group; + return $this->dbh->querybykey('article_group',"select ar.id,UPPER(ar.article_group) as article_group,ar.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 from articles ar left join article_prices ap on (ar.article=ap.article) where article_group in (select article_group from articles where article in (select article from userfavorites where id_user='".$iduser."') group by article_group) order by article_group,article;"); + } + + public function getNewArticleGroups($lang){ + if (!$lang){ $lang=$this->cfg["lang"];} + $datescount=6; + return $this->dbh->queryarray("select ag.id,ag.article,ag.gp_art,ag.famille_art,coalesce(ag.titre_".$lang.",ag.titre_".$this->cfg["lang"].") as titre,coalesce(ag.description_".$lang.",ag.description_".$this->cfg["lang"].") 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 from article_groups ag join (select creationdate from article_groups group by creationdate order by creationdate DESC LIMIT ".$datescount.") ad on (ag.creationdate=ad.creationdate) order by ag.titre,ag.article;"); + } + + public function getNewArticles($lang){ + if (!$lang){ $lang=$this->cfg["lang"];} + $datescount=6; + //all articles returned grouped by article_group; + return $this->dbh->querybykey('article_group',"select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,ar.qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar left join article_prices ap on (ar.article=ap.article) join (select article,creationdate from article_groups group by creationdate order by creationdate DESC LIMIT 6) ag on (ar.article_group=ag.article) group by ar.id,ar.article_group,ar.article order by ar.article_group,ar.article;"); } diff --git a/public_html/qubeshop/lib/modules/Email.php b/public_html/qubeshop/lib/modules/Email.php new file mode 100644 index 0000000..f599792 --- /dev/null +++ b/public_html/qubeshop/lib/modules/Email.php @@ -0,0 +1,76 @@ +dbh = $dblink; + $this->cfg = $cfg; + } + + public function __destruct(){ + $this->conn = null; + } + + public function SendEmail($from,$to,$cc,$bcc,$subject,$htmlbody,$altbody,$attachments){ + $mail = new PHPMailer(true); + if ($this->cfg["mail"]["debug"] == 1){ + $to = "ksaffran@dks.lu"; + $cc = null; + $bcc = null; + $mail->SMTPDebug = SMTP::DEBUG_SERVER; //Enable verbose debug output + } + try { + //Server settings + $mail->isSMTP(); //Send using SMTP + $mail->Host = $this->cfg["mail"]["server"]; //Set the SMTP server to send through + $mail->SMTPAuth = true; //Enable SMTP authentication + $mail->Username = $this->cfg["mail"]["login"]; //SMTP username + $mail->Password = $this->cfg["mail"]["password"]; + + if ($this->cfg["mail"]["port"] == 465){ + $mail->SMTPSecure = PHPMailer::ENCRYPTION_SMTPS; + } elseif ($this->cfg["mail"]["port"] == 587){ + $mail->SMTPSecure = PHPMailer::ENCRYPTION_STARTTLS; + } + $mail->Port = $this->cfg["mail"]["port"]; + //Recipients + $mail->setFrom($from); + $mail->addAddress($to); //Add a recipient + if ($from != $login){ + $mail->addReplyTo($from); + } + if ($cc){ + $mail->addCC($cc); + } + if ($bcc){ + $mail->addBCC($bcc); + } + foreach ($attachments as $atc){ + if (file_exists($atc)){ + $mail->addAttachment($atc); + } + } + //Content + $mail->isHTML(true); //Set email format to HTML + $mail->Subject = $subject; + if ($htmlbody){ + $mail->Body = $htmlbody; + } + if ($altbody){ + $mail->AltBody = $altbody; + } + + + $mail->send(); + + } catch (Exception $e) { + echo "Message could not be sent. Mailer Error: {$mail->ErrorInfo}"; + } + } +} +?> \ No newline at end of file diff --git a/public_html/qubeshop/lib/modules/Profile.php b/public_html/qubeshop/lib/modules/Profile.php index 6b92365..6c6a259 100644 --- a/public_html/qubeshop/lib/modules/Profile.php +++ b/public_html/qubeshop/lib/modules/Profile.php @@ -12,27 +12,29 @@ class Profile{ $this->conn = null; } - public function setNewPassword($email){ - $sql = "select id,userpassword,surname,prename from users where username='".$this->db->securetext($email)."';"; + public function sendNewPassword($email){ + $sql = "select id,useremail,nom from users where useremail='".$this->dbh->securetext($email)."';"; $ex = $db->query($sql); $data = array(); + $ret = array("status" => "error","msg" => "
E-mail ".$email." inconnue!
"); if (count($ex) > 0){ $newpwd = $this->randomstring(12); - $pwd = sha256_hex($newpwd); + $pwd = hash('sha256',$newpwd); $this->db->exec("UPDATE users SET userpassword = '".$pwd."' WHERE id='".$ex["id"]."';"); $data["password"] = $newpwd; - $data["username"] = $this->db->securetext($email); - #$data["name"] = $ex["0"]["prename"]." ".$ex["0"]["surname"]; - #$eml = sendemail->new(); - #$mret = $eml->sendemail('user_forgotpasswd',$p["email"],$data); - } + $data["username"] = $this->dbh->securetext($email); + $eml = new Email($this->dbh,$this->cfg); + $htmlbody ="Bonjour ".$ex["nom"].",

Vous avez demandés un nouveau mot de passe pour le shop du site qube-concretec.lu:
nouveau mot de passe: ".$newpwd."

Cordialement,
Webmaster Qube-concretec.lu"; + $eml->SendEmail($this->cfg["from"],$this->dbh->securetext($email),null,null,"Shop qube-concretec.lu : Votre demande de recevoir un nouveau mot de passe!",$htmlbody,null,null); + $ret = array("status" => "succes","msg" => "
Nous avons vous envoyé un e-mail avec un nouveau mot de passe!
"); + } } public function saveNewPassword($iduser,$pwdstr){ - if (length($this->db->securetext($pwdstr)) > 9){ - $pwd = hash('sha256',$db->securetext($pwdstr)); - $this->db->exec("UPDATE public.users SET userpassword = '".$pwd."' WHERE id='".$this->db->securetext($iduser)."';"); - } + if (length($this->dbh->securetext($pwdstr)) > 9){ + $pwd = hash('sha256',$this->dbh->securetext($pwdstr)); + $this->dbh->exec("UPDATE users SET userpassword = '".$pwd."' WHERE id='".$this->dbh->securetext($iduser)."';"); + } return array("OK"); } @@ -63,8 +65,9 @@ class Profile{ return 1; } - function getUserDetails(){ - + function getUserDetails($uid){ + return $this->dbh->query("select us.nom,us.useremail,us.id_client,us.usertype, us.userlanguage, us.isenabled,us.id_wiges,us.id_personne,cl.addresse_client,cl.id + from users us left join clients cl on (us.id_client=cl.client) where us.id='".$uid."';"); } } diff --git a/public_html/qubeshop/lib/modules/Shop.php b/public_html/qubeshop/lib/modules/Shop.php index a339e1a..3e7b75b 100644 --- a/public_html/qubeshop/lib/modules/Shop.php +++ b/public_html/qubeshop/lib/modules/Shop.php @@ -23,6 +23,17 @@ class Shop{ } + public function login($user,$pwd){ + $se = new session($this->dbh,$this->cfg); + $sess = $se->checklogin($user,$pwd); + $ret = array("status" => "error","msg" => "login or password unknown!"); + if ($sess["sid"] != "" && $sess["sid"] != null){ + setcookie($this->cfg["cookie"],$sess["sid"],0,"",$_SERVER["HTTP_HOST"],false,true); + $ret = array("status" => "ok","msg" => ""); + } + return $ret; + } + public function getByFamillyAndGroups($famillycode,$groupcode,$lang){ if (!$lang){ $lang=$this->cfg["lang"];} return $this->dbh->querybykey('article_group',"select id,article_group,article,gp_art,famille_art,c01,c02,c03,c04,c05 from articles where famille_art='".$famillycode."' and gp_art='".$groupcode."' order by article_group,article;"); diff --git a/public_html/qubeshop/lib/modules/User.php b/public_html/qubeshop/lib/modules/User.php new file mode 100644 index 0000000..8076142 --- /dev/null +++ b/public_html/qubeshop/lib/modules/User.php @@ -0,0 +1,41 @@ +dbh = $dblink; + $this->cfg = $cfg; + } + + public function __destruct(){ + $this->conn = null; + } + + public function setUserFaviorite($iduser,$article){ + $newid = $this->dbh->newuuid(); + $sql ="INSERT INTO userfavorites (id,id_user,article) VALUES ('".$newid."');"; + $ret = $this->dbh->exec($sql); + return $ret; + } + + public function removeUserFaviorite($iduser,$article){ + $sql = "DELETE FROM userfavorites WHERE id_user='".$iduser."' and article='".$article."';"; + $ret = $this->dbh->exec($sql); + return $ret; + } + + public function sendOrder(){ + + } + + public function sendAskPrice(){ + + } + + public function Registration($data){ + + } + +} +?> \ No newline at end of file diff --git a/public_html/qubeshop/lib/publicaliases.php b/public_html/qubeshop/lib/publicaliases.php new file mode 100644 index 0000000..2729619 --- /dev/null +++ b/public_html/qubeshop/lib/publicaliases.php @@ -0,0 +1,8 @@ + array("cl" => "User" ,"fn" => "registration"), + 'forgotpassword' => array("cl" => "Profile","fn" => "sendNewPassword"), + 'login' => array("cl" => "Shop" ,"fn" => "login") + ); + +?> \ No newline at end of file diff --git a/public_html/qubeshop/lib/session.php b/public_html/qubeshop/lib/session.php index dff3c65..c7c1a43 100644 --- a/public_html/qubeshop/lib/session.php +++ b/public_html/qubeshop/lib/session.php @@ -3,18 +3,24 @@ class session { private $session; private $dbh; private $cfg; - public function __construct($dblink){ + public function __construct($dblink,$cfg){ $this->dbh = $dblink; } public function getSession($sid){ - if (($sid !== null) && ($sid != "")){ - $sql = "select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se - join users us on (se.id_user=us.id) - left join clients cl on (us.id_client=cl.id) - where se.id = '".$this->dbh->securetext($sid)."' and us.isenabled ='1' and se.remoteaddr= '".$_SERVER["REMOTE_ADDR"]."' and se.useragent ='".$_SERVER["HTTP_USER_AGENT"]."';"; - $this->session = $this->dbh->query($sql); + $whereweb = ""; + if (isset($_SERVER["REMOTE_ADDR"]) && isset($_SERVER["HTTP_USER_AGENT"])){ + $whereweb = " and se.remoteaddr= '".$_SERVER["REMOTE_ADDR"]."' and se.useragent ='".$_SERVER["HTTP_USER_AGENT"]."' "; } + if (($sid !== null) && ($sid != "")){ + $sql = "select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '".$this->dbh->securetext($sid)."' and us.isenabled ='1' ".$whereweb.";"; + $this->session = $this->dbh->query($sql); + } + + //file_put_contents("session.log",$sql,FILE_APPEND); //file_put_contents("session.log","session:".print_r($this->session,true),FILE_APPEND); // if (count($this->session) == 0){ @@ -24,15 +30,21 @@ class session { } public function checklogin($login,$password){ - + global $lbl; $pwd = hash('sha256', trim($password)); - $ret = array("sid" => null,"messagetype" => "red", "message" => "Mot de passe ou Login inconnue!"); + $ret = array("sid" => null,"messagetype" => "red", "message" => $lbl["unknownlogin"]); $login = strtolower($login); $login=trim($login); - $sql = "select id from users where lower(useremail)=lower('".$this->dbh->securetext($login)."') and userpassword = '".$pwd."' and userpassword is not null and userpassword != '' and isenabled='1';"; + $sql = "select id,usertype from users where lower(useremail)=lower('".$this->dbh->securetext($login)."') and userpassword = '".$pwd."' and userpassword is not null and userpassword != '' and isenabled='1';"; $uid = $this->dbh->query($sql); + if (isset($uid["usertype"]) && $uid["usertype"] != 'admin'){ + $wapi = new Api($this->dbh,$this->cfg); + if ($wapi->isUserValid($login) == false){ + return $ret; + } + } //file_put_contents("session.log",print_r($uid,true)."\n".$sql,FILE_APPEND); if (isset($uid["id"])){ $newsess = $this->dbh->query("select uuid_v4() as sessid;"); diff --git a/public_html/qubeshop/log/.htaccess b/public_html/qubeshop/log/.htaccess new file mode 100644 index 0000000..a7a56f7 --- /dev/null +++ b/public_html/qubeshop/log/.htaccess @@ -0,0 +1 @@ +Require all denied \ No newline at end of file diff --git a/public_html/qubeshop/log/sql.log b/public_html/qubeshop/log/sql.log new file mode 100644 index 0000000..255279c --- /dev/null +++ b/public_html/qubeshop/log/sql.log @@ -0,0 +1,5173 @@ +QUERY: select id from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='::1' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('0d1c15a3-44de-4f10-b08f-1770a692fa8d','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','::1','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select ar.famille_art as code_famille,coalesce(pc.prod_cat_fr,pc.prod_cat_fr) as catname,ar.gp_art as group_code,coalesce(pg.prod_name_fr,pg.prod_name_fr) as groupname + from article_groups ar + left join prod_group pg on (ar.gp_art=pg.group_code ) + left join prod_cat pc on (ar.famille_art=pc.code_famille) + group by ar.famille_art,ar.gp_art + order by catname DESC,groupname ASC; +QUERYARRAY: select client, concat('(',client,') ',nom_1) as nom_1 from clients where client in (select cc_client from article_prices where cc_client != 0 group by cc_client) order by nom_1; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='A301' and famille_art='A3' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='A3' and gp_art='A301') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C105' and famille_art='C1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C1' and gp_art='C105') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C101' and famille_art='C1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C1' and gp_art='C101') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C115' and famille_art='C1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C1' and gp_art='C115') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C116' and famille_art='C1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C1' and gp_art='C116') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C407' and famille_art='C4' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C4' and gp_art='C407') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C401' and famille_art='C4' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C4' and gp_art='C401') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C409' and famille_art='C4' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C4' and gp_art='C409') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C505' and famille_art='C5' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C5' and gp_art='C505') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C220' and famille_art='C2' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C2' and gp_art='C220') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C221' and famille_art='C2' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C2' and gp_art='C221') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C204' and famille_art='C2' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C2' and gp_art='C204') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C218' and famille_art='C2' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C2' and gp_art='C218') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C101' and famille_art='C1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C1' and gp_art='C101') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='A301' and famille_art='A3' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='A3' and gp_art='A301') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='A303' and famille_art='A3' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='A3' and gp_art='A303') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C105' and famille_art='C1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C1' and gp_art='C105') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C106' and famille_art='C1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C1' and gp_art='C106') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C131' and famille_art='C1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C1' and gp_art='C131') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C109' and famille_art='C1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C1' and gp_art='C109') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C409' and famille_art='C4' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C4' and gp_art='C409') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C407' and famille_art='C4' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C4' and gp_art='C407') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C213' and famille_art='C2' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C2' and gp_art='C213') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C220' and famille_art='C2' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C2' and gp_art='C220') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C608' and famille_art='C6' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C6' and gp_art='C608') group by id,article_group,article order by article_group,article; +QUERY: select id from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('894223a7-167e-43de-a00d-057fd804279a','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select ar.famille_art as code_famille,coalesce(pc.prod_cat_fr,pc.prod_cat_fr) as catname,ar.gp_art as group_code,coalesce(pg.prod_name_fr,pg.prod_name_fr) as groupname + from article_groups ar + left join prod_group pg on (ar.gp_art=pg.group_code ) + left join prod_cat pc on (ar.famille_art=pc.code_famille) + group by ar.famille_art,ar.gp_art + order by catname DESC,groupname ASC; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='A301' and famille_art='A3' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='A3' and gp_art='A301') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='A303' and famille_art='A3' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='A3' and gp_art='A303') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C116' and famille_art='C1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C1' and gp_art='C116') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C105' and famille_art='C1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C1' and gp_art='C105') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C102' and famille_art='C1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C1' and gp_art='C102') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C147' and famille_art='C1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C1' and gp_art='C147') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C115' and famille_art='C1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C1' and gp_art='C115') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C101' and famille_art='C1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C1' and gp_art='C101') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C115' and famille_art='C1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C1' and gp_art='C115') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C101' and famille_art='C1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C1' and gp_art='C101') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C107' and famille_art='C1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C1' and gp_art='C107') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C213' and famille_art='C2' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C2' and gp_art='C213') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C218' and famille_art='C2' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C2' and gp_art='C218') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C219' and famille_art='C2' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C2' and gp_art='C219') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C200' and famille_art='C2' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C2' and gp_art='C200') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C603' and famille_art='C6' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C6' and gp_art='C603') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C622' and famille_art='C6' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C6' and gp_art='C622') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C620' and famille_art='C6' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C6' and gp_art='C620') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C601' and famille_art='C6' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C6' and gp_art='C601') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='B612' and famille_art='B6' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='B6' and gp_art='B612') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='B610' and famille_art='B6' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='B6' and gp_art='B610') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='B609' and famille_art='B6' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='B6' and gp_art='B609') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='B708' and famille_art='B7' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='B7' and gp_art='B708') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='B804' and famille_art='B8' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='B8' and gp_art='B804') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='B807' and famille_art='B8' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='B8' and gp_art='B807') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='B806' and famille_art='B8' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='B8' and gp_art='B806') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='B809' and famille_art='B8' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='B8' and gp_art='B809') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='B803' and famille_art='B8' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='B8' and gp_art='B803') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C718' and famille_art='C7' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C7' and gp_art='C718') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C712' and famille_art='C7' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C7' and gp_art='C712') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C716' and famille_art='C7' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C7' and gp_art='C716') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C717' and famille_art='C7' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C7' and gp_art='C717') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C708' and famille_art='C7' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C7' and gp_art='C708') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='B112' and famille_art='B1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='B1' and gp_art='B112') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='B111' and famille_art='B1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='B1' and gp_art='B111') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='B116' and famille_art='B1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='B1' and gp_art='B116') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C518' and famille_art='C5' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C5' and gp_art='C518') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C523' and famille_art='C5' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C5' and gp_art='C523') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C116' and famille_art='C1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C1' and gp_art='C116') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C137' and famille_art='C1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C1' and gp_art='C137') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C109' and famille_art='C1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C1' and gp_art='C109') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C148' and famille_art='C1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C1' and gp_art='C148') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C131' and famille_art='C1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C1' and gp_art='C131') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C105' and famille_art='C1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C1' and gp_art='C105') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C115' and famille_art='C1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C1' and gp_art='C115') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='A105' and famille_art='A1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='A1' and gp_art='A105') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='A102' and famille_art='A1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='A1' and gp_art='A102') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='A104' and famille_art='A1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='A1' and gp_art='A104') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C302' and famille_art='C3' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C3' and gp_art='C302') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C306' and famille_art='C3' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C3' and gp_art='C306') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C311' and famille_art='C3' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C3' and gp_art='C311') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C316' and famille_art='C3' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C3' and gp_art='C316') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C322' and famille_art='C3' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C3' and gp_art='C322') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C307' and famille_art='C3' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C3' and gp_art='C307') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C319' and famille_art='C3' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '894223a7-167e-43de-a00d-057fd804279a' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C3' and gp_art='C319') group by id,article_group,article order by article_group,article; +QUERY: select id from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('a008e873-aa27-4114-a42b-996d00ab370f','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select ar.famille_art as code_famille,coalesce(pc.prod_cat_fr,pc.prod_cat_fr) as catname,ar.gp_art as group_code,coalesce(pg.prod_name_fr,pg.prod_name_fr) as groupname + from article_groups ar + left join prod_group pg on (ar.gp_art=pg.group_code ) + left join prod_cat pc on (ar.famille_art=pc.code_famille) + group by ar.famille_art,ar.gp_art + order by catname DESC,groupname ASC; +QUERYARRAY: select client, concat('(',client,') ',nom_1) as nom_1 from clients where client in (select cc_client from article_prices where cc_client != 0 group by cc_client) order by nom_1; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select client, concat('(',client,') ',nom_1) as nom_1 from clients where client in (select cc_client from article_prices where cc_client != 0 group by cc_client) order by nom_1; +QUERYARRAY: select ar.famille_art as code_famille,coalesce(pc.prod_cat_fr,pc.prod_cat_fr) as catname,ar.gp_art as group_code,coalesce(pg.prod_name_fr,pg.prod_name_fr) as groupname + from article_groups ar + left join prod_group pg on (ar.gp_art=pg.group_code ) + left join prod_cat pc on (ar.famille_art=pc.code_famille) + group by ar.famille_art,ar.gp_art + order by catname DESC,groupname ASC; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where article in ( + select article_group from article_prices ap join articles a on (a.article=ap.article) where ap.cc_client='10041'); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,ar.article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,ar.qte_stock,ar.qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from article_prices ap join articles ar on (ar.article=ap.article) where ap.cc_client='10041'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select client, concat('(',client,') ',nom_1) as nom_1 from clients where client in (select cc_client from article_prices where cc_client != 0 group by cc_client) order by nom_1; +QUERYARRAY: select ar.famille_art as code_famille,coalesce(pc.prod_cat_fr,pc.prod_cat_fr) as catname,ar.gp_art as group_code,coalesce(pg.prod_name_fr,pg.prod_name_fr) as groupname + from article_groups ar + left join prod_group pg on (ar.gp_art=pg.group_code ) + left join prod_cat pc on (ar.famille_art=pc.code_famille) + group by ar.famille_art,ar.gp_art + order by catname DESC,groupname ASC; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='A301' and famille_art='A3' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='A3' and gp_art='A301') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where article in ( + select article_group from article_prices ap join articles a on (a.article=ap.article) where ap.cc_client='10038'); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,ar.article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,ar.qte_stock,ar.qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from article_prices ap join articles ar on (ar.article=ap.article) where ap.cc_client='10038'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select ar.famille_art as code_famille,coalesce(pc.prod_cat_fr,pc.prod_cat_fr) as catname,ar.gp_art as group_code,coalesce(pg.prod_name_fr,pg.prod_name_fr) as groupname + from article_groups ar + left join prod_group pg on (ar.gp_art=pg.group_code ) + left join prod_cat pc on (ar.famille_art=pc.code_famille) + group by ar.famille_art,ar.gp_art + order by catname DESC,groupname ASC; +QUERYARRAY: select client, concat('(',client,') ',nom_1) as nom_1 from clients where client in (select cc_client from article_prices where cc_client != 0 group by cc_client) order by nom_1; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where article in ( + select article_group from article_prices ap join articles a on (a.article=ap.article) where ap.cc_client='10041'); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,ar.article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,ar.qte_stock,ar.qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from article_prices ap join articles ar on (ar.article=ap.article) where ap.cc_client='10041'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select client, concat('(',client,') ',nom_1) as nom_1 from clients where client in (select cc_client from article_prices where cc_client != 0 group by cc_client) order by nom_1; +QUERYARRAY: select ar.famille_art as code_famille,coalesce(pc.prod_cat_fr,pc.prod_cat_fr) as catname,ar.gp_art as group_code,coalesce(pg.prod_name_fr,pg.prod_name_fr) as groupname + from article_groups ar + left join prod_group pg on (ar.gp_art=pg.group_code ) + left join prod_cat pc on (ar.famille_art=pc.code_famille) + group by ar.famille_art,ar.gp_art + order by catname DESC,groupname ASC; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where article in ( + select article_group from article_prices ap join articles a on (a.article=ap.article) where ap.cc_client='10038'); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,ar.article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,ar.qte_stock,ar.qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from article_prices ap join articles ar on (ar.article=ap.article) where ap.cc_client='10038'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select client, concat('(',client,') ',nom_1) as nom_1 from clients where client in (select cc_client from article_prices where cc_client != 0 group by cc_client) order by nom_1; +QUERYARRAY: select ar.famille_art as code_famille,coalesce(pc.prod_cat_fr,pc.prod_cat_fr) as catname,ar.gp_art as group_code,coalesce(pg.prod_name_fr,pg.prod_name_fr) as groupname + from article_groups ar + left join prod_group pg on (ar.gp_art=pg.group_code ) + left join prod_cat pc on (ar.famille_art=pc.code_famille) + group by ar.famille_art,ar.gp_art + order by catname DESC,groupname ASC; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where article in ( + select article_group from article_prices ap join articles a on (a.article=ap.article) where ap.cc_client='10041'); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,ar.article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,ar.qte_stock,ar.qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from article_prices ap join articles ar on (ar.article=ap.article) where ap.cc_client='10041'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select ar.famille_art as code_famille,coalesce(pc.prod_cat_fr,pc.prod_cat_fr) as catname,ar.gp_art as group_code,coalesce(pg.prod_name_fr,pg.prod_name_fr) as groupname + from article_groups ar + left join prod_group pg on (ar.gp_art=pg.group_code ) + left join prod_cat pc on (ar.famille_art=pc.code_famille) + group by ar.famille_art,ar.gp_art + order by catname DESC,groupname ASC; +QUERYARRAY: select client, concat('(',client,') ',nom_1) as nom_1 from clients where client in (select cc_client from article_prices where cc_client != 0 group by cc_client) order by nom_1; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C101' and famille_art='C1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C1' and gp_art='C101') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C115' and famille_art='C1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C1' and gp_art='C115') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where article in ( + select article_group from article_prices ap join articles a on (a.article=ap.article) where ap.cc_client='10038'); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,ar.article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,ar.qte_stock,ar.qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from article_prices ap join articles ar on (ar.article=ap.article) where ap.cc_client='10038'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select ar.famille_art as code_famille,coalesce(pc.prod_cat_fr,pc.prod_cat_fr) as catname,ar.gp_art as group_code,coalesce(pg.prod_name_fr,pg.prod_name_fr) as groupname + from article_groups ar + left join prod_group pg on (ar.gp_art=pg.group_code ) + left join prod_cat pc on (ar.famille_art=pc.code_famille) + group by ar.famille_art,ar.gp_art + order by catname DESC,groupname ASC; +QUERYARRAY: select client, concat('(',client,') ',nom_1) as nom_1 from clients where client in (select cc_client from article_prices where cc_client != 0 group by cc_client) order by nom_1; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C407' and famille_art='C4' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C4' and gp_art='C407') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where article in ( + select article_group from article_prices ap join articles a on (a.article=ap.article) where ap.cc_client='10038'); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,ar.article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,ar.qte_stock,ar.qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from article_prices ap join articles ar on (ar.article=ap.article) where ap.cc_client='10038'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C409' and famille_art='C4' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C4' and gp_art='C409') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C401' and famille_art='C4' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C4' and gp_art='C401') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select client, concat('(',client,') ',nom_1) as nom_1 from clients where client in (select cc_client from article_prices where cc_client != 0 group by cc_client) order by nom_1; +QUERYARRAY: select ar.famille_art as code_famille,coalesce(pc.prod_cat_fr,pc.prod_cat_fr) as catname,ar.gp_art as group_code,coalesce(pg.prod_name_fr,pg.prod_name_fr) as groupname + from article_groups ar + left join prod_group pg on (ar.gp_art=pg.group_code ) + left join prod_cat pc on (ar.famille_art=pc.code_famille) + group by ar.famille_art,ar.gp_art + order by catname DESC,groupname ASC; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C116' and famille_art='C1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C1' and gp_art='C116') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C105' and famille_art='C1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C1' and gp_art='C105') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C106' and famille_art='C1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C1' and gp_art='C106') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C147' and famille_art='C1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C1' and gp_art='C147') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C102' and famille_art='C1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C1' and gp_art='C102') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C101' and famille_art='C1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C1' and gp_art='C101') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C115' and famille_art='C1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C1' and gp_art='C115') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C116' and famille_art='C1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C1' and gp_art='C116') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where article in ( + select article_group from article_prices ap join articles a on (a.article=ap.article) where ap.cc_client='10038'); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,ar.article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,ar.qte_stock,ar.qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from article_prices ap join articles ar on (ar.article=ap.article) where ap.cc_client='10038'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select ar.famille_art as code_famille,coalesce(pc.prod_cat_fr,pc.prod_cat_fr) as catname,ar.gp_art as group_code,coalesce(pg.prod_name_fr,pg.prod_name_fr) as groupname + from article_groups ar + left join prod_group pg on (ar.gp_art=pg.group_code ) + left join prod_cat pc on (ar.famille_art=pc.code_famille) + group by ar.famille_art,ar.gp_art + order by catname DESC,groupname ASC; +QUERYARRAY: select client, concat('(',client,') ',nom_1) as nom_1 from clients where client in (select cc_client from article_prices where cc_client != 0 group by cc_client) order by nom_1; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select client, concat('(',client,') ',nom_1) as nom_1 from clients where client in (select cc_client from article_prices where cc_client != 0 group by cc_client) order by nom_1; +QUERYARRAY: select ar.famille_art as code_famille,coalesce(pc.prod_cat_fr,pc.prod_cat_fr) as catname,ar.gp_art as group_code,coalesce(pg.prod_name_fr,pg.prod_name_fr) as groupname + from article_groups ar + left join prod_group pg on (ar.gp_art=pg.group_code ) + left join prod_cat pc on (ar.famille_art=pc.code_famille) + group by ar.famille_art,ar.gp_art + order by catname DESC,groupname ASC; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select client, concat('(',client,') ',nom_1) as nom_1 from clients where client in (select cc_client from article_prices where cc_client != 0 group by cc_client) order by nom_1; +QUERYARRAY: select ar.famille_art as code_famille,coalesce(pc.prod_cat_fr,pc.prod_cat_fr) as catname,ar.gp_art as group_code,coalesce(pg.prod_name_fr,pg.prod_name_fr) as groupname + from article_groups ar + left join prod_group pg on (ar.gp_art=pg.group_code ) + left join prod_cat pc on (ar.famille_art=pc.code_famille) + group by ar.famille_art,ar.gp_art + order by catname DESC,groupname ASC; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select client, concat('(',client,') ',nom_1) as nom_1 from clients where client in (select cc_client from article_prices where cc_client != 0 group by cc_client) order by nom_1; +QUERYARRAY: select ar.famille_art as code_famille,coalesce(pc.prod_cat_fr,pc.prod_cat_fr) as catname,ar.gp_art as group_code,coalesce(pg.prod_name_fr,pg.prod_name_fr) as groupname + from article_groups ar + left join prod_group pg on (ar.gp_art=pg.group_code ) + left join prod_cat pc on (ar.famille_art=pc.code_famille) + group by ar.famille_art,ar.gp_art + order by catname DESC,groupname ASC; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where article in ( + select article_group from article_prices ap join articles a on (a.article=ap.article) where ap.cc_client='10000'); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,ar.article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,ar.qte_stock,ar.qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from article_prices ap join articles ar on (ar.article=ap.article) where ap.cc_client='10000'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select client, concat('(',client,') ',nom_1) as nom_1 from clients where client in (select cc_client from article_prices where cc_client != 0 group by cc_client) order by nom_1; +QUERYARRAY: select ar.famille_art as code_famille,coalesce(pc.prod_cat_fr,pc.prod_cat_fr) as catname,ar.gp_art as group_code,coalesce(pg.prod_name_fr,pg.prod_name_fr) as groupname + from article_groups ar + left join prod_group pg on (ar.gp_art=pg.group_code ) + left join prod_cat pc on (ar.famille_art=pc.code_famille) + group by ar.famille_art,ar.gp_art + order by catname DESC,groupname ASC; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where article in ( + select article_group from article_prices ap join articles a on (a.article=ap.article) where ap.cc_client='10036'); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,ar.article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,ar.qte_stock,ar.qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from article_prices ap join articles ar on (ar.article=ap.article) where ap.cc_client='10036'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select ar.famille_art as code_famille,coalesce(pc.prod_cat_fr,pc.prod_cat_fr) as catname,ar.gp_art as group_code,coalesce(pg.prod_name_fr,pg.prod_name_fr) as groupname + from article_groups ar + left join prod_group pg on (ar.gp_art=pg.group_code ) + left join prod_cat pc on (ar.famille_art=pc.code_famille) + group by ar.famille_art,ar.gp_art + order by catname DESC,groupname ASC; +QUERYARRAY: select client, concat('(',client,') ',nom_1) as nom_1 from clients where client in (select cc_client from article_prices where cc_client != 0 group by cc_client) order by nom_1; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where article in ( + select article_group from article_prices ap join articles a on (a.article=ap.article) where ap.cc_client='10041'); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,ar.article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,ar.qte_stock,ar.qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from article_prices ap join articles ar on (ar.article=ap.article) where ap.cc_client='10041'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select ar.famille_art as code_famille,coalesce(pc.prod_cat_fr,pc.prod_cat_fr) as catname,ar.gp_art as group_code,coalesce(pg.prod_name_fr,pg.prod_name_fr) as groupname + from article_groups ar + left join prod_group pg on (ar.gp_art=pg.group_code ) + left join prod_cat pc on (ar.famille_art=pc.code_famille) + group by ar.famille_art,ar.gp_art + order by catname DESC,groupname ASC; +QUERYARRAY: select client, concat('(',client,') ',nom_1) as nom_1 from clients where client in (select cc_client from article_prices where cc_client != 0 group by cc_client) order by nom_1; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where article in ( + select article_group from article_prices ap join articles a on (a.article=ap.article) where ap.cc_client='10038'); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,ar.article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,ar.qte_stock,ar.qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from article_prices ap join articles ar on (ar.article=ap.article) where ap.cc_client='10038'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='A301' and famille_art='A3' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='A3' and gp_art='A301') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C602' and famille_art='C6' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C6' and gp_art='C602') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C806' and famille_art='C8' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C8' and gp_art='C806') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C804' and famille_art='C8' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C8' and gp_art='C804') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C805' and famille_art='C8' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C8' and gp_art='C805') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='B708' and famille_art='B7' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='B7' and gp_art='B708') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='B701' and famille_art='B7' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='B7' and gp_art='B701') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='B200' and famille_art='B2' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='B2' and gp_art='B200') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='B112' and famille_art='B1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='B1' and gp_art='B112') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='B116' and famille_art='B1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='B1' and gp_art='B116') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='B113' and famille_art='B1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='B1' and gp_art='B113') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select ar.famille_art as code_famille,coalesce(pc.prod_cat_fr,pc.prod_cat_fr) as catname,ar.gp_art as group_code,coalesce(pg.prod_name_fr,pg.prod_name_fr) as groupname + from article_groups ar + left join prod_group pg on (ar.gp_art=pg.group_code ) + left join prod_cat pc on (ar.famille_art=pc.code_famille) + group by ar.famille_art,ar.gp_art + order by catname DESC,groupname ASC; +QUERYARRAY: select client, concat('(',client,') ',nom_1) as nom_1 from clients where client in (select cc_client from article_prices where cc_client != 0 group by cc_client) order by nom_1; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C101' and famille_art='C1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C1' and gp_art='C101') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C115' and famille_art='C1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C1' and gp_art='C115') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select ar.famille_art as code_famille,coalesce(pc.prod_cat_fr,pc.prod_cat_fr) as catname,ar.gp_art as group_code,coalesce(pg.prod_name_fr,pg.prod_name_fr) as groupname + from article_groups ar + left join prod_group pg on (ar.gp_art=pg.group_code ) + left join prod_cat pc on (ar.famille_art=pc.code_famille) + group by ar.famille_art,ar.gp_art + order by catname DESC,groupname ASC; +QUERYARRAY: select client, concat('(',client,') ',nom_1) as nom_1 from clients where client in (select cc_client from article_prices where cc_client != 0 group by cc_client) order by nom_1; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C505' and famille_art='C5' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C5' and gp_art='C505') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select client, concat('(',client,') ',nom_1) as nom_1 from clients where client in (select cc_client from article_prices where cc_client != 0 group by cc_client) order by nom_1; +QUERYARRAY: select ar.famille_art as code_famille,coalesce(pc.prod_cat_fr,pc.prod_cat_fr) as catname,ar.gp_art as group_code,coalesce(pg.prod_name_fr,pg.prod_name_fr) as groupname + from article_groups ar + left join prod_group pg on (ar.gp_art=pg.group_code ) + left join prod_cat pc on (ar.famille_art=pc.code_famille) + group by ar.famille_art,ar.gp_art + order by catname DESC,groupname ASC; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C407' and famille_art='C4' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C4' and gp_art='C407') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C409' and famille_art='C4' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C4' and gp_art='C409') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C213' and famille_art='C2' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C2' and gp_art='C213') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where article in ( + select article_group from article_prices ap join articles a on (a.article=ap.article) where ap.cc_client='10043'); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = 'a008e873-aa27-4114-a42b-996d00ab370f' and us.isenabled ='1' and se.remoteaddr= '2001:7e8:ccaa:fd00:21c8:c284:cd56:4ee0' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,ar.article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,ar.qte_stock,ar.qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from article_prices ap join articles ar on (ar.article=ap.article) where ap.cc_client='10043'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select ar.famille_art as code_famille,coalesce(pc.prod_cat_fr,pc.prod_cat_fr) as catname,ar.gp_art as group_code,coalesce(pg.prod_name_fr,pg.prod_name_fr) as groupname + from article_groups ar + left join prod_group pg on (ar.gp_art=pg.group_code ) + left join prod_cat pc on (ar.famille_art=pc.code_famille) + group by ar.famille_art,ar.gp_art + order by catname DESC,groupname ASC; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select client, concat('(',client,') ',nom_1) as nom_1 from clients where client in (select cc_client from article_prices where cc_client != 0 group by cc_client) order by nom_1; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C303' and famille_art='C3' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C3' and gp_art='C303') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C602' and famille_art='C6' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C6' and gp_art='C602') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C303' and famille_art='C3' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C3' and gp_art='C303') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C602' and famille_art='C6' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C6' and gp_art='C602') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C303' and famille_art='C3' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C3' and gp_art='C303') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select client, concat('(',client,') ',nom_1) as nom_1 from clients where client in (select cc_client from article_prices where cc_client != 0 group by cc_client) order by nom_1; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select ar.famille_art as code_famille,coalesce(pc.prod_cat_fr,pc.prod_cat_fr) as catname,ar.gp_art as group_code,coalesce(pg.prod_name_fr,pg.prod_name_fr) as groupname + from article_groups ar + left join prod_group pg on (ar.gp_art=pg.group_code ) + left join prod_cat pc on (ar.famille_art=pc.code_famille) + group by ar.famille_art,ar.gp_art + order by catname DESC,groupname ASC; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C303' and famille_art='C3' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C3' and gp_art='C303') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C602' and famille_art='C6' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C6' and gp_art='C602') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C303' and famille_art='C3' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C3' and gp_art='C303') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C602' and famille_art='C6' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C6' and gp_art='C602') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C505' and famille_art='C5' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C5' and gp_art='C505') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C518' and famille_art='C5' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C5' and gp_art='C518') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C500' and famille_art='C5' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C5' and gp_art='C500') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C407' and famille_art='C4' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C4' and gp_art='C407') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C401' and famille_art='C4' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C4' and gp_art='C401') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C409' and famille_art='C4' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C4' and gp_art='C409') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C408' and famille_art='C4' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ap.prix_brut,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) +where article_group in(select article from article_groups where famille_art='C4' and gp_art='C408') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select ar.famille_art as code_famille,coalesce(pc.prod_cat_fr,pc.prod_cat_fr) as catname,ar.gp_art as group_code,coalesce(pg.prod_name_fr,pg.prod_name_fr) as groupname + from article_groups ar + left join prod_group pg on (ar.gp_art=pg.group_code ) + left join prod_cat pc on (ar.famille_art=pc.code_famille) + group by ar.famille_art,ar.gp_art + order by catname DESC,groupname ASC; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select ag.id,ag.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 from article_groups ag join (select creationdate from article_groups group by creationdate order by creationdate DESC LIMIT 6) ad on (ag.creationdate=ad.creationdate) order by ag.titre,ag.article; +QUERYARRAY: select client, concat('(',client,') ',nom_1) as nom_1 from clients where client in (select cc_client from article_prices where cc_client != 0 group by cc_client) order by nom_1; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,ar.qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) join (select article,creationdate from article_groups group by creationdate order by creationdate DESC LIMIT 6) ag on (ar.article_group=ag.article) group by ar.id,ar.article_group,ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='A301' and famille_art='A3' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.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 from articles ar join article_prices ap on (ar.article=ap.article) where article_group in (select article from article_groups where famille_art='A3' and gp_art='A301') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='A303' and famille_art='A3' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.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 from articles ar join article_prices ap on (ar.article=ap.article) where article_group in (select article from article_groups where famille_art='A3' and gp_art='A303') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C101' and famille_art='C1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.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 from articles ar join article_prices ap on (ar.article=ap.article) where article_group in (select article from article_groups where famille_art='C1' and gp_art='C101') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C115' and famille_art='C1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.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 from articles ar join article_prices ap on (ar.article=ap.article) where article_group in (select article from article_groups where famille_art='C1' and gp_art='C115') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C116' and famille_art='C1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.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 from articles ar join article_prices ap on (ar.article=ap.article) where article_group in (select article from article_groups where famille_art='C1' and gp_art='C116') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C149' and famille_art='C1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.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 from articles ar join article_prices ap on (ar.article=ap.article) where article_group in (select article from article_groups where famille_art='C1' and gp_art='C149') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C116' and famille_art='C1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.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 from articles ar join article_prices ap on (ar.article=ap.article) where article_group in (select article from article_groups where famille_art='C1' and gp_art='C116') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C149' and famille_art='C1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.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 from articles ar join article_prices ap on (ar.article=ap.article) where article_group in (select article from article_groups where famille_art='C1' and gp_art='C149') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C105' and famille_art='C1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.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 from articles ar join article_prices ap on (ar.article=ap.article) where article_group in (select article from article_groups where famille_art='C1' and gp_art='C105') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C106' and famille_art='C1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.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 from articles ar join article_prices ap on (ar.article=ap.article) where article_group in (select article from article_groups where famille_art='C1' and gp_art='C106') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C147' and famille_art='C1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.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 from articles ar join article_prices ap on (ar.article=ap.article) where article_group in (select article from article_groups where famille_art='C1' and gp_art='C147') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C102' and famille_art='C1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.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 from articles ar join article_prices ap on (ar.article=ap.article) where article_group in (select article from article_groups where famille_art='C1' and gp_art='C102') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C137' and famille_art='C1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.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 from articles ar join article_prices ap on (ar.article=ap.article) where article_group in (select article from article_groups where famille_art='C1' and gp_art='C137') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C107' and famille_art='C1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.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 from articles ar join article_prices ap on (ar.article=ap.article) where article_group in (select article from article_groups where famille_art='C1' and gp_art='C107') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C108' and famille_art='C1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.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 from articles ar join article_prices ap on (ar.article=ap.article) where article_group in (select article from article_groups where famille_art='C1' and gp_art='C108') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C107' and famille_art='C1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.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 from articles ar join article_prices ap on (ar.article=ap.article) where article_group in (select article from article_groups where famille_art='C1' and gp_art='C107') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C137' and famille_art='C1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.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 from articles ar join article_prices ap on (ar.article=ap.article) where article_group in (select article from article_groups where famille_art='C1' and gp_art='C137') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C102' and famille_art='C1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.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 from articles ar join article_prices ap on (ar.article=ap.article) where article_group in (select article from article_groups where famille_art='C1' and gp_art='C102') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C147' and famille_art='C1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.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 from articles ar join article_prices ap on (ar.article=ap.article) where article_group in (select article from article_groups where famille_art='C1' and gp_art='C147') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C106' and famille_art='C1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.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 from articles ar join article_prices ap on (ar.article=ap.article) where article_group in (select article from article_groups where famille_art='C1' and gp_art='C106') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select ar.famille_art as code_famille,coalesce(pc.prod_cat_fr,pc.prod_cat_fr) as catname,ar.gp_art as group_code,coalesce(pg.prod_name_fr,pg.prod_name_fr) as groupname + from article_groups ar + left join prod_group pg on (ar.gp_art=pg.group_code ) + left join prod_cat pc on (ar.famille_art=pc.code_famille) + group by ar.famille_art,ar.gp_art + order by catname DESC,groupname ASC; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select client, concat('(',client,') ',nom_1) as nom_1 from clients where client in (select cc_client from article_prices where cc_client != 0 group by cc_client) order by nom_1; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select ag.id,ag.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 from article_groups ag join (select creationdate from article_groups group by creationdate order by creationdate DESC LIMIT 6) ad on (ag.creationdate=ad.creationdate) order by ag.titre,ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,ar.qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) join (select article,creationdate from article_groups group by creationdate order by creationdate DESC LIMIT 6) ag on (ar.article_group=ag.article) group by ar.id,ar.article_group,ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C106' and famille_art='C1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.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 from articles ar join article_prices ap on (ar.article=ap.article) where article_group in (select article from article_groups where famille_art='C1' and gp_art='C106') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select ar.famille_art as code_famille,coalesce(pc.prod_cat_fr,pc.prod_cat_fr) as catname,ar.gp_art as group_code,coalesce(pg.prod_name_fr,pg.prod_name_fr) as groupname + from article_groups ar + left join prod_group pg on (ar.gp_art=pg.group_code ) + left join prod_cat pc on (ar.famille_art=pc.code_famille) + group by ar.famille_art,ar.gp_art + order by catname DESC,groupname ASC; +QUERYARRAY: select ag.id,ag.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 from article_groups ag join (select creationdate from article_groups group by creationdate order by creationdate DESC LIMIT 6) ad on (ag.creationdate=ad.creationdate) order by ag.titre,ag.article; +QUERYARRAY: select client, concat('(',client,') ',nom_1) as nom_1 from clients where client in (select cc_client from article_prices where cc_client != 0 group by cc_client) order by nom_1; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,ar.qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) join (select article,creationdate from article_groups group by creationdate order by creationdate DESC LIMIT 6) ag on (ar.article_group=ag.article) group by ar.id,ar.article_group,ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C106' and famille_art='C1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.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 from articles ar join article_prices ap on (ar.article=ap.article) where article_group in (select article from article_groups where famille_art='C1' and gp_art='C106') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select ar.famille_art as code_famille,coalesce(pc.prod_cat_fr,pc.prod_cat_fr) as catname,ar.gp_art as group_code,coalesce(pg.prod_name_fr,pg.prod_name_fr) as groupname + from article_groups ar + left join prod_group pg on (ar.gp_art=pg.group_code ) + left join prod_cat pc on (ar.famille_art=pc.code_famille) + group by ar.famille_art,ar.gp_art + order by catname DESC,groupname ASC; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select client, concat('(',client,') ',nom_1) as nom_1 from clients where client in (select cc_client from article_prices where cc_client != 0 group by cc_client) order by nom_1; +QUERYARRAY: select ag.id,ag.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 from article_groups ag join (select creationdate from article_groups group by creationdate order by creationdate DESC LIMIT 6) ad on (ag.creationdate=ad.creationdate) order by ag.titre,ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,ar.qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar join article_prices ap on (ar.article=ap.article) join (select article,creationdate from article_groups group by creationdate order by creationdate DESC LIMIT 6) ag on (ar.article_group=ag.article) group by ar.id,ar.article_group,ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C106' and famille_art='C1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.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 from articles ar join article_prices ap on (ar.article=ap.article) where article_group in (select article from article_groups where famille_art='C1' and gp_art='C106') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select ar.famille_art as code_famille,coalesce(pc.prod_cat_fr,pc.prod_cat_fr) as catname,ar.gp_art as group_code,coalesce(pg.prod_name_fr,pg.prod_name_fr) as groupname + from article_groups ar + left join prod_group pg on (ar.gp_art=pg.group_code ) + left join prod_cat pc on (ar.famille_art=pc.code_famille) + group by ar.famille_art,ar.gp_art + order by catname DESC,groupname ASC; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select client, concat('(',client,') ',nom_1) as nom_1 from clients where client in (select cc_client from article_prices where cc_client != 0 group by cc_client) order by nom_1; +QUERYARRAY: select ag.id,ag.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 from article_groups ag join (select creationdate from article_groups group by creationdate order by creationdate DESC LIMIT 6) ad on (ag.creationdate=ad.creationdate) order by ag.titre,ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,ar.qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar left join article_prices ap on (ar.article=ap.article) join (select article,creationdate from article_groups group by creationdate order by creationdate DESC LIMIT 6) ag on (ar.article_group=ag.article) group by ar.id,ar.article_group,ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C106' and famille_art='C1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.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 from articles ar left join article_prices ap on (ar.article=ap.article) where article_group in (select article from article_groups where famille_art='C1' and gp_art='C106') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select ag.id,ag.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 from article_groups ag join (select creationdate from article_groups group by creationdate order by creationdate DESC LIMIT 6) ad on (ag.creationdate=ad.creationdate) order by ag.titre,ag.article; +QUERYARRAY: select ar.famille_art as code_famille,coalesce(pc.prod_cat_fr,pc.prod_cat_fr) as catname,ar.gp_art as group_code,coalesce(pg.prod_name_fr,pg.prod_name_fr) as groupname + from article_groups ar + left join prod_group pg on (ar.gp_art=pg.group_code ) + left join prod_cat pc on (ar.famille_art=pc.code_famille) + group by ar.famille_art,ar.gp_art + order by catname DESC,groupname ASC; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select client, concat('(',client,') ',nom_1) as nom_1 from clients where client in (select cc_client from article_prices where cc_client != 0 group by cc_client) order by nom_1; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,ar.qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar left join article_prices ap on (ar.article=ap.article) join (select article,creationdate from article_groups group by creationdate order by creationdate DESC LIMIT 6) ag on (ar.article_group=ag.article) group by ar.id,ar.article_group,ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C106' and famille_art='C1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.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 from articles ar left join article_prices ap on (ar.article=ap.article) where article_group in (select article from article_groups where famille_art='C1' and gp_art='C106') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select ar.famille_art as code_famille,coalesce(pc.prod_cat_fr,pc.prod_cat_fr) as catname,ar.gp_art as group_code,coalesce(pg.prod_name_fr,pg.prod_name_fr) as groupname + from article_groups ar + left join prod_group pg on (ar.gp_art=pg.group_code ) + left join prod_cat pc on (ar.famille_art=pc.code_famille) + group by ar.famille_art,ar.gp_art + order by catname DESC,groupname ASC; +QUERYARRAY: select ag.id,ag.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 from article_groups ag join (select creationdate from article_groups group by creationdate order by creationdate DESC LIMIT 6) ad on (ag.creationdate=ad.creationdate) order by ag.titre,ag.article; +QUERYARRAY: select client, concat('(',client,') ',nom_1) as nom_1 from clients where client in (select cc_client from article_prices where cc_client != 0 group by cc_client) order by nom_1; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,ar.qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar left join article_prices ap on (ar.article=ap.article) join (select article,creationdate from article_groups group by creationdate order by creationdate DESC LIMIT 6) ag on (ar.article_group=ag.article) group by ar.id,ar.article_group,ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C106' and famille_art='C1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.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 from articles ar left join article_prices ap on (ar.article=ap.article) where article_group in (select article from article_groups where famille_art='C1' and gp_art='C106') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select ar.famille_art as code_famille,coalesce(pc.prod_cat_fr,pc.prod_cat_fr) as catname,ar.gp_art as group_code,coalesce(pg.prod_name_fr,pg.prod_name_fr) as groupname + from article_groups ar + left join prod_group pg on (ar.gp_art=pg.group_code ) + left join prod_cat pc on (ar.famille_art=pc.code_famille) + group by ar.famille_art,ar.gp_art + order by catname DESC,groupname ASC; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select client, concat('(',client,') ',nom_1) as nom_1 from clients where client in (select cc_client from article_prices where cc_client != 0 group by cc_client) order by nom_1; +QUERYARRAY: select ag.id,ag.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 from article_groups ag join (select creationdate from article_groups group by creationdate order by creationdate DESC LIMIT 6) ad on (ag.creationdate=ad.creationdate) order by ag.titre,ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,ar.qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar left join article_prices ap on (ar.article=ap.article) join (select article,creationdate from article_groups group by creationdate order by creationdate DESC LIMIT 6) ag on (ar.article_group=ag.article) group by ar.id,ar.article_group,ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C106' and famille_art='C1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.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 from articles ar left join article_prices ap on (ar.article=ap.article) where article_group in (select article from article_groups where famille_art='C1' and gp_art='C106') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select ag.id,ag.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 from article_groups ag join (select creationdate from article_groups group by creationdate order by creationdate DESC LIMIT 6) ad on (ag.creationdate=ad.creationdate) order by ag.titre,ag.article; +QUERYARRAY: select client, concat('(',client,') ',nom_1) as nom_1 from clients where client in (select cc_client from article_prices where cc_client != 0 group by cc_client) order by nom_1; +QUERYARRAY: select ar.famille_art as code_famille,coalesce(pc.prod_cat_fr,pc.prod_cat_fr) as catname,ar.gp_art as group_code,coalesce(pg.prod_name_fr,pg.prod_name_fr) as groupname + from article_groups ar + left join prod_group pg on (ar.gp_art=pg.group_code ) + left join prod_cat pc on (ar.famille_art=pc.code_famille) + group by ar.famille_art,ar.gp_art + order by catname DESC,groupname ASC; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,ar.qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar left join article_prices ap on (ar.article=ap.article) join (select article,creationdate from article_groups group by creationdate order by creationdate DESC LIMIT 6) ag on (ar.article_group=ag.article) group by ar.id,ar.article_group,ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C106' and famille_art='C1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.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 from articles ar left join article_prices ap on (ar.article=ap.article) where article_group in (select article from article_groups where famille_art='C1' and gp_art='C106') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C147' and famille_art='C1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.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 from articles ar left join article_prices ap on (ar.article=ap.article) where article_group in (select article from article_groups where famille_art='C1' and gp_art='C147') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C102' and famille_art='C1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.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 from articles ar left join article_prices ap on (ar.article=ap.article) where article_group in (select article from article_groups where famille_art='C1' and gp_art='C102') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C137' and famille_art='C1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.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 from articles ar left join article_prices ap on (ar.article=ap.article) where article_group in (select article from article_groups where famille_art='C1' and gp_art='C137') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C107' and famille_art='C1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.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 from articles ar left join article_prices ap on (ar.article=ap.article) where article_group in (select article from article_groups where famille_art='C1' and gp_art='C107') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C108' and famille_art='C1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.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 from articles ar left join article_prices ap on (ar.article=ap.article) where article_group in (select article from article_groups where famille_art='C1' and gp_art='C108') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C113' and famille_art='C1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.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 from articles ar left join article_prices ap on (ar.article=ap.article) where article_group in (select article from article_groups where famille_art='C1' and gp_art='C113') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C148' and famille_art='C1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.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 from articles ar left join article_prices ap on (ar.article=ap.article) where article_group in (select article from article_groups where famille_art='C1' and gp_art='C148') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C105' and famille_art='C1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.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 from articles ar left join article_prices ap on (ar.article=ap.article) where article_group in (select article from article_groups where famille_art='C1' and gp_art='C105') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C204' and famille_art='C2' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.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 from articles ar left join article_prices ap on (ar.article=ap.article) where article_group in (select article from article_groups where famille_art='C2' and gp_art='C204') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C218' and famille_art='C2' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.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 from articles ar left join article_prices ap on (ar.article=ap.article) where article_group in (select article from article_groups where famille_art='C2' and gp_art='C218') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C201' and famille_art='C2' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.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 from articles ar left join article_prices ap on (ar.article=ap.article) where article_group in (select article from article_groups where famille_art='C2' and gp_art='C201') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C219' and famille_art='C2' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.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 from articles ar left join article_prices ap on (ar.article=ap.article) where article_group in (select article from article_groups where famille_art='C2' and gp_art='C219') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C221' and famille_art='C2' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.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 from articles ar left join article_prices ap on (ar.article=ap.article) where article_group in (select article from article_groups where famille_art='C2' and gp_art='C221') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='B801' and famille_art='B8' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.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 from articles ar left join article_prices ap on (ar.article=ap.article) where article_group in (select article from article_groups where famille_art='B8' and gp_art='B801') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='B807' and famille_art='B8' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.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 from articles ar left join article_prices ap on (ar.article=ap.article) where article_group in (select article from article_groups where famille_art='B8' and gp_art='B807') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='B808' and famille_art='B8' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.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 from articles ar left join article_prices ap on (ar.article=ap.article) where article_group in (select article from article_groups where famille_art='B8' and gp_art='B808') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='B809' and famille_art='B8' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.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 from articles ar left join article_prices ap on (ar.article=ap.article) where article_group in (select article from article_groups where famille_art='B8' and gp_art='B809') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='B803' and famille_art='B8' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.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 from articles ar left join article_prices ap on (ar.article=ap.article) where article_group in (select article from article_groups where famille_art='B8' and gp_art='B803') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='B810' and famille_art='B8' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.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 from articles ar left join article_prices ap on (ar.article=ap.article) where article_group in (select article from article_groups where famille_art='B8' and gp_art='B810') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='B609' and famille_art='B6' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.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 from articles ar left join article_prices ap on (ar.article=ap.article) where article_group in (select article from article_groups where famille_art='B6' and gp_art='B609') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='B604' and famille_art='B6' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.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 from articles ar left join article_prices ap on (ar.article=ap.article) where article_group in (select article from article_groups where famille_art='B6' and gp_art='B604') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='B610' and famille_art='B6' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.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 from articles ar left join article_prices ap on (ar.article=ap.article) where article_group in (select article from article_groups where famille_art='B6' and gp_art='B610') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C401' and famille_art='C4' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.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 from articles ar left join article_prices ap on (ar.article=ap.article) where article_group in (select article from article_groups where famille_art='C4' and gp_art='C401') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C409' and famille_art='C4' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.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 from articles ar left join article_prices ap on (ar.article=ap.article) where article_group in (select article from article_groups where famille_art='C4' and gp_art='C409') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C408' and famille_art='C4' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.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 from articles ar left join article_prices ap on (ar.article=ap.article) where article_group in (select article from article_groups where famille_art='C4' and gp_art='C408') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='A301' and famille_art='A3' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.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 from articles ar left join article_prices ap on (ar.article=ap.article) where article_group in (select article from article_groups where famille_art='A3' and gp_art='A301') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='A301' and famille_art='A3' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.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 from articles ar left join article_prices ap on (ar.article=ap.article) where article_group in (select article from article_groups where famille_art='A3' and gp_art='A301') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='A303' and famille_art='A3' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.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 from articles ar left join article_prices ap on (ar.article=ap.article) where article_group in (select article from article_groups where famille_art='A3' and gp_art='A303') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C116' and famille_art='C1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.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 from articles ar left join article_prices ap on (ar.article=ap.article) where article_group in (select article from article_groups where famille_art='C1' and gp_art='C116') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C149' and famille_art='C1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.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 from articles ar left join article_prices ap on (ar.article=ap.article) where article_group in (select article from article_groups where famille_art='C1' and gp_art='C149') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C105' and famille_art='C1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.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 from articles ar left join article_prices ap on (ar.article=ap.article) where article_group in (select article from article_groups where famille_art='C1' and gp_art='C105') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C106' and famille_art='C1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.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 from articles ar left join article_prices ap on (ar.article=ap.article) where article_group in (select article from article_groups where famille_art='C1' and gp_art='C106') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C147' and famille_art='C1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.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 from articles ar left join article_prices ap on (ar.article=ap.article) where article_group in (select article from article_groups where famille_art='C1' and gp_art='C147') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='C106' and famille_art='C1' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.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 from articles ar left join article_prices ap on (ar.article=ap.article) where article_group in (select article from article_groups where famille_art='C1' and gp_art='C106') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '0d1c15a3-44de-4f10-b08f-1770a692fa8d' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36'; +QUERY: select id from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = 'eb0b44ca7c1ee71742a6c5ebabd07597dda0b777c1510ab5e7b5a873a0cee65d' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select id from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='::1' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('52e4bef1-c20c-4742-b3a7-8d6d7cfac89f','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','::1','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '52e4bef1-c20c-4742-b3a7-8d6d7cfac89f' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '52e4bef1-c20c-4742-b3a7-8d6d7cfac89f' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '52e4bef1-c20c-4742-b3a7-8d6d7cfac89f' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '52e4bef1-c20c-4742-b3a7-8d6d7cfac89f' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '52e4bef1-c20c-4742-b3a7-8d6d7cfac89f' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '52e4bef1-c20c-4742-b3a7-8d6d7cfac89f' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '52e4bef1-c20c-4742-b3a7-8d6d7cfac89f' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '52e4bef1-c20c-4742-b3a7-8d6d7cfac89f' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '52e4bef1-c20c-4742-b3a7-8d6d7cfac89f' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '52e4bef1-c20c-4742-b3a7-8d6d7cfac89f' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '52e4bef1-c20c-4742-b3a7-8d6d7cfac89f' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '52e4bef1-c20c-4742-b3a7-8d6d7cfac89f' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '52e4bef1-c20c-4742-b3a7-8d6d7cfac89f' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '52e4bef1-c20c-4742-b3a7-8d6d7cfac89f' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '52e4bef1-c20c-4742-b3a7-8d6d7cfac89f' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '52e4bef1-c20c-4742-b3a7-8d6d7cfac89f' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '52e4bef1-c20c-4742-b3a7-8d6d7cfac89f' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '52e4bef1-c20c-4742-b3a7-8d6d7cfac89f' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '52e4bef1-c20c-4742-b3a7-8d6d7cfac89f' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '52e4bef1-c20c-4742-b3a7-8d6d7cfac89f' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '52e4bef1-c20c-4742-b3a7-8d6d7cfac89f' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '52e4bef1-c20c-4742-b3a7-8d6d7cfac89f' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '52e4bef1-c20c-4742-b3a7-8d6d7cfac89f' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '52e4bef1-c20c-4742-b3a7-8d6d7cfac89f' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '52e4bef1-c20c-4742-b3a7-8d6d7cfac89f' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '52e4bef1-c20c-4742-b3a7-8d6d7cfac89f' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '52e4bef1-c20c-4742-b3a7-8d6d7cfac89f' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '52e4bef1-c20c-4742-b3a7-8d6d7cfac89f' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '52e4bef1-c20c-4742-b3a7-8d6d7cfac89f' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '52e4bef1-c20c-4742-b3a7-8d6d7cfac89f' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '52e4bef1-c20c-4742-b3a7-8d6d7cfac89f' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36'; +QUERYARRAY: select client, concat('(',client,') ',nom_1) as nom_1 from clients where client in (select cc_client from article_prices where cc_client != 0 group by cc_client) order by nom_1; +QUERYARRAY: select ag.id,ag.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 from article_groups ag join (select creationdate from article_groups group by creationdate order by creationdate DESC LIMIT 6) ad on (ag.creationdate=ad.creationdate) order by ag.titre,ag.article; +QUERYARRAY: select ar.famille_art as code_famille,coalesce(pc.prod_cat_fr,pc.prod_cat_fr) as catname,ar.gp_art as group_code,coalesce(pg.prod_name_fr,pg.prod_name_fr) as groupname + from article_groups ar + left join prod_group pg on (ar.gp_art=pg.group_code ) + left join prod_cat pc on (ar.famille_art=pc.code_famille) + group by ar.famille_art,ar.gp_art + order by catname DESC,groupname ASC; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '52e4bef1-c20c-4742-b3a7-8d6d7cfac89f' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '52e4bef1-c20c-4742-b3a7-8d6d7cfac89f' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,ar.qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar left join article_prices ap on (ar.article=ap.article) join (select article,creationdate from article_groups group by creationdate order by creationdate DESC LIMIT 6) ag on (ar.article_group=ag.article) group by ar.id,ar.article_group,ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '52e4bef1-c20c-4742-b3a7-8d6d7cfac89f' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='A301' and famille_art='A3' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '52e4bef1-c20c-4742-b3a7-8d6d7cfac89f' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.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 from articles ar left join article_prices ap on (ar.article=ap.article) where article_group in (select article from article_groups where famille_art='A3' and gp_art='A301') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '52e4bef1-c20c-4742-b3a7-8d6d7cfac89f' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36'; +QUERYARRAY: select id,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 from article_groups where gp_art='A303' and famille_art='A3' order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '52e4bef1-c20c-4742-b3a7-8d6d7cfac89f' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.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 from articles ar left join article_prices ap on (ar.article=ap.article) where article_group in (select article from article_groups where famille_art='A3' and gp_art='A303') 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,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '52e4bef1-c20c-4742-b3a7-8d6d7cfac89f' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36'; +QUERYARRAY: select ag.id,ag.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 from article_groups ag join (select creationdate from article_groups group by creationdate order by creationdate DESC LIMIT 6) ad on (ag.creationdate=ad.creationdate) order by ag.titre,ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '52e4bef1-c20c-4742-b3a7-8d6d7cfac89f' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,ar.qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar left join article_prices ap on (ar.article=ap.article) join (select article,creationdate from article_groups group by creationdate order by creationdate DESC LIMIT 6) ag on (ar.article_group=ag.article) group by ar.id,ar.article_group,ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '52e4bef1-c20c-4742-b3a7-8d6d7cfac89f' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '52e4bef1-c20c-4742-b3a7-8d6d7cfac89f' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '52e4bef1-c20c-4742-b3a7-8d6d7cfac89f' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '52e4bef1-c20c-4742-b3a7-8d6d7cfac89f' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '52e4bef1-c20c-4742-b3a7-8d6d7cfac89f' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '52e4bef1-c20c-4742-b3a7-8d6d7cfac89f' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '52e4bef1-c20c-4742-b3a7-8d6d7cfac89f' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '52e4bef1-c20c-4742-b3a7-8d6d7cfac89f' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '52e4bef1-c20c-4742-b3a7-8d6d7cfac89f' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '52e4bef1-c20c-4742-b3a7-8d6d7cfac89f' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '52e4bef1-c20c-4742-b3a7-8d6d7cfac89f' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '52e4bef1-c20c-4742-b3a7-8d6d7cfac89f' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '52e4bef1-c20c-4742-b3a7-8d6d7cfac89f' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '52e4bef1-c20c-4742-b3a7-8d6d7cfac89f' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '52e4bef1-c20c-4742-b3a7-8d6d7cfac89f' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '52e4bef1-c20c-4742-b3a7-8d6d7cfac89f' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '52e4bef1-c20c-4742-b3a7-8d6d7cfac89f' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36'; +QUERYARRAY: select ar.famille_art as code_famille,coalesce(pc.prod_cat_fr,pc.prod_cat_fr) as catname,ar.gp_art as group_code,coalesce(pg.prod_name_fr,pg.prod_name_fr) as groupname + from article_groups ar + left join prod_group pg on (ar.gp_art=pg.group_code ) + left join prod_cat pc on (ar.famille_art=pc.code_famille) + group by ar.famille_art,ar.gp_art + order by catname DESC,groupname ASC; +QUERYARRAY: select client, concat('(',client,') ',nom_1) as nom_1 from clients where client in (select cc_client from article_prices where cc_client != 0 group by cc_client) order by nom_1; +QUERYARRAY: select ag.id,ag.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 from article_groups ag join (select creationdate from article_groups group by creationdate order by creationdate DESC LIMIT 6) ad on (ag.creationdate=ad.creationdate) order by ag.titre,ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '52e4bef1-c20c-4742-b3a7-8d6d7cfac89f' and us.isenabled ='1' and se.remoteaddr= '::1' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36'; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,ar.article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,ar.qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from articles ar left join article_prices ap on (ar.article=ap.article) join (select article,creationdate from article_groups group by creationdate order by creationdate DESC LIMIT 6) ag on (ar.article_group=ag.article) group by ar.id,ar.article_group,ar.article order by ar.article_group,ar.article; +QUERY: select id from sessions se join users us on (se.id_user=us.id) where us.useremail='ksaffran@dks.lu' order by se.created DESC LIMIT 1; +QUERY: select id from sessions se join users us on (se.id_user=us.id) where us.useremail='ksaffran@dks.lu' order by se.created DESC LIMIT 1; +QUERY: select id from sessions se join users us on (se.id_user=us.id) where us.useremail='ksaffran@dks.lu' order by se.created DESC LIMIT 1; +QUERY: select id from sessions se join users us on (se.id_user=us.id) where us.useremail='ksaffran@dks.lu' order by se.created DESC LIMIT 1; +QUERY: select id from sessions se join users us on (se.id_user=us.id) where us.useremail='ksaffran@dks.lu' order by se.created DESC LIMIT 1; +QUERY: select id from sessions se join users us on (se.id_user=us.id) where us.useremail='ksaffran@dks.lu' order by se.created DESC LIMIT 1; +QUERY: select id from sessions se join users us on (se.id_user=us.id) where us.useremail='ksaffran@dks.lu' order by se.created DESC LIMIT 1; +QUERY: select se.id from sessions se join users us on (se.id_user=us.id) where us.useremail='ksaffran@dks.lu' order by se.created DESC LIMIT 1; +QUERY: select se.id from sessions se join users us on (se.id_user=us.id) where us.useremail='ksaffran@dks.lu' order by se.created DESC LIMIT 1; +QUERY: select se.id from sessions se join users us on (se.id_user=us.id) where us.useremail='ksaffran@dks.lu' order by se.created DESC LIMIT 1; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '52e4bef1-c20c-4742-b3a7-8d6d7cfac89f' and us.isenabled ='1' and se.remoteaddr= '' and se.useragent =''; +QUERY: select se.id from sessions se join users us on (se.id_user=us.id) where us.useremail='ksaffran@dks.lu' order by se.created DESC LIMIT 1; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '52e4bef1-c20c-4742-b3a7-8d6d7cfac89f' and us.isenabled ='1' and se.remoteaddr= '' and se.useragent ='' ; +QUERY: select se.id from sessions se join users us on (se.id_user=us.id) where us.useremail='ksaffran@dks.lu' order by se.created DESC LIMIT 1; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '52e4bef1-c20c-4742-b3a7-8d6d7cfac89f' and us.isenabled ='1' ; +QUERY: select se.id from sessions se join users us on (se.id_user=us.id) where us.useremail='ksaffran@dks.lu' order by se.created DESC LIMIT 1; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '52e4bef1-c20c-4742-b3a7-8d6d7cfac89f' and us.isenabled ='1' ; +QUERY: select se.id from sessions se join users us on (se.id_user=us.id) where us.useremail='ksaffran@dks.lu' order by se.created DESC LIMIT 1; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '52e4bef1-c20c-4742-b3a7-8d6d7cfac89f' and us.isenabled ='1' ; +QUERY: select se.id from sessions se join users us on (se.id_user=us.id) where us.useremail='ksaffran@dks.lu' order by se.created DESC LIMIT 1; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage,cl.id as id_client from sessions se + join users us on (se.id_user=us.id) + left join clients cl on (us.id_client=cl.id) + where se.id = '52e4bef1-c20c-4742-b3a7-8d6d7cfac89f' and us.isenabled ='1' ; diff --git a/public_html/qubeshop/publicapi.php b/public_html/qubeshop/publicapi.php new file mode 100644 index 0000000..8601071 --- /dev/null +++ b/public_html/qubeshop/publicapi.php @@ -0,0 +1,48 @@ + $value){ + if ((is_file("lib/".$value) && strpos($value,'.') !== 0) && substr_compare($value, ".php", -strlen(".php")) === 0){ require("lib/".$value);} +} +$moduleclasses = scandir("lib/modules"); +foreach ($moduleclasses as $key => $value){ + if ((is_file("lib/modules/".$value) && strpos($value,'.') !== 0) && substr_compare($value, ".php", -strlen(".php")) === 0){ require("lib/modules/".$value); } +} +$db = new database($cfg["db"]); +require_once("lib/lang/".$cfg["lang"].".php"); +$html = array(); +$params = json_decode(file_get_contents('php://input'), true); +if ($cfg["debug"] == 1){ $html["params"] = $params; } +if (isset($params["cl"])){ delete($params["cl"]);} +if (isset($params["fn"])){ delete($params["fn"]);} +header('Content-Type: application/json'); +if (!isset($params["ac"])){ + echo json_encode($html); exit(0); +} else { + if (isset($publicaliases[$params["ac"]])){ + $params["cl"] = $publicaliases[$params["ac"]]["cl"]; + $params["fn"] = $publicaliases[$params["ac"]]["fn"]; + } + delete($params["ac"]); + if (!isset($params["cl"]) && !isset($params["fn"])){ + echo json_encode(array("statuscode" => 404,"error" => "function does not exist")); exit(0); + } +} +if (isset($params["cl"]) && isset($params["fn"]) && $params["cl"] != "database"){ + if (class_exists($params["cl"])) { + $strclass=$params["cl"]; $cl = new $strclass($db,$cfg); + if (!method_exists($cl,$params["fn"])){ $html["error"] = "class ".$params["cl"]."->method ".$params["fn"]." does not exist!"; } + $r = new ReflectionMethod($strclass, $params["fn"]); + $metparams = $r->getParameters(); $fnp = array(); $prcnt = 0; + foreach ($metparams as $p) { + if (isset($params[$p->getName()])){ array_push($fnp,$params[$p->getName()]); } + if ($p->isOptional() === false){ $prcnt++; } + $html["fnparams"][$p->getName()] = (($p->isOptional() === true)?"optional":"required"); + } + if (count($fnp) < $prcnt){ $html["error"] = "Function has ".$prcnt." required parameters!"; + } else { $html["data"] = call_user_func_array(array($cl, $params["fn"]), $fnp); } + } else { $html["error"] = "class ".$params["cl"]." does not exist!"; } +} + + echo json_encode($html); +?> diff --git a/public_html/qubeshop/tmpl/.htaccess b/public_html/qubeshop/tmpl/.htaccess new file mode 100644 index 0000000..a7a56f7 --- /dev/null +++ b/public_html/qubeshop/tmpl/.htaccess @@ -0,0 +1 @@ +Require all denied \ No newline at end of file diff --git a/public_html/qubeshop/tmpl/js/contratcadre.js b/public_html/qubeshop/tmpl/js/contratcadre.js index 98dd111..022541c 100644 --- a/public_html/qubeshop/tmpl/js/contratcadre.js +++ b/public_html/qubeshop/tmpl/js/contratcadre.js @@ -9,7 +9,7 @@ let contratcadre ={ select: "#admin_ccclient", showSearch: true, afterClose: function(){ - //console.log("set timetrack"); + console.log("set timetrack"); contratcadre.loadContratCadre(); } }); @@ -25,94 +25,33 @@ let contratcadre ={ postData({"cl":"ContratCadre","fn":"getClients"}).then(data => { //console.log("clientlist",data.data); dataform.fillselectlist(contratcadre.selects["admin_ccclient"],data.data,'client','nom_1'); - // if(document.getElementById("mnucmb_contratcadre")){ - // document.getElementById("mnucmb_contratcadre").innerHTML= ''; - // for (var i=0;i'+ data.data[i].nom_1 +''); - // } - // } }); }, + + //{% endif %} + loadContratCadre(){ - + //{% if (session.usertype == 'admin') %} contratcadre.idclient = contratcadre.selects["admin_ccclient"].selected(); - console.log("selected contrat cadre",contratcadre.idclient); - postData({"cl":"ContratCadre","fn":"getArticleGroups","idclient":contratcadre.idclient,"lang":"{{lang}}"}).then(agrps => { - contratcadre.article_groups = agrps.data; - //console.log("Article Groups",agrps); - document.getElementById("lst_articlegroups").innerHTML=''; - postData({"cl":"ContratCadre","fn":"getArticles","idclient":contratcadre.idclient,"lang":"{{lang}}"}).then(arts => { - console.log("cc articles",arts); - contratcadre.articles = arts.data; - for (var g=0;g< agrps.data.length;g++){ - let agrp = '
'+ - '
'+ - '
image
'+ - '

'+ ((agrps.data[g].titre)?agrps.data[g].titre:' ')+'

'+ - '
' +((agrps.data[g].description)?agrps.data[g].description:' ') +'
'+ - '
' + - '
'+ - '
'+ - ((agrps.data[g].brochure != null)?'':'')+ - ((agrps.data[g].fichetechnique != null)?'':'')+ - ((agrps.data[g].noticemontage != null)?'':'')+ - '
'+ - '
'+ - '
'; - - agrp += '
'+ - ''+ - ''+ - ''+ - ''+ - ''+ - ''+ - ''+ - ''+ - ''+ - ''+ - ''+ - ''; - if (arts.data[agrps.data[g]['article']]){ - for (var x in arts.data[agrps.data[g]['article']]){ - //console.log("xx",x); - agrp += ''+ - ''+ - ''+ - ''+ - ''+ - ''+ - ''+ - ''+ - ''+ - ''+ - ''+ - ''+ - ''; - } - } else { - agrp += ''; - } - - agrp += ''+ - '
 '+((agrps.data[g].c01_label != null)?agrps.data[g].c01_label:' ')+''+((agrps.data[g].c02_label != null)?agrps.data[g].c02_label:' ')+''+((agrps.data[g].c03_label != null)?agrps.data[g].c03_label:' ')+''+((agrps.data[g].c04_label != null)?agrps.data[g].c04_label:' ')+''+((agrps.data[g].c05_label != null)?agrps.data[g].c05_label:' ')+'StockQuantitéFTFSMO
'+ arts.data[agrps.data[g]['article']][x].article +'
'+ ((arts.data[agrps.data[g]['article']][x].c01)?arts.data[agrps.data[g]['article']][x].c01:' ')+'
'+ ((arts.data[agrps.data[g]['article']][x].c02)?arts.data[agrps.data[g]['article']][x].c02:' ')+'
'+ ((arts.data[agrps.data[g]['article']][x].c03)?arts.data[agrps.data[g]['article']][x].c03:' ')+'
'+ ((arts.data[agrps.data[g]['article']][x].c04)?arts.data[agrps.data[g]['article']][x].c04:' ')+'
'+ ((arts.data[agrps.data[g]['article']][x].c05)?arts.data[agrps.data[g]['article']][x].c05:' ')+'
'+((arts.data[agrps.data[g]['article']][x].qte_stock > 0)?'':'')+''; - agrp+='
'+ - ''+ - '' + - ''+ - '
'+ ((arts.data[agrps.data[g]['article']][x].unite_quantite)?arts.data[agrps.data[g]['article']][x].unite_quantite:' ')+'
'+ - '
'; - - agrp += '
'+((arts.data[agrps.data[g]['article']][x].doc_ft != null)?'':' ')+''+((arts.data[agrps.data[g]['article']][x].doc_mo != null)?'':' ')+''+((arts.data[agrps.data[g]['article']][x].doc_fs != null)?'':' ')+'
pas d\'articles disponible
'+ - '
'+ - '
'; - document.getElementById("lst_contratcadre").insertAdjacentHTML('beforeend',agrp); - myapp.viewpanel("contratcadre"); - } + console.log(contratcadre.idclient); + if (contratcadre.idclient){ + let lst = document.getElementById("lst_contratcadre"); + postData({"cl":"ContratCadre","fn":"getArticleGroups","idclient":contratcadre.idclient,"lang":"{{lang}}"}).then(agrps => { + contratcadre.article_groups = agrps.data; + lst.innerHTML=''; + 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); + } + myapp.viewpanel("contratcadre"); + }); }).catch(e => { console.log(e)}); + } //else @@ -122,16 +61,9 @@ let contratcadre ={ }, articletobasket: function(artidx,grpidx){ - //console.log("grpidx",grpidx); - let grparticle = contratcadre.article_groups[grpidx].article; let article = contratcadre.articles[grparticle][artidx].article; let artid = contratcadre.articles[grparticle][artidx].id; - //console.log("Article",shop.articles[grparticle][artidx]); - //console.log("artidx",artidx); - - // let grpid = shop.article_groups[grpidx].id; - // let artid = shop.articles[artidx].id; if (!shop.basket[grparticle]){ shop.basket[grparticle] = contratcadre.article_groups[grpidx]; shop.basket[grparticle]["articles"] = {}; @@ -142,10 +74,7 @@ let contratcadre ={ } let qtoadd = parseInt(document.getElementById("art_" + artid).value); shop.basket[grparticle]["articles"][article]["quantity"] = shop.basket[grparticle]["articles"][article]["quantity"] + qtoadd; - //console.log("shop basket",shop.basket); shop.setBasket(); }, - //{% endif %} - } \ No newline at end of file diff --git a/public_html/qubeshop/tmpl/js/login.js b/public_html/qubeshop/tmpl/js/login.js new file mode 100644 index 0000000..99f6e46 --- /dev/null +++ b/public_html/qubeshop/tmpl/js/login.js @@ -0,0 +1,26 @@ +function initpage(){ + +} + +let login = { + setregtype: function(){ + let val = document.getElementById("register_registrationtype").value; + myapp.viewpanel(val); + }, + forgotpassword: function(){ + alert("To be done!"); + }, + sendregistration: function(){ + alert("to be done!"); + }, + login: function(){ + let user= document.getElementById("login").value; + let pwd = document.getElementById("password").value; + postData({"ac":"login","login":user,"pwd":pwd}).then(data => { + console.log(data); + location.href=location.href; + }).catch(e => { + location.href=location.href; + }); + } +} \ No newline at end of file diff --git a/public_html/qubeshop/tmpl/js/myapp.js b/public_html/qubeshop/tmpl/js/myapp.js index d44019d..e69e02f 100644 --- a/public_html/qubeshop/tmpl/js/myapp.js +++ b/public_html/qubeshop/tmpl/js/myapp.js @@ -29,7 +29,7 @@ let myapp = { }, viewpanel: function(idpanel){ var mypanels = document.getElementsByClassName("panel"); - //console.log("Panel",idpanel,mypanels); + console.log("Panel",idpanel,mypanels); for (let i=0;i()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/; return re.test(String(email).toLowerCase()); }, - getuserdata: function(){ - + getUserData: function(){ + console.log("getuserdata!"); + postData({"cl":"Profile","fn":"getUserDetails","uid":"{{ session.id_user }}"}).then(data => { + profile.userdata = data.data; + document.getElementById("session_useremail").value=data.data["useremail"]; + document.getElementById("profile_clientaddress").innerHTML= data.data["adresse_client"]; + document.getElementById("askprice_clientaddress").value=data.data["adresse_client"]; + document.getElementById("basket_clientaddress").value=data.data["adresse_client"]; + }); } } \ No newline at end of file diff --git a/public_html/qubeshop/tmpl/js/publicrequest.js b/public_html/qubeshop/tmpl/js/publicrequest.js new file mode 100644 index 0000000..29d7281 --- /dev/null +++ b/public_html/qubeshop/tmpl/js/publicrequest.js @@ -0,0 +1,18 @@ +var api = '{{ config.basepath }}publicapi.php'; + +async function postData(data = {}) { + const response = await fetch(api, { + method: 'POST', + mode: 'same-origin', + cache: 'no-cache', + credentials: 'same-origin', + headers: { + 'Content-Type': 'application/json' + + }, + redirect: 'follow', + referrerPolicy: 'strict-origin', + body: JSON.stringify(data) + }); + return response.json(); + } diff --git a/public_html/qubeshop/tmpl/js/shop.js b/public_html/qubeshop/tmpl/js/shop.js index 277278c..0690ea6 100644 --- a/public_html/qubeshop/tmpl/js/shop.js +++ b/public_html/qubeshop/tmpl/js/shop.js @@ -6,6 +6,7 @@ function initpage(){ news.init(); orders.init(); invoices.init(); + profile.init(); } let shop= { @@ -33,12 +34,14 @@ let shop= { groupStartOpen:[false], groupHeader:[function(value, count, data){ return ((value)?value:"");}], groupClick:function(e, group){ + console.log("code famille",group._group.rows[0].data.code_famille); + shop.getAGbyFamilly(group._group.rows[0].data.code_famille,group._group.key); let openkey = group._group.key; var groups = shop.tblgroups.getGroups(); for (var g=0;g { + console.log("agdata",data); + for (var d=0;data.data.length;d++){ + console.log("ag dataset",d); + let agshort = '
'+ data.data[d].titre +'
'; + lst.insertAdjacentHTML('beforeend',agshort); + } + }); + }, getgrouptbldata: function(id){ //let selectedData = shop.tblgroups.getSelectedData(); postData({"cl":"ArticleGroups","fn":"getPublishedGroups","lang":"{{lang}}"}).then(data => { //console.log("GroupData",data); shop.tblgroups.setData(data.data).then(tblres => { }); - + // function(){ // if(selectedData[0]){staff.tbl.selectRow(selectedData[0]['id']);} // }).catch(e => { console.log(e)}); }, - loadProducts(){ - let sel = shop.tblgroups.getSelectedData(); - if (sel[0]){ - //console.log("fam group sel",sel[0]); - //console.log("selected",sel[0]); - document.getElementById("articlehead").innerHTML=sel[0].catname+' - '+sel[0].groupname; - postData({"cl":"Articles","fn":"getArticleGroups","groupcode":sel[0].group_code,"famillycode":sel[0].code_famille,"lang":"{{lang}}"}).then(agrps => { - shop.article_groups = agrps.data; - //console.log("Article Groups",agrps); - document.getElementById("lst_articlegroups").innerHTML=''; - - postData({"cl":"Articles","fn":"getByFamillyAndGroups","famillycode":sel[0].code_famille,"groupcode":sel[0].group_code,"lang":"{{lang}}"}).then(arts => { - //console.log("articles",arts); - shop.articles = arts.data; - for (var g=0;g< agrps.data.length;g++){ - let agrp = '
'+ + 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}; + } + } + console.log(stf); + return stf; + }, + setArticleGroup: function(gdx,grpdata,articledata,type){ + let grparticle = grpdata['article']; + let strartgrp = '
'+ '
'+ - '
image
'+ - '

'+ ((agrps.data[g].titre)?agrps.data[g].titre:' ')+'

'+ - '
' +((agrps.data[g].description)?agrps.data[g].description:' ') +'
'+ - '
' + - '
'+ + '
image
'+ + '

'+ ((grpdata.titre)?grpdata.titre:' ')+'

'+ + '
' +((grpdata.description)?grpdata.description:' ') +'
'+ + '
' + '
'+ '
'+ - ((agrps.data[g].brochure != null)?'':'')+ - ((agrps.data[g].fichetechnique != null)?'':'')+ - ((agrps.data[g].noticemontage != null)?'':'')+ - '
'+ - '
'+ - '
'; - - - let stf=null; - for (var i=1;i<=5;i++){ - if (/^Sac/.test(agrps.data[g]["c0"+i+"_label"])){ stf="c0"+i}; - if (/^Botte/.test(agrps.data[g]["c0"+i+"_label"])){ stf="c0"+i}; - if (/^Roul/.test(agrps.data[g]["c0"+i+"_label"])){ stf="c0"+i}; - if (/^Carton/.test(agrps.data[g]["c0"+i+"_label"])){ stf="c0"+i}; - if (/^Longueur/.test(agrps.data[g]["c0"+i+"_label"])){ stf="c0"+i}; - } - //console.log("Step",stf); - agrp += '
'+ + ((grpdata.brochure != null)?'':'')+ + ((grpdata.fichetechnique != null)?'':'')+ + ((grpdata.noticemontage != null)?'':'')+ + '
'+ '
'+ '
'; + 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][0].unite_quantite); + + strartgrp += '
'+ ''+ ''+ ''+ - ''+ - ''+ - ''+ - ''+ - ''+ + ''+ + ''+ + ''+ + ''+ + ''+ ''+ - ''+ + ''; + if (type != 'cc'){ + strartgrp += ''; + } + strartgrp += ''+ ''+ ''; - //console.log("Article",agrps.data[g]['article']); - console.log("Groups articles",arts.data[agrps.data[g]['article']]); - if (arts.data[agrps.data[g]['article']]){ - //console.log("Article","Publi List"); - for (var x in arts.data[agrps.data[g]['article']]){ - //console.log("xx",x); - - - agrp += ''+ - ''+ - ''+ - ''+ - ''+ - ''+ - ''+ - ''+ + //console.log("grparticle",grparticle); + //console.log("articledata",articledata); + if (articledata[grparticle]){ + + for (var adx in articledata[grparticle]){ + strartgrp += ''+ + ''+ + ''+ + ''+ + ''+ + ''+ + ''+ + ''+ ''+ - ''+ - ''+ - ''+ - ''+ + strartgrp+='
'+ + ''+ + '' + + '' + + '
'+ ((articledata[grparticle][adx].unite_quantite)?articledata[grparticle][adx].unite_quantite:' ')+'
'; + if (type=='shop'){ + strartgrp += '' + + '' + + ''; + } else if (type == 'cc'){ + strartgrp += ''+ + ''; + } else if (type == 'fav'){ + strartgrp += '' + + '' + + ''; + } + strartgrp += '
'+''; + if (type != 'cc'){ + strartgrp += ''; + } + strartgrp += ''+ + ''+ + ''+ ''; } } else { - agrp += ''; + strartgrp += ''; } - agrp += ''+ + strartgrp += ''+ '
 '+((agrps.data[g].c01_label != null)?agrps.data[g].c01_label:' ')+''+((agrps.data[g].c02_label != null)?agrps.data[g].c02_label:' ')+''+((agrps.data[g].c03_label != null)?agrps.data[g].c03_label:' ')+''+((agrps.data[g].c04_label != null)?agrps.data[g].c04_label:' ')+''+((agrps.data[g].c05_label != null)?agrps.data[g].c05_label:' ')+''+((grpdata.c01_label != null)?grpdata.c01_label:' ')+''+((grpdata.c02_label != null)?grpdata.c02_label:' ')+''+((grpdata.c03_label != null)?grpdata.c03_label:' ')+''+((grpdata.c04_label != null)?grpdata.c04_label:' ')+''+((grpdata.c05_label != null)?grpdata.c05_label:' ')+'StockQuantitéPrix unit.
(hTVA)
FTMOFSQuantitéPrix unit.
(hTVA)
FTMOFS
'+ arts.data[agrps.data[g]['article']][x].article +'
'+ ((arts.data[agrps.data[g]['article']][x].c01)?arts.data[agrps.data[g]['article']][x].c01:' ')+'
'+ ((arts.data[agrps.data[g]['article']][x].c02)?arts.data[agrps.data[g]['article']][x].c02:' ')+'
'+ ((arts.data[agrps.data[g]['article']][x].c03)?arts.data[agrps.data[g]['article']][x].c03:' ')+'
'+ ((arts.data[agrps.data[g]['article']][x].c04)?arts.data[agrps.data[g]['article']][x].c04:' ')+'
'+ ((arts.data[agrps.data[g]['article']][x].c05)?arts.data[agrps.data[g]['article']][x].c05:' ')+'
'+((arts.data[agrps.data[g]['article']][x].qte_stock > 0)?'':'')+'
'+ articledata[grparticle][adx].article +'
'+ ((articledata[grparticle][adx].c01)?articledata[grparticle][adx].c01:' ')+'
'+ ((articledata[grparticle][adx].c02)?articledata[grparticle][adx].c02:' ')+'
'+ ((articledata[grparticle][adx].c03)?articledata[grparticle][adx].c03:' ')+'
'+ ((articledata[grparticle][adx].c04)?articledata[grparticle][adx].c04:' ')+'
'+ ((articledata[grparticle][adx].c05)?articledata[grparticle][adx].c05:' ')+'
'+((articledata[grparticle][adx].qte_stock > 0)?'':'')+''; - agrp+='
'+ - ''+ - '' + - ''+ - '
'+ ((arts.data[agrps.data[g]['article']][x].unite_quantite)?arts.data[agrps.data[g]['article']][x].unite_quantite:' ')+'
'+ - ''+ - '' + - ''+'
'; - agrp += '
'+ ((arts.data[agrps.data[g]['article']][x].prix_brut)?arts.data[agrps.data[g]['article']][x].prix_net.replace(/\./,',')+ ' €':' ')+''+((arts.data[agrps.data[g]['article']][x].doc_ft != null)?'':' ')+''+((arts.data[agrps.data[g]['article']][x].doc_mo != null)?'':' ')+''+((arts.data[agrps.data[g]['article']][x].doc_fs != null)?'':' ')+''+ ((articledata[grparticle][adx].prix_net && articledata[grparticle][adx].prix_net != '0.0000')?articledata[grparticle][adx].prix_net.replace(/\./,',')+ ' €':' ')+''+((articledata[grparticle][adx].doc_ft != null)?'':' ')+''+((articledata[grparticle][adx].doc_mo != null)?'':' ')+''+((articledata[grparticle][adx].doc_fs != null)?'':' ')+'
pas d\'articles disponible
pas d\'articles disponible
'+ '
'+ '
'; - document.getElementById("lst_articlegroups").insertAdjacentHTML('beforeend',agrp); - myapp.viewpanel("shop"); + return strartgrp; + }, + loadGroupArticle: function(){ + + }, + loadProducts: function(){ + let sel = shop.tblgroups.getSelectedData(); + if (sel[0]){ + let lst = document.getElementById("lst_articlegroups"); + document.getElementById("articlehead").innerHTML=sel[0].catname+' - '+sel[0].groupname; + postData({"cl":"Articles","fn":"getArticleGroups","groupcode":sel[0].group_code,"famillycode":sel[0].code_famille,"lang":"{{lang}}"}).then(agrps => { + shop.article_groups = agrps.data; + lst.innerHTML=''; + postData({"cl":"Articles","fn":"getByFamillyAndGroups","famillycode":sel[0].code_famille,"groupcode":sel[0].group_code,"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)}); } }, articlequantityplus: function(artid,step){ + let cval; if (!step){ step=1;} - let cval = parseInt(document.getElementById('art_' + artid).value); - if (cval == 1 && step != 1){cval=0;} - cval = cval +parseInt(step); - document.getElementById('art_' + artid).value = cval; + if (/,/.test(step)){ + step=step.replace(/,/,'.'); + step=parseFloat(step); + + cval = parseFloat(document.getElementById('art_' + artid).value.replace(/,/,'.')); + if (cval == 1.0 && step != 1.0){cval=0.0;} + cval = cval +step; + cval =cval.toFixed(2); + document.getElementById('art_' + artid).value = cval.toString().replace(/\./,','); + }else { + cval = parseInt(document.getElementById('art_' + artid).value); + step = parseInt(step); + if (cval == 1 && step != 1){cval=0;} + cval = cval +step; + document.getElementById('art_' + artid).value = cval; + } + return false; }, articlequantityminus: function(artid,step){ + let cval; if (!step){ step=1;} - let cval = parseInt(document.getElementById('art_' + artid).value); - if (cval == 1){ return false;} - cval = cval - parseInt(step); - if (cval < 1){ cval =1 ;} - document.getElementById('art_' + artid).value = cval; + if (/,/.test(step)){ + step=step.replace(/,/,'.'); + step=parseFloat(step); + cval = parseFloat(document.getElementById('art_' + artid).value.replace(/,/,'.')); + cval = cval - step; + cval =cval.toFixed(2); + if (cval < 1.0){ cval =1 ;} + document.getElementById('art_' + artid).value = cval.toString().replace(/\./,','); + }else { + cval = parseInt(document.getElementById('art_' + artid).value); + if (cval == 1 ){ return false;} + step = parseInt(step); + cval = cval - step; + if (cval < 1){ cval =1 ;} + document.getElementById('art_' + artid).value = cval; + } + + + return false; }, articletobasket: function(artidx,grpidx){ - //console.log("grpidx",grpidx); - let grparticle = shop.article_groups[grpidx].article; let article = shop.articles[grparticle][artidx].article; let artid = shop.articles[grparticle][artidx].id; - //console.log("Article",shop.articles[grparticle][artidx]); - //console.log("artidx",artidx); - - // let grpid = shop.article_groups[grpidx].id; - // let artid = shop.articles[artidx].id; if (!shop.basket[grparticle]){ shop.basket[grparticle] = shop.article_groups[grpidx]; shop.basket[grparticle]["articles"] = {}; @@ -205,7 +282,6 @@ let shop= { } let qtoadd = parseInt(document.getElementById("art_" + artid).value); shop.basket[grparticle]["articles"][article]["quantity"] = shop.basket[grparticle]["articles"][article]["quantity"] + qtoadd; - //console.log("shop basket",shop.basket); shop.setBasket(); }, articletoaskprice: function(artidx,grpidx){ @@ -214,34 +290,21 @@ let shop= { let grparticle = shop.article_groups[grpidx].article; let article = shop.articles[grparticle][artidx].article; let artid = shop.articles[grparticle][artidx].id; - //console.log("Article",shop.articles[grparticle][artidx]); - //console.log("artidx",artidx); - - // let grpid = shop.article_groups[grpidx].id; - // let artid = shop.articles[artidx].id; if (!shop.askprice[grparticle]){ shop.askprice[grparticle] = shop.article_groups[grpidx]; shop.askprice[grparticle]["articles"] = {}; } if (!shop.askprice[grparticle]["articles"][article]){ shop.askprice[grparticle]["articles"][article] = shop.articles[grparticle][artidx]; - //shop.askprice[grparticle]["articles"][article]["quantity"] = 0; } - // let qtoadd = parseInt(document.getElementById("art_" + artid).value); - // shop.askprice[grparticle]["articles"][article]["quantity"] = shop.basket[grparticle]["articles"][article]["quantity"] + qtoadd; - //console.log("shop basket",shop.basket); console.log("price-list",shop.askprice); shop.setAskPrice(); }, setAskPrice: function(){ let bs = document.getElementById("tblbody_askprice"); bs.innerHTML =''; - //console.log("reset Basket"); - //let ptotal = 0; shop.askpriceitems = 0; for (var g in shop.askprice){ - //console.log("basket article group",shop.basket[g]); - var bsr = ''+ shop.askprice[g].titre+''+ ' '+ ''+((shop.askprice[g].c01_label != null)?shop.askprice[g].c01_label:' ')+''+ @@ -252,10 +315,7 @@ let shop= { ' '+ '  '; for (var a in shop.askprice[g]['articles']){ - //let pnet = shop.basket[g]['articles'][a].quantity * shop.basket[g]['articles'][a].prix_net; - //ptotal = ptotal + pnet; shop.askpriceitems = shop.askpriceitems + 1; - //console.log("basket article",shop.basket[g]['articles'][a]); bsr += ''+ ''+ shop.askprice[g]['articles'][a].article +''+ '
'+((shop.askprice[g]['articles'][a].c01 != null)?shop.askprice[g]['articles'][a].c01:' ')+'
'+ @@ -275,137 +335,50 @@ let shop= { document.getElementById("askpriceitems").innerHTML = shop.askpriceitems; } - //document.getElementById("totalnet").innerHTML=ptotal.toFixed(2).replace(/\./,',') + " €"; return false; }, articletofavorites: function(artidx,grpidx){ - console.log("grpidx",grpidx); - console.log("artidx",artidx); let grparticle = shop.article_groups[grpidx].article; - let article = shop.articles[grparticle][artidx].article; - let artid = shop.articles[grparticle][artidx].id; - //console.log("Article",shop.articles[grparticle][artidx]); - //console.log("artidx",artidx); + postData({"cl":"User","fn":"setUserFaviorite","iduser":"{{session.id_user}}","article":shop.articles[grparticle][artidx].article}).then(agrps => { + console.log("Favorite saved!"); + }); + - // let grpid = shop.article_groups[grpidx].id; - // let artid = shop.articles[artidx].id; - if (!shop.favorites[grparticle]){ - shop.favorites[grparticle] = shop.article_groups[grpidx]; - shop.favorites[grparticle]["articles"] = {}; - } - if (!shop.favorites[grparticle]["articles"][article]){ - shop.favorites[grparticle]["articles"][article] = shop.articles[grparticle][artidx]; - //shop.askprice[grparticle]["articles"][article]["quantity"] = 0; - } - // let qtoadd = parseInt(document.getElementById("art_" + artid).value); - // shop.askprice[grparticle]["articles"][article]["quantity"] = shop.basket[grparticle]["articles"][article]["quantity"] + qtoadd; - //console.log("shop basket",shop.basket); - console.log("price-list",shop.favorites); - shop.setFavorites(); }, - setFavorites: function(){ - let bs = document.getElementById("lst_favorites"); - bs.innerHTML =''; - console.log("set Favorites"); - //let ptotal = 0; - //shop.askpriceitems = 0; - let bsr=''; - for (var g in shop.favorites){ - //console.log("basket article group",shop.basket[g]); + loadFavorites: function(){ + let lst = document.getElementById("lst_favorites"); + document.getElementById("articlehead").innerHTML="{{lbl.favorites}}}"; + postData({"cl":"Articles","fn":"getFavoriteArticleGroups","iduser":"{{session.id_user}}","lang":"{{lang}}"}).then(agrps => { + shop.favgroups = agrps.data; + lst.innerHTML=''; + postData({"cl":"Articles","fn":"getFavoriteArticles","iduser":"{{session.id_user}}","lang":"{{lang}}"}).then(arts => { + shop.favarticles = arts.data; + for (var g=0;g< shop.favorite_groups.length;g++){ + let agrp = shop.setArticleGroup(g,shop.favorite_groups[g],shop.favarticles,'fav'); + lst.insertAdjacentHTML('beforeend',agrp); + } + myapp.viewpanel("favorites"); + }); + }).catch(e => { console.log(e)}); - bsr += '
'+ - '
'+ - '
image
'+ - '

'+ ((shop.favorites[g].titre)?shop.favorites[g].titre:' ')+'

'+ - '
' +((shop.favorites[g].description)?shop.favorites[g].description:' ') +'
'+ - '
' + - '
'+ - '
'+ - ''+ - ''+ - ''+ - '
'+ - '
'+ - '
'; - - - let stf=null; - for (var i=1;i<=5;i++){ - if (/^Sac/.test(shop.favorites[g]["c0"+i+"_label"])){ stf="c0"+i}; - if (/^Botte/.test(shop.favorites[g]["c0"+i+"_label"])){ stf="c0"+i}; - if (/^Roul/.test(shop.favorites[g]["c0"+i+"_label"])){ stf="c0"+i}; - if (/^Carton/.test(shop.favorites[g]["c0"+i+"_label"])){ stf="c0"+i}; - if (/^Longueur/.test(shop.favorites[g]["c0"+i+"_label"])){ stf="c0"+i}; - } - //console.log("Step",stf); - bsr += '
'+ - ''+ - ''+ - ''+ - ''+ - ''+ - ''+ - ''+ - ''+ - ''+ - ''+ - ''+ - ''; - //console.log("Article",shop.favorites[g]['article']); - //console.log("Groups articles",arts.data[shop.favorites[g]['article']]); - //shop.favorites[g] - //console.log("fav a",shop.favorites[g]["articles"]); - - //console.log("Article","Publi List"); + // let bs = document.getElementById("lst_favorites"); + // bs.innerHTML =''; + // console.log("set Favorites"); + + // let bsr=''; + // for (var g in shop.favorites){ + // let agrp = shop.setArticleGroup(g,shop.favorites[g],shop.favorites[g]["articles"],'fav'); + // bs.insertAdjacentHTML('beforeend',agrp); + // } - for (var a in shop.favorites[g]['articles']){ - console.log("xx",a); - - - bsr += ''+ - ''+ - ''+ - ''+ - ''+ - ''+ - ''+ - ''+ - ''+ - ''+ - ''+ - ''+ - ''+ - ''; - } - - bsr += ''+ - '
 '+((shop.favorites[g].c01_label != null)?shop.favorites[g].c01_label:' ')+''+((shop.favorites[g].c02_label != null)?shop.favorites[g].c02_label:' ')+''+((shop.favorites[g].c03_label != null)?shop.favorites[g].c03_label:' ')+''+((shop.favorites[g].c04_label != null)?shop.favorites[g].c04_label:' ')+''+((shop.favorites[g].c05_label != null)?shop.favorites[g].c05_label:' ')+'StockQuantitéPrix unit.
(hTVA)
FTMOFS
'+ shop.favorites[g]['articles'][a].article +'
'+ ((shop.favorites[g]['articles'][a].c01)?shop.favorites[g]['articles'][a].c01:' ')+'
'+ ((shop.favorites[g]['articles'][a].c02)?shop.favorites[g]['articles'][a].c02:' ')+'
'+ ((shop.favorites[g]['articles'][a].c03)?shop.favorites[g]['articles'][a].c03:' ')+'
'+ ((shop.favorites[g]['articles'][a].c04)?shop.favorites[g]['articles'][a].c04:' ')+'
'+ ((shop.favorites[g]['articles'][a].c05)?shop.favorites[g]['articles'][a].c05:' ')+'
'+((shop.favorites[g]['articles'][a].qte_stock > 0)?'':'')+''; - - bsr+='
'+ - ''+ - '' + - ''+ - '
'+ ((shop.favorites[g]['articles'][a].unite_quantite)?shop.favorites[g]['articles'][a].unite_quantite:' ')+'
'+ - ''+ - '' + - ''+'
'; - bsr += '
'+ ((shop.favorites[g]['articles'][a].prix_net)?shop.favorites[g]['articles'][a].prix_net.replace(/\./,',')+ ' €':' ')+'
'+ - '
'+ - '
'; - } - bs.insertAdjacentHTML('beforeend',bsr); - //document.getElementById("askpriceitems").innerHTML = shop.askpriceitems; - //document.getElementById("totalnet").innerHTML=ptotal.toFixed(2).replace(/\./,',') + " €"; return false; }, setBasket: function(){ let bs = document.getElementById("tblbody_basket"); bs.innerHTML =''; - //console.log("reset Basket"); - //let ptotal = 0; shop.basketitems = 0; for (var g in shop.basket){ - //console.log("basket article group",shop.basket[g]); + //let stf= shop.getCounterfield([shop.basket[g].c01_label,grpshop.basket[g].c02_label,shop.basket[g].c03_label,shop.basket[g].c04_label,shop.basket[g].c05_label],shop.basket[g]['articles'][a].unite_quantite); // get fist key of shop.basket[g]['articles'][a].unite_quantite let stf=null; for (var i=1;i<=5;i++){ if (/^Sac/.test(shop.basket[g]["c0"+i+"_label"])){ stf="c0"+i}; @@ -426,9 +399,7 @@ let shop= { '  '; for (var a in shop.basket[g]['articles']){ let pnet = shop.basket[g]['articles'][a].quantity * shop.basket[g]['articles'][a].prix_net; - //ptotal = ptotal + pnet; shop.basketitems = shop.basketitems + shop.basket[g]['articles'][a].quantity; - //console.log("basket article",shop.basket[g]['articles'][a]); bsr += ''+ ''+ shop.basket[g]['articles'][a].article +''+ '
'+((shop.basket[g]['articles'][a].c01 != null)?shop.basket[g]['articles'][a].c01:' ')+'
'+ @@ -453,7 +424,6 @@ let shop= { document.getElementById("basketitems").innerHTML = shop.basketitems; } - //document.getElementById("totalnet").innerHTML=ptotal.toFixed(2).replace(/\./,',') + " €"; return false; }, basketQuantityMinus: function(artidx,grpid,artid,step){ @@ -473,19 +443,13 @@ let shop= { if (cval == 1 && step != 1){cval=0;} cval = cval + parseInt(step); document.getElementById('basket_' + artidx).value = cval; - //console.log("get article",grpid,artid); shop.basket[grpid]["articles"][artid]["quantity"] = cval; shop.basketRecalcTotals(); return false; }, basketRemoveArticle: function(grpid,artid){ delete(shop.basket[grpid]["articles"][artid]); - //console.log("shop aricles",); if (Object.keys(shop.basket[grpid]["articles"]).length == 0){ - // let grelement2 = document.getElementById("basket_grouprow2_"+grpid); - // grelement2.parentNode.removeChild(grelement2); - // let grelement1 = document.getElementById("basket_grouprow_"+grpid); - // grelement1.parentNode.removeChild(grelement1); delete(shop.basket[grpid]); } shop.setBasket(); @@ -493,53 +457,46 @@ let shop= { }, askPriceRemoveArticle: function(grpid,artid){ delete(shop.askprice[grpid]["articles"][artid]); - //console.log("shop aricles",); if (Object.keys(shop.askprice[grpid]["articles"]).length == 0){ - // let grelement2 = document.getElementById("basket_grouprow2_"+grpid); - // grelement2.parentNode.removeChild(grelement2); - // let grelement1 = document.getElementById("basket_grouprow_"+grpid); - // grelement1.parentNode.removeChild(grelement1); delete(shop.askprice[grpid]); } shop.setAskPrice(); return false; }, - favoritesRemoveArticle: function(grpid,artid){ - delete(shop.favorites[grpid]["articles"][artid]); - //console.log("shop aricles",); - if (Object.keys(shop.favorites[grpid]["articles"]).length == 0){ - // let grelement2 = document.getElementById("basket_grouprow2_"+grpid); - // grelement2.parentNode.removeChild(grelement2); - // let grelement1 = document.getElementById("basket_grouprow_"+grpid); - // grelement1.parentNode.removeChild(grelement1); - delete(shop.favorites[grpid]); - } - shop.setFavorites(); + favoritesRemoveArticle: function(grpidx,artidx){ + let grparticle = shop.favgroups[grpidx].article; + postData({"cl":"User","fn":"removeUserFaviorite","iduser":"{{session.id_user}}","article":shop.favarticles[grparticle][artidx].article}) + shop.loadFavorites(); return false; }, basketRecalcTotals: function(){ - //let ptotal = 0; shop.basketitems = 0; for (var g in shop.basket){ for (var a in shop.basket[g]['articles']){ shop.basketitems = parseFloat(shop.basketitems) + parseFloat(shop.basket[g]['articles'][a].quantity); let pnet = parseFloat(shop.basket[g]['articles'][a].quantity) * parseFloat(shop.basket[g]['articles'][a].prix_net); document.getElementById('basket_netprice_'+shop.basket[g]['articles'][a].id).innerHTML=pnet.toFixed(2).replace(/\./,',') ; - //ptotal = ptotal + pnet; } } document.getElementById("basketitems").innerHTML = shop.basketitems; - //document.getElementById("totalnet").innerHTML=ptotal.toFixed(2).replace(/\./,',') + " €"; }, gotoHome: function(){ var selectedRows = shop.tblgroups.getSelectedRows(); shop.tblgroups.deselectRow(selectedRows); - document.getElementById("lst_articlegroups").innerHTML=''; - document.getElementById("articlehead").innerHTML='Qube Shop'; - let shophome='

Nouveau Produits

To be done!
'; - shophome+='

Produits présentés

To be done!
'; - document.getElementById("lst_articlegroups").insertAdjacentHTML('beforeend',shophome); - myapp.viewpanel('shop'); + let lst = document.getElementById("lst_articlegroups"); + document.getElementById("articlehead").innerHTML='Nouveaux Produits'; + postData({"cl":"Articles","fn":"getNewArticleGroups","lang":"{{lang}}"}).then(agrps => { + shop.article_groups = agrps.data; + lst.innerHTML=''; + postData({"cl":"Articles","fn":"getNewArticles","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)}); return false; }, cleanBasket: function(){ @@ -570,12 +527,7 @@ let shop= { }, openpdf: function(pdfname){ var windowReference = window.open(); - //postData("report.php",{"generate":repname,"data":data}).then (data => { - windowReference.location = 'media/'+ pdfname; - //window.open(api + "file.php?open=" + encodeURIComponent(data.result.file)); - - //closedataloaddlg(); - //}); + windowReference.location = 'media/'+ pdfname; } } \ No newline at end of file diff --git a/public_html/qubeshop/tmpl/login.html b/public_html/qubeshop/tmpl/login.html index 7c37c3a..52b1e33 100644 --- a/public_html/qubeshop/tmpl/login.html +++ b/public_html/qubeshop/tmpl/login.html @@ -9,7 +9,7 @@ - + @@ -65,9 +65,11 @@
logo
-
- {% if pagename == 'forgotpassword' %} +
+ {% if page == '/module/login/forgotpassword.html' %} {{ include('module/login/forgotpassword.html') }} + {% elseif page == '/module/login/newaccount.html' %} + {{ include('module/login/newaccount.html') }} {% elseif pagename == 'message' %} {{ include('module/login/message.html') }} {% else %} @@ -79,19 +81,17 @@
{{ include('elements/footer.html')}} - + + +