From: Kilian Saffran Date: Wed, 10 Nov 2021 15:14:43 +0000 (+0100) Subject: v20211110 X-Git-Url: http://cloud.dks.lu/git/?a=commitdiff_plain;h=7063d7bebd0c7315a7e923b28e1daaa0ca49722a;p=qube.git v20211110 --- diff --git a/.gitignore b/.gitignore index 563fea5..1a85987 100644 --- a/.gitignore +++ b/.gitignore @@ -33,5 +33,6 @@ api/data/art_groups/* api/data/art_image/* nouse/* public_html/shop/media/* +api/data/live/* diff --git a/api/bin/getapidata.pl b/api/bin/getapidata.pl index b9c8178..77006c7 100644 --- a/api/bin/getapidata.pl +++ b/api/bin/getapidata.pl @@ -237,11 +237,23 @@ if ($onlycopy == 0){ } if ($steps =~ /private_catalogue,/){ my $tmpdoc = (); - $tmpdoc->{0}->{'type_ligne'} = '1'; - $api->getData('private_catalogue',$tmpdoc); - $tmpdoc->{0}->{'type_ligne'} = '2'; - $api->getFiles('private_catalogue',$tmpdoc); - $steps = "articles,"; + if ($type eq 'data'){ + if (($sdata =~ /^\{/) && ($sdata =~ /\}$/) && ($sdata ne "{}")){ + $tmpdoc->{0} = decode_json($sdata); + } else { + print "$sdata incompete!"; + exit(1); + } + $api->getData('private_catalogue',$tmpdoc); + } else { + $tmpdoc->{0}->{'type_ligne'} = '1'; + $api->getData('private_catalogue',$tmpdoc); + $tmpdoc->{0}->{'type_ligne'} = '2'; + $api->getData('private_catalogue',$tmpdoc); + } + + + #$steps = "articles,"; } } @@ -410,6 +422,7 @@ if ($onlyget == 0){ } if ($steps =~ /articles,/){ + $db->exec("update wiges_s_article as wsa, article_groups as ag set ag.article=wsa.article where wsa.id=ag.id and wsa.article!=ag.article;"); $api->writelog("Copy article_groups..."); my $agdata = $db->queryarray("select wsa.id, wsa.article, @@ -536,62 +549,57 @@ if ($onlyget == 0){ } } - $api->writelog("update article_groups brochure..."); - $upselsql = "update wiges_ole_article as woa, article_groups as ag - set ag.brochure = case when woa.nom_fichier is null then null else replace(replace(woa.nom_fichier,'art_brochure','brochure'),'art_bro_pdf','brochure') end - where woa.article = ag.article and woa.code_document in ('art_brochure','art_bro_pdf') ; "; - if ($cfg->{dryrun} == 1){ - print $upselsql."\n"; - } else { - my $agfiche = $db->exec($upselsql); - my $cmd = 'rsync -av '.$cfg->{datapath}.'/art_brochure/ '.$cfg->{mediapath}.'brochure/'; - my $cpr = system($cmd); - if ($cpr != 0){ - $api->writelog("cmd failed:".$cmd."!"); - } - $cmd = 'rsync -av '.$cfg->{datapath}.'/art_bro_pdf/ '.$cfg->{mediapath}.'brochure/'; - $cpr = system($cmd); - if ($cpr != 0){ - $api->writelog("cmd failed:".$cmd."!"); - } - } + $api->writelog("End Copy article_groups..."); - $api->writelog("update article_groups brochure..."); - $upselsql = "update wiges_ole_article as woa, article_groups as ag - set ag.brochure = case when woa.nom_fichier is null then null else replace(replace(woa.nom_fichier,'art_brochure','brochure'),'art_bro_pdf','brochure') end - where woa.article = ag.article and woa.code_document in ('art_brochure','art_bro_pdf') ; "; - if ($cfg->{dryrun} == 1){ - print $upselsql."\n"; - } else { - my $agfiche = $db->exec($upselsql); - my $cmd = 'rsync -av '.$cfg->{datapath}.'/art_brochure/ '.$cfg->{mediapath}.'brochure/'; - my $cpr = system($cmd); - if ($cpr != 0){ - $api->writelog("cmd failed:".$cmd."!"); - } - $cmd = 'rsync -av '.$cfg->{datapath}.'/art_bro_pdf/ '.$cfg->{mediapath}.'brochure/'; - $cpr = system($cmd); - if ($cpr != 0){ - $api->writelog("cmd failed:".$cmd."!"); + } + if (($steps =~ /articles,/) || ($steps =~ /files,/) ){ + $api->writelog("update article_groups files..."); + my $sqlfiles = "select article, +case when code_document in ('art_bro_pdf','art_brochure') then 'brochure' +when code_document in ('art_fiche') then 'fiche' +when code_document in ('art_video') then 'video' +when code_document in ('art_video') then 'bim' +when code_document in ('art_certific') then 'cert' +else null end as folder, +case when code_document in ('art_bro_pdf','art_brochure') then 'brochure' +when code_document in ('art_fiche') then 'fichetechnique' +when code_document in ('art_video') then 'videolink' +when code_document in ('art_video') then 'fichebim' +when code_document in ('art_certific') then 'certificat' +else null end as tblcolumn, +case when commentaire is not null +then commentaire else +concat(case when code_document in ('art_bro_pdf','art_brochure') then 'brochure' +when code_document in ('art_fiche') then 'fiche' +when code_document in ('art_video') then 'video' +when code_document in ('art_video') then 'bim' +when code_document in ('art_certific') then 'cert' +else '' end ,'/',SUBSTRING_INDEX(nom_fichier, '/', -1)) end as tblvalue, +code_document,commentaire,nom_fichier from wiges_ole_article where code_document!='art_image' and article LIKE '&%';"; + my $filedata = $db->queryarray($sqlfiles); + foreach my $f (@{$filedata}){ + if (($f->{tblcolumn} ne "") && ($f->{tblvalue} !~ /^http/) && (-e $cfg->{datapath}.'/'.$f->{nom_fichier})){ + if (! -d dirname($cfg->{mediapath}.'/'.$f->{tblvalue})){ + mkdir dirname($cfg->{mediapath}.'/'.$f->{tblvalue}); } + #print 'cp "'.$cfg->{datapath}.'/'.$f->{nom_fichier}.'" "'.$cfg->{mediapath}.''.$f->{tblvalue}.'"'."\n"; + system('cp "'.$cfg->{datapath}.'/'.$f->{nom_fichier}.'" "'.$cfg->{mediapath}.''.$f->{tblvalue}.'"'); + #print "UPDATE article_groups SET ".$f->{tblcolumn}."='".$f->{tblvalue}."' where article='".$f->{article}."';"."\n"; + $db->exec("UPDATE article_groups SET ".$f->{tblcolumn}."='".$f->{tblvalue}."' where article='".$f->{article}."';"); + } elsif (($f->{tblcolumn} ne "") && ($f->{tblvalue} =~ /^http/)){ + #print "UPDATE article_groups SET ".$f->{tblcolumn}."='".$f->{tblvalue}."' where article='".$f->{article}."';"."\n"; + $db->exec("UPDATE article_groups SET ".$f->{tblcolumn}."='".$f->{tblvalue}."' where article='".$f->{article}."';"); } + } - $api->writelog("update article_groups video..."); - $upselsql = "update wiges_ole_article as woa, article_groups as ag - set ag.videolink = case when woa.commentaire is null then null else woa.commentaire end - where woa.article = ag.article and woa.code_document in ('art_video');"; - if ($cfg->{dryrun} == 1){ - print $upselsql."\n"; - } else { - my $agfiche = $db->exec($upselsql); - } - $api->writelog("End Copy article_groups..."); + $api->writelog("End Copy article_groups files..."); } if ($steps =~ /articles,/){ $api->writelog("copy articles..."); + $db->exec("update wiges_s_article as wsa, articles as ag set ag.article=wsa.article where wsa.id=ag.id and wsa.article!=ag.article;"); my $xarticles = $db->queryarray("select wsa.id, wpc.article_generique as article_group, wsa.article, @@ -643,59 +651,51 @@ if ($onlyget == 0){ $db->exec($sql); } } - $api->writelog("update articles fiches..."); - #my $sqlcleanft = "UPDATE articles set doc_ft=null;"; - #$db->exec($sqlcleanft); - my $agfiche = $db->exec("update wiges_ole_article as woa, articles as ag - set ag.doc_ft = case when woa.nom_fichier is null then null else replace(woa.nom_fichier,'art_fiche','fiche') end - where woa.article = ag.article and woa.code_document = 'art_fiche';"); - #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."!"); - } - $api->writelog("update article_groups video..."); - my $upselsql = "update wiges_ole_article as woa, articles as ag - set ag.videolink = case when woa.commentaire is null then null else woa.commentaire end - where woa.article = ag.article and woa.code_document in ('art_video');"; - if ($cfg->{dryrun} == 1){ - print $upselsql."\n"; - } else { - my $agvid = $db->exec($upselsql); - } - #} - # foreach my $r (@{$agfiche}){ - # if (-e $cfg->{datapath}.'/'.$r->{nom_fichier}){ - # my $newfname = basename($r->{nom_fichier}); - # my $sql = "UPDATE articles set doc_ft='fiche/".$newfname."' where article='".$r->{article}."';"; - # #system($cmd); - # if ($cfg->{dryrun} == 1){ - # print $sql."\n"; - # } else { - # $api->writesql('articles',$sql); - # $db->exec($sql); - # } - # } else { - # #print "File ".dirname($RealBin).'/data/'.$r->{nom_fichier}." does not exist!\n"; - # } - # } - #article_prices - # my $arprice = $db->queryarray("select date_debut,0 as cc_client,article,pu_vente as prix_net from wiges_v_prix_vente wsa where prix_vente=1;"); - # foreach my $r (@{$arprice}){ - # my $nd = { - # 'date_debut' => $r->{'date_debut'}, - # 'cc_client' => $r->{'cc_client'}, - # 'article' => $r->{'article'}, - # 'prix_net' => $r->{'prix_net'} - # }; - # my $sql = $db->createReplaceDDL('article_prices',$nd,undef); - # #print $sql."\n"; - # $db->exec($sql); - - # } + $api->writelog("end copy articles..."); } + if (($steps =~ /articles,/) || ($steps =~ /files,/) ){ + $api->writelog("update articles files..."); + my $sqlfiles = "select article, +case when code_document in ('art_bro_pdf','art_brochure') then 'brochure' +when code_document in ('art_fiche') then 'fiche' +when code_document in ('art_video') then 'video' +when code_document in ('art_video') then 'bim' +when code_document in ('art_certific') then 'cert' +else null end as folder, +case when code_document in ('art_bro_pdf','art_brochure') then 'doc_bro' +when code_document in ('art_fiche') then 'doc_ft' +when code_document in ('art_video') then 'videolink' +when code_document in ('art_bim') then 'doc_bim' +when code_document in ('art_certific') then 'doc_cert' +else null end as tblcolumn, +case when commentaire is not null and nom_fichier NOT LIKE '%.pdf' +then commentaire else +concat(case when code_document in ('art_bro_pdf','art_brochure') then 'brochure' +when code_document in ('art_fiche') then 'fiche' +when code_document in ('art_video') then 'video' +when code_document in ('art_bim') then 'bim' +when code_document in ('art_certific') then 'cert' +else '' end ,'/',SUBSTRING_INDEX(nom_fichier, '/', -1)) end as tblvalue, +code_document,commentaire,nom_fichier from wiges_ole_article where code_document!='art_image' and article NOT LIKE '&%';"; + my $filedata = $db->queryarray($sqlfiles); + foreach my $f (@{$filedata}){ + if (($f->{tblcolumn} ne "") && ($f->{tblvalue} !~ /^http/) && (-e $cfg->{datapath}.'/'.$f->{nom_fichier})){ + if (! -d dirname($cfg->{mediapath}.''.$f->{tblvalue})){ + mkdir dirname($cfg->{mediapath}.''.$f->{tblvalue}); + } + #print 'cp "'.$cfg->{datapath}.'/'.$f->{nom_fichier}.'" "'.$cfg->{mediapath}.''.$f->{tblvalue}.'"'."\n"; + system('cp "'.$cfg->{datapath}.'/'.$f->{nom_fichier}.'" "'.$cfg->{mediapath}.''.$f->{tblvalue}.'"'); + #print "UPDATE articles SET ".$f->{tblcolumn}."='".$f->{tblvalue}."' where article='".$f->{article}."';"."\n"; + $db->exec("UPDATE articles SET ".$f->{tblcolumn}."='".$f->{tblvalue}."' where article='".$f->{article}."';"); + } elsif (($f->{tblcolumn} ne "") && ($f->{tblvalue} =~ /^http/)){ + #print "UPDATE articles SET ".$f->{tblcolumn}."='".$f->{tblvalue}."' where article='".$f->{article}."';"."\n"; + $db->exec("UPDATE articles SET ".$f->{tblcolumn}."='".$f->{tblvalue}."' where article='".$f->{article}."';"); + } + } + + $api->writelog("end copy articles files..."); + } if (($steps =~ /prices,/) || ($steps =~ /articles,/)){ $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);"); diff --git a/api/bin/getapidata2.pl b/api/bin/getapidata2.pl new file mode 100644 index 0000000..2dddd49 --- /dev/null +++ b/api/bin/getapidata2.pl @@ -0,0 +1,788 @@ +#!/usr/bin/env perl + +use strict; +use FindBin qw($RealBin $Bin); +use File::Basename; +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; +use config; +use api; +my $steps = ""; +my $type = "full"; #full or upd +my $dryrun = 0; +my $live = 0; +my $onlycopy = 0; +my $onlyget = 0; +my $sdata = "{}"; +my $interval = "1 DAY"; +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, + "interval|i=s" => \$interval); + +my $runcmd = 'ps ax | grep '.basename($0).' | grep -v \'grep\' | grep -v "bin\/sh" | head -n1 | awk \'{print $1}\''; +my $run = `$runcmd`; +chomp($run); +if (($run ne "") && ($run ne $$)){ + print "process already running on PID: $run $$\n"; + exit(1); +} +my $starttime = POSIX::strftime('%F %T',localtime); +print "Started at".$starttime."\n"; +my $cfg = (); +my $datapath=dirname($RealBin).'/data'; +my $config = config->new(); +my $myenv = "test"; +if ($live == 1){ + $myenv ="live"; +} +$cfg = $config->readcfg($datapath.'/conf/'.$myenv.".conf"); +if ($steps ne ""){ + $steps .= ","; +} +$cfg->{steps} = $steps; +$cfg->{type} = $type; +$cfg->{dryrun} = $dryrun; +$cfg->{live} = $live; +$cfg->{datapath} = $datapath.'/'.$myenv; +$cfg->{logpath} = $datapath.'/'.$myenv.'/log'; +$cfg->{sqlpath} = $datapath.'/'.$myenv.'/sql'; + +if (! -d $cfg->{logpath}){ + mkdir($cfg->{logpath}); +} +if (! -d $cfg->{sqlpath}){ + mkdir($cfg->{sqlpath}); +} +$cfg->{cdate} = POSIX::strftime('%Y%m%d',localtime); +#print "Config:\n".Dumper($cfg); +my $db = mysql->new($cfg); +$cfg->{dbh} = $db; +my $clients = (); +my $articles= (); +my $api = api->new($cfg); +$api->writelog("Steps: ".$steps); +$api->writelog("type:".$type); +$api->writelog("Config:".Dumper($cfg)); +# get clients +# first getall needed data from api +if ($onlycopy == 0){ + # get articles + if (($steps =~ /articles,/)){ + my $tmpart = (); + if ($type eq 'full'){ + for (my $i=1;$i<24000;$i++){ + $tmpart->{$i}->{'id'} = "$i"; + } + } elsif ($type eq 'upd') { + my $usql = "select CURRENT_TIMESTAMP - INTERVAL ".$interval." as date_update;\n"; + print $usql."\n"; + my $res = $db->querysorted($usql); + my @c = (); + 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'); + my $nart = keys(%{$articles}); + print "Articles to update:".keys(%{$articles})."\n"; + if (keys(%{$articles}) == 0){ + exit(0); + } + $api->getData('l_article',$articles,undef); + my $tmpref = (); + my $tmpref2 = (); + foreach my $a (keys(%{$articles})){ + $tmpref->{$a}->{article_lie} = $articles->{$a}->{article}; + $tmpref2->{$a}->{article_generique} = $articles->{$a}->{article}; + } + $api->getData('private_catalogue',$tmpref,undef); + $api->getData('private_catalogue',$tmpref2,undef); + my $tmpdoc = (); + my $res = $db->querysorted("select max(dateheure_document) - INTERVAL 1 DAY 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); + $api->getFiles('ole_article',$articles); + $api->getData('v_prix_vente',$articles); + $api->getData('v_stock',$articles); + my $tmpsel = (); + my @xarts = (); + foreach my $a (keys(%{$articles})){ + push(@xarts,"'".$articles->{$a}->{article}."'"); + } + if (scalar(@xarts) > 0){ + $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); + $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); + } + + } + + if (($steps =~ /famille,/)){ + my $fam = $db->querysorted("select famille_art from wiges_s_article wsa where famille_art is not null group by famille_art;"); + $api->getData('s_famille_article',$fam,undef); + $fam = $db->querysorted("select gp_art from wiges_s_article wsa where gp_art is not null group by gp_art;"); + $api->getData('s_groupe_article',$fam,undef); + } + 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'); + + 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,/)){ + my $res = $db->querysorted("select CONCAT(max(date(date_update)),' 00:00:00') - INTERVAL 2 DAY 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; + $clients = $api->getData('s_client',$clients,'client'); + #$clients = $db->querysorted("select client from wiges_s_client;"); + $api->getData('s_contact_client',$clients,undef); + } + # get ventes + # get contrats cadres + + ##Contrat cadre docs + if ($steps =~ /contratcadre,/){ + print "get Contrat Cadre Docs\n"; + my $ccc = (); + my $res = $db->querysorted("select max(dateheure_modif) - INTERVAL 3 DAY as dateheure_modif from wiges_w_ventes;"); + my @c = (); + my $updx = $res->{0}->{"dateheure_modif"}.""; + push(@c,'>'); + push(@c,$updx); + $ccc->{0}->{'dateheure_modif'} = \@c; + #$ccc->{0}->{'dateheure_modif'} = ['>',$upx]; + #$ccc->{0}->{'document'} = 'CCC'; + print "dh:".Dumper($ccc); + my $docs = $api->getData('w_ventes',$ccc,'no_document'); + print "docs:".Dumper($docs); + foreach my $d (keys(%{$docs})){ + $docs->{$d}->{document} = 'CCC'; + } + $api->getData('w_ventes_pos',$docs,undef); + print Dumper($ccc); + } + + if ($steps =~ /files,/){ + my $tmpdoc = (); + $tmpdoc->{0}->{'code_document'} = 'art_brochure'; + $api->getFiles('ole_article',$tmpdoc); + $tmpdoc->{0}->{'code_document'} = 'art_bro_pdf'; + $api->getFiles('ole_article',$tmpdoc); + $tmpdoc->{0}->{'code_document'} = 'art_certific'; + $api->getFiles('ole_article',$tmpdoc); + $tmpdoc->{0}->{'code_document'} = 'art_fiche'; + $api->getFiles('ole_article',$tmpdoc); + $tmpdoc->{0}->{'code_document'} = 'art_video'; + $api->getFiles('ole_article',$tmpdoc); + $tmpdoc->{0}->{'code_document'} = 'art_bim'; + $api->getFiles('ole_article',$tmpdoc); + $tmpdoc->{0}->{'code_document'} = 'art_certific'; + $api->getFiles('ole_article',$tmpdoc); + $tmpdoc->{0}->{'code_document'} = 'art_form_com'; + $api->getFiles('ole_article',$tmpdoc); + $steps = "articles,"; + } + if ($steps =~ /private_catalogue,/){ + my $tmpdoc = (); + if ($type eq 'data'){ + if (($sdata =~ /^\{/) && ($sdata =~ /\}$/) && ($sdata ne "{}")){ + $tmpdoc->{0} = decode_json($sdata); + } else { + print "$sdata incompete!"; + exit(1); + } + $api->getData('private_catalogue',$tmpdoc); + } else { + $tmpdoc->{0}->{'type_ligne'} = '1'; + $api->getData('private_catalogue',$tmpdoc); + $tmpdoc->{0}->{'type_ligne'} = '2'; + $api->getData('private_catalogue',$tmpdoc); + } + + + #$steps = "articles,"; + } +} + +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); + my $nd = { + 'code_famille' => $r->{'famille_art'}, + 'main_cat_link' => $r->{'firme'}, + 'prod_cat_link' => $r->{'designation'}, + 'prod_cat_fr' => $r->{'designation'}, + 'modified' => POSIX::strftime('%F %T', localtime) + }; + my $nd2 = { + 'famille_art' => ((defined($r->{'famille_art'}))?$r->{'famille_art'}:'0'), + 'titre_fr' => $r->{'designation'}, + 'modified' => POSIX::strftime('%F %T', localtime) + }; + + $nd->{'prod_cat_link'} = $config->toAscii($nd->{'prod_cat_link'}); + #$nd->{'prod_cat_link'} =~ s/^[A-Za-z0-9]/_/g; + #print Dumper($nd); + my $sql = $db->createReplaceDDL('prod_cat',$nd,undef); + my $sql2= $db->createReplaceDDL('familles',$nd2,undef); + if ($cfg->{dryrun} == 1){ + print $sql."\n"; + } else { + $api->writesql('prod_cat',$sql); + $db->exec($sql); + $db->exec($sql2); + } + + } + $api->writelog("End Copy famille..."); + } + if ($steps =~ /famille,/ || ($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"; + ($fr,$de,$qb) = $r->{'designation'} =~ m/^(.*)\s-\s(.*)\s\|\s(.*)$/; + } elsif ($r->{'designation'} =~ /.*-.*/){ + #print "FR|DE\n"; + ($fr,$de) = $r->{'designation'} =~ m/^(.*)\s-\s(.*)$/; + }elsif ($r->{'designation'} =~ /.*\|.*/){ + #print "FR|QUBE\n"; + ($fr,$qb) = $r->{'designation'} =~ m/^(.*)\s\|\s(.*)$/; + }else { + #print "Only FR\n"; + ($fr) = $r->{'designation'}; + } + + my $nd = { + 'group_code' => $r->{'gp_art'}, + # 'main_cat_link' => $r->{'firme'}, + 'prod_cat' => $r->{'famille_art'}, + 'qube_name' => $qb, + 'prod_name_de' => $de.(($qb)?' | '.$qb:''), + 'prod_name_fr' => $fr.(($qb)?' | '.$qb:'') + }; + my $nd2 = { + 'gp_art' => $r->{'gp_art'}, + # 'main_cat_link' => $r->{'firme'}, + 'famille_art' => ((defined($r->{'famille_art'}))?$r->{'famille_art'}:'0'), + 'qube_name' => $qb, + 'titre_de' => $de.(($qb)?' | '.$qb:''), + 'titre_fr' => $fr.(($qb)?' | '.$qb:'') + }; + my $sql = $db->createReplaceDDL('prod_group',$nd,undef); + my $sql2 = $db->createReplaceDDL('groupes',$nd2,undef); + if ($cfg->{dryrun} == 1){ + print $sql2."\n"; + } else { + $api->writesql('groupes',$sql2); + $db->exec($sql); + $db->exec($sql2); + } + } + $api->writelog("End Copy groups..."); + } + if ($steps =~ /clients,/){ + $api->writelog("Copy clients..."); + my $data = $db->queryarray("SELECT * FROM wiges_s_client;"); + foreach my $r (@{$data}){ + + my ($lang); + if ($r->{'langue'} eq "D"){ + $lang = 'de'; + } elsif ($r->{'langue'} eq "F"){ + $lang = 'FR'; + }else { + $lang = $r->{'langue'}; + } + + my $nd = { + 'id' => $r->{'id'}, + 'client' => $r->{'client'}, + 'nom_1' => $r->{'nom_1'}, + 'nom_2' => $r->{'nom_2'}, + 'rue' => $r->{'rue'}, + 'code_postal' => $r->{'code_postal'}, + 'boite_postale' => $r->{'boite_postale'}, + 'localite' => $r->{'localite'}, + 'telephone_1' => $r->{'telephone_1'}, + 'telephone_2' => $r->{'telephone_2'}, + 'fax' => $r->{'fax'}, + 'interlocuteur' => $r->{'interlocuteur'}, + 'division' => $r->{'division'}, + 'departement' => $r->{'departement'}, + 'tva_client' => $r->{'tva_client'}, + 'no_tva' => $r->{'no_tva'}, + 'no_accises' => $r->{'no_accises'}, + 'cond_paiement' => $r->{'cond_paiement'}, + 'pays' => $r->{'pays'}, + 'langue' => $r->{'langue'}, + 'devise' => $r->{'devise'}, + 'on_actif' => $r->{'on_actif'}, + 'raison_sociale' => $r->{'raison_sociale'}, + 'adresse_email' => $r->{'adresse_email'}, + 'adresse_url' => $r->{'adresse_url'}, + 'adresse_client' => $r->{'adresse_client'} + }; + my $sql = $db->createReplaceDDL('clients',$nd,undef); + #print $sql."\n"; + if ($cfg->{dryrun} == 1){ + print $sql."\n"; + } else { + $api->writesql('clients',$sql); + $db->exec($sql); + } + } + $api->writelog("End Copy clients..."); + + $api->writelog("Copy contacts..."); + $data = $db->queryarray("select id as id_wiges,client as id_client, personne as id_personne, nom, adresse_email as useremail, on_actif from wiges_s_contact_client where adresse_email is not null;"); + foreach my $r (@{$data}){ + my $nd = { + 'id_wiges' => $r->{id_wiges}, + 'id_client' => $r->{id_client}, + 'id_personne' => $r->{id_personne}, + 'nom' => $r->{nom}, + 'useremail' => $r->{useremail}, + 'on_actif' => $r->{on_actif} + }; + my $ids = 'id_wiges,id_client,id_personne'; + my $sql = $db->createUpsertDDL('clients_contacts',$nd,undef,$ids); + #print $sql."\n"; + if ($cfg->{dryrun} == 1){ + print $sql."\n"; + } else { + $api->writesql('users',$sql); + $db->exec($sql); + } + + } + $api->writelog("End Copy contacts..."); + } + + if ($steps =~ /articles,/){ + $db->exec("update wiges_s_article as wsa, article_groups as ag set ag.article=wsa.article where wsa.id=ag.id and wsa.article!=ag.article;"); + $api->writelog("Copy article_groups..."); + my $agdata = $db->queryarray("select wsa.id, + wsa.article, + wsa.gp_art, + wsa.famille_art, + wsa.designation as titre, + wpc.c01 as c01_label, + wpc.c02 as c02_label, + wpc.c03 as c03_label, + wpc.c04 as c04_label, + wpc.c05 as c05_label, + wpc.c06 as c06_label, + wpc.c07 as c07_label, + wpc.c08 as c08_label, + wpc.c09 as c09_label, + wpc.c10 as c10_label, + wsa.on_actif, + wsa.date_creation as creationdate + from wiges_s_article wsa + left join wiges_private_catalogue wpc on (wsa.article=wpc.article_generique) + where wpc.type_ligne = '1' group by article;"); + foreach my $r (@{$agdata}){ + my ($fr,$de,$sup); + $r->{titre} =~ s/“/"/g; + $r->{titre} =~ s/”/"/g; + 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/^(.*)-(.*)\"(.*)\".*$/; + } elsif ($r->{'titre'} =~ /.*-.*/){ + #print "FR|DE\n"; + ($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'}, + 'article' => $r->{'article'}, + 'gp_art' => $r->{'gp_art'}, + 'famille_art' => $r->{'famille_art'}, + 'titre_fr' => $fr.(($sup)?' | '.$sup:''), + 'titre_de' => $de.(($sup)?' | '.$sup:''), + 'c01_label' => $r->{'c01_label'}, + 'c02_label' => $r->{'c02_label'}, + 'c03_label' => $r->{'c03_label'}, + 'c04_label' => $r->{'c04_label'}, + 'c05_label' => $r->{'c05_label'}, + 'c06_label' => $r->{'c06_label'}, + 'c07_label' => $r->{'c07_label'}, + 'c08_label' => $r->{'c08_label'}, + 'c09_label' => $r->{'c09_label'}, + 'c10_label' => $r->{'c10_label'}, + 'isactive' => $r->{'on_actif'}, + 'creationdate' => $r->{'creationdate'} + }; + my $sql = $db->createReplaceDDL('article_groups',$nd,undef); + if ($cfg->{dryrun} == 1){ + print $sql."\n"; + } else { + $api->writesql('article_groups',$sql); + $db->exec($sql); + } + + } + #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 =""; + if ($r->{langue} eq "D"){ + $sql= "UPDATE article_groups set description_de='".$db->securetext($r->{designation})."' where id='".$r->{id}."' and article='".$r->{article}."';"; + } elsif ($r->{langue} eq "F"){ + $sql= "UPDATE article_groups set description_fr='".$db->securetext($r->{designation})."' where id='".$r->{id}."' and article='".$r->{article}."';"; + } + #print "sql: $sql\n"; + if ($sql =~ /^UPDATE/){ + if ($cfg->{dryrun} == 1){ + print $sql."\n"; + } else { + $api->writesql('article_groups',$sql); + $db->exec($sql); + } + } + } + + #group images + $api->writelog("update article_groups images..."); + my $upselsql = "update wiges_ole_article as woa, article_groups as ag + set ag.image = case when woa.nom_fichier is null then null else replace(woa.nom_fichier,'art_image','article_groups') end, + ag.imgversion = DATE_FORMAT(woa.dateheure_document,'\%Y\%m\%d\%H\%i') + where woa.article = ag.article and woa.code_document = 'art_image'; "; + if ($cfg->{dryrun} == 1){ + print $upselsql."\n"; + } else { + my $agimg = $db->exec($upselsql); + my $cmd = 'rsync -av '.$cfg->{datapath}.'/art_image/ '.$cfg->{imgpath}.'article_groups/'; + my $cpr = system($cmd); + if ($cpr != 0){ + $api->writelog("cmd failed:".$cmd."!"); + } + } + + $api->writelog("end copy articles groups..."); + } + if (($steps =~ /articles,/) || ($steps =~ /files,/) ){ + $api->writelog("update article_groups files..."); + my $sqlfiles = "select article, +case when code_document in ('art_bro_pdf','art_brochure') then 'brochure' +when code_document in ('art_fiche') then 'fiche' +when code_document in ('art_video') then 'video' +when code_document in ('art_video') then 'bim' +when code_document in ('art_certific') then 'cert' +else null end as folder, +case when code_document in ('art_bro_pdf','art_brochure') then 'brochure' +when code_document in ('art_fiche') then 'fichetechnique' +when code_document in ('art_video') then 'videolink' +when code_document in ('art_video') then 'fichebim' +when code_document in ('art_certific') then 'certificat' +else null end as tblcolumn, +case when commentaire is not null +then commentaire else +concat(case when code_document in ('art_bro_pdf','art_brochure') then 'brochure' +when code_document in ('art_fiche') then 'fiche' +when code_document in ('art_video') then 'video' +when code_document in ('art_video') then 'bim' +when code_document in ('art_certific') then 'cert' +else '' end ,'/',SUBSTRING_INDEX(nom_fichier, '/', -1)) end as tblvalue, +code_document,commentaire,nom_fichier from wiges_ole_article where code_document!='art_image' and article LIKE '&%';"; + my $filedata = $db->queryarray($sqlfiles); + foreach my $f (@{$filedata}){ + if (($f->{tblcolumn} ne "") && ($f->{tblvalue} !~ /^http/) && (-e $cfg->{datapath}.'/'.$f->{nom_fichier})){ + if (! -d dirname($cfg->{mediapath}.'/'.$f->{tblvalue})){ + mkdir dirname($cfg->{mediapath}.'/'.$f->{tblvalue}); + } + #print 'cp "'.$cfg->{datapath}.'/'.$f->{nom_fichier}.'" "'.$cfg->{mediapath}.''.$f->{tblvalue}.'"'."\n"; + system('cp "'.$cfg->{datapath}.'/'.$f->{nom_fichier}.'" "'.$cfg->{mediapath}.''.$f->{tblvalue}.'"'); + #print "UPDATE article_groups SET ".$f->{tblcolumn}."='".$f->{tblvalue}."' where article='".$f->{article}."';"."\n"; + $db->exec("UPDATE article_groups SET ".$f->{tblcolumn}."='".$f->{tblvalue}."' where article='".$f->{article}."';"); + } elsif (($f->{tblcolumn} ne "") && ($f->{tblvalue} =~ /^http/)){ + #print "UPDATE article_groups SET ".$f->{tblcolumn}."='".$f->{tblvalue}."' where article='".$f->{article}."';"."\n"; + $db->exec("UPDATE article_groups SET ".$f->{tblcolumn}."='".$f->{tblvalue}."' where article='".$f->{article}."';"); + } + } + + + + # $api->writelog("End Copy article_groups..."); + + } + if ($steps =~ /articles,/) { + $api->writelog("copy articles..."); + $db->exec("update wiges_s_article as wsa, articles as ag set ag.article=wsa.article where wsa.id=ag.id and wsa.article!=ag.article;"); + my $xarticles = $db->queryarray("select wsa.id, + wpc.article_generique as article_group, + wsa.article, + wsa.gp_art, + wsa.famille_art, + wpc.c01 as c01, + wpc.c02 as c02, + wpc.c03 as c03, + wpc.c04 as c04, + wpc.c05 as c05, + wpc.c06 as c06, + wpc.c07 as c07, + wpc.c08 as c08, + wpc.c09 as c09, + wpc.c10 as c10, + wsa.on_actif, + wsa.date_creation, + wsa.unite_quantite + from wiges_private_catalogue wpc + left join wiges_s_article wsa on (wsa.article=wpc.article_lie) + where wpc.type_ligne = '2' and wsa.id is not null;"); + foreach my $r (@{$xarticles}){ + my $nd = { + 'id' => $r->{'id'}, + 'article_group' => $r->{'article_group'}, + 'article' => $r->{'article'}, + 'gp_art' => $r->{'gp_art'}, + 'famille_art' => $r->{'famille_art'}, + 'c01' => $r->{'c01'}, + 'c02' => $r->{'c02'}, + 'c03' => $r->{'c03'}, + 'c04' => $r->{'c04'}, + 'c05' => $r->{'c05'}, + 'c06' => $r->{'c06'}, + 'c07' => $r->{'c07'}, + 'c08' => $r->{'c08'}, + 'c09' => $r->{'c09'}, + 'c10' => $r->{'c10'}, + 'unite_quantite' => $r->{'unite_quantite'}, + 'isactive' => $r->{'on_actif'}, + 'creationdate' => $r->{'date_creation'} + }; + my $sql = $db->createReplaceDDL('articles',$nd,undef); + #print $sql."\n"; + if ($cfg->{dryrun} == 1){ + print $sql."\n"; + } else { + $api->writesql('articles',$sql); + $db->exec($sql); + } + } + $api->writelog("end copy articles..."); + } + if (($steps =~ /articles,/) || ($steps =~ /files,/) ){ + $api->writelog("update articles files..."); + my $sqlfiles = "select article, +case when code_document in ('art_bro_pdf','art_brochure') then 'brochure' +when code_document in ('art_fiche') then 'fiche' +when code_document in ('art_video') then 'video' +when code_document in ('art_video') then 'bim' +when code_document in ('art_certific') then 'cert' +else null end as folder, +case when code_document in ('art_bro_pdf','art_brochure') then 'doc_bro' +when code_document in ('art_fiche') then 'doc_ft' +when code_document in ('art_video') then 'videolink' +when code_document in ('art_bim') then 'doc_bim' +when code_document in ('art_certific') then 'doc_cert' +else null end as tblcolumn, +case when commentaire is not null and nom_fichier NOT LIKE '%.pdf' +then commentaire else +concat(case when code_document in ('art_bro_pdf','art_brochure') then 'brochure' +when code_document in ('art_fiche') then 'fiche' +when code_document in ('art_video') then 'video' +when code_document in ('art_bim') then 'bim' +when code_document in ('art_certific') then 'cert' +else '' end ,'/',SUBSTRING_INDEX(nom_fichier, '/', -1)) end as tblvalue, +code_document,commentaire,nom_fichier from wiges_ole_article where code_document!='art_image' and article NOT LIKE '&%';"; + my $filedata = $db->queryarray($sqlfiles); + foreach my $f (@{$filedata}){ + if (($f->{tblcolumn} ne "") && ($f->{tblvalue} !~ /^http/) && (-e $cfg->{datapath}.'/'.$f->{nom_fichier})){ + if (! -d dirname($cfg->{mediapath}.''.$f->{tblvalue})){ + mkdir dirname($cfg->{mediapath}.''.$f->{tblvalue}); + } + print 'cp "'.$cfg->{datapath}.'/'.$f->{nom_fichier}.'" "'.$cfg->{mediapath}.''.$f->{tblvalue}.'"'."\n"; + system('cp "'.$cfg->{datapath}.'/'.$f->{nom_fichier}.'" "'.$cfg->{mediapath}.''.$f->{tblvalue}.'"'); + print "UPDATE articles SET ".$f->{tblcolumn}."='".$f->{tblvalue}."' where article='".$f->{article}."';"."\n"; + $db->exec("UPDATE articles SET ".$f->{tblcolumn}."='".$f->{tblvalue}."' where article='".$f->{article}."';"); + } elsif (($f->{tblcolumn} ne "") && ($f->{tblvalue} =~ /^http/)){ + print "UPDATE articles SET ".$f->{tblcolumn}."='".$f->{tblvalue}."' where article='".$f->{article}."';"."\n"; + $db->exec("UPDATE articles SET ".$f->{tblcolumn}."='".$f->{tblvalue}."' where article='".$f->{article}."';"); + } + } + + + } + if (($steps =~ /prices,/) || ($steps =~ /articles,/)){ + $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'}, + }; + my $sql = $db->createUpsertDDL('article_prices',$nd,undef,'cc_client,article'); + #print $sql."\n"; + if ($cfg->{dryrun} == 1){ + print $sql."\n"; + } else { + $api->writesql('article_prices',$sql); + $db->exec($sql); + } + + } + } + if ($steps =~ /contratcadre,/){ + my $arcadre = $db->queryarray("select wwv.client, wwvp.no_document, wwvp.no_position,wwvp.article , wwvp.pu_net + from wiges_w_ventes wwv left join wiges_w_ventes_pos wwvp on (wwv.no_document=wwvp.no_document and wwv.document='CCC') where wwvp.article is not null"); + foreach my $r (@{$arcadre}){ + my $nd = { + 'client' => $r->{'client'}, + 'no_document' => $r->{'no_document'}, + 'no_position' => $r->{'no_position'}, + 'article' => $r->{'article'}, + 'pu_net' => $r->{'pu_net'} + }; + my $sql = $db->createUpsertDDL('clients_contratcadre',$nd,undef,'client,no_document,no_position'); + if ($cfg->{dryrun} == 1){ + print $sql."\n"; + } else { + $api->writesql('clients_contratcadre',$sql); + $db->exec($sql); + } + } + } + if (($steps =~ /prices,/) || ($steps =~ /articles,/) || ($steps =~ /contratcadre,/)){ + + # #contrat cadre client + $api->writelog("copy contrat cadre prices..."); + my $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') where wwvp.article is not null;"); + foreach my $r (@{$arprice}){ + my $nd = { + 'date_debut' => $r->{'date_debut'}, + 'cc_client' => $r->{'cc_client'}, + 'article' => $r->{'article'}, + 'prix_net' => $r->{'prix_net'} + }; + my $sql = $db->createUpsertDDL('article_prices',$nd,undef,'cc_client,article'); + #print $sql."\n"; + if ($cfg->{dryrun} == 1){ + print $sql."\n"; + } else { + $api->writesql('article_prices',$sql); + $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 = { + 'qte_stock' => $r->{'qte_stock'}, + 'qte_commandee' => $r->{'qte_commandee'}, + }; + my $idents = { + 'article' => $r->{'article'} + }; + my $sql = $db->createUpdateDDL('articles',$nd,$idents,undef); + #print $sql."\n"; + if ($cfg->{dryrun} == 1){ + print $sql."\n"; + } else { + $api->writesql('articles',$sql); + $db->exec($sql); + } + } + } + $api->writelog("end copy stock..."); +} + +my $endtime = POSIX::strftime('%F %T',localtime); +$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 1cf76f4..0878aec 100644 --- a/api/bin/lib/api.pm +++ b/api/bin/lib/api.pm @@ -37,7 +37,7 @@ sub sendcurl(){ $self->writelog("NO JSON return!\n=====\n".$strres."\n======\n"); return []; } else { - print "CURL RETURN :".$strres."\n"; + #print "CURL RETURN :".$strres."\n"; if ($strres =~ /"errors:"/){ print "$strres\n"; $self->writelog("APIERROR!\n=====\n".$strres."\n======\n"); diff --git a/api/bin/syncmissing.sh b/api/bin/syncmissing.sh index 4236b4d..b623e76 100644 --- a/api/bin/syncmissing.sh +++ b/api/bin/syncmissing.sh @@ -1,14 +1,41 @@ #!/bin/bash +CALLDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" +if [[ $# -eq 0 ]] +then + echo "No args" + exit 0 +fi +SYNCTYPE=$1 DBHOST="dedi1781.your-server.de" DBNAME="qube_db4" DBUSER="qube_user4" DBPASSWORD="xevt4b99cNRHPEjF" -ARTICLES=(`mysql -h ${DBHOST} -u ${DBUSER} -p${DBPASSWORD} ${DBNAME} -e "select article_lie from wiges_private_catalogue wpc where article_lie not in (select article from wiges_s_article)"`) -CALLDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" -CMD='/usr/local/bin/perl /usr/home/qubewv/api/bin/getapidata.pl -l -g -t data -s articles -d ' -for a in "${ARTICLES[@]}" -do - $CMD '{"article":"'$a'"}' -done + +if [ "${SYNCTYPE}" == "articles" ] +then + CMD='/usr/local/bin/perl /usr/home/qubewv/api/bin/getapidata.pl -l -g -t data -s articles -d ' + asql="select article_lie from wiges_private_catalogue wpc where article_lie not in (select article from wiges_s_article);" + ARTICLES=(`mysql -h ${DBHOST} -u ${DBUSER} -p${DBPASSWORD} ${DBNAME} -e "$asql"`) + for a in "${ARTICLES[@]}" + do + $CMD '{"article":"'$a'"}' + done +elif [ "${SYNCTYPE}" == "private_catlogue" ] +then + CMD='/usr/local/bin/perl /usr/home/qubewv/api/bin/getapidata.pl -l -g -t data -s private_catalogue -d ' + asql="select article_lie from wiges_private_catalogue wpc where article_lie not in (select article from wiges_s_article);" + ARTICLES=(`mysql -h ${DBHOST} -u ${DBUSER} -p${DBPASSWORD} ${DBNAME} -e "$asql"`) + for a in "${ARTICLES[@]}" + do + $CMD '{"article_lie":"'$a'"}' + done +fi + + + + + + +/usr/local/bin/perl /usr/home/qubewv/api/bin/getapidata.pl -l -c -t upd -s articles \ No newline at end of file diff --git a/api/bin/testupload.sh b/api/bin/testupload.sh index 7df8812..9bd8ea5 100644 --- a/api/bin/testupload.sh +++ b/api/bin/testupload.sh @@ -5,5 +5,5 @@ curl -q -A "Qube Wiges SYNCTool" \ --header "Content-Type: application/json" \ --header "Wisol-Api-App-Key: l9345y3e-4b56-3fb4-91ca-404f62d52jfs" \ --header "Wisol-Api-Device-Key: webdev" \ ---request POST --data '{"document":"DPS","client":"10000","firme":"1","no_document":"1",}' \ -https://pointcomm.api.qube.wiges.lu/api/w_ventes/ +--request POST --data '{"document":"DPS","no_document":"11","article":"FLM-FA-0160-2400","firme":"1","commentaire_pos":"TEST "}' \ +https://pointcomm.api.qube.wiges.lu/api/w_ventes_pos/ diff --git a/api/bin/tmpsync.sh b/api/bin/tmpsync.sh index bd5e294..49ead80 100644 --- a/api/bin/tmpsync.sh +++ b/api/bin/tmpsync.sh @@ -3,200 +3,11 @@ CALLDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" CMD='/usr/local/bin/perl /usr/home/qubewv/api/bin/getapidata.pl -l -g -t data -s articles -d ' TMPLOG=${CALLDIR}"/tmp.log" - +mysql -h #${CMD} '{"gp_art":"A104","famille_art":"A1"}' -${CMD} '{"article":"&BFP-B8/A"}' -${CMD} '{"article":"&FGP-DO/B"}' -${CMD} '{"article":"&FGP-P/SL"}' -${CMD} '{"article":"&FGP-S/E20"}' -${CMD} '{"article":"&FIX-IPN"}' -${CMD} '{"article":"&JOI-FJ/B-TB"}' -${CMD} '{"article":"&KAS-AA"}' -${CMD} '{"article":"&KAS-AG"}' -${CMD} '{"article":"&KAS-AW"}' -${CMD} '{"article":"&KSK-FU/A"}' -${CMD} '{"article":"&KSK-FU/N"}' -${CMD} '{"article":"&KSK-FU/W"}' -${CMD} '{"article":"&LIF-E/SP"}' -${CMD} '{"article":"&LIF-P/AS"}' -${CMD} '{"article":"&RES-AR/R"}' -${CMD} '{"article":"&SFP-CPR/A8"}' -${CMD} '{"article":"APL-150150012-013P"}' -${CMD} '{"article":"APL-200200012-016P"}' -${CMD} '{"article":"APL-300200015-016P"}' -${CMD} '{"article":"FGP-ER-.../2500B"}' -${CMD} '{"article":"FGP-ER-.../2500G"}' -${CMD} '{"article":"FGP-ER-.../2500I"}' -${CMD} '{"article":"FGP-W/JW050-030"}' -${CMD} '{"article":"FGP-W/JW070-050"}' -${CMD} '{"article":"FGP-W/JW090-070"}' -${CMD} '{"article":"FGP-W/JW120-100"}' -${CMD} '{"article":"FGP-W/JW140-120"}' -${CMD} '{"article":"FGP-W/JW180-140"}' -${CMD} '{"article":"FGP-W/JW210-150"}' -${CMD} '{"article":"FGP-W/WA140-040"}' -${CMD} '{"article":"FGP-W/WA160-060"}' -${CMD} '{"article":"FGP-W/WA210-100"}' -${CMD} '{"article":"FGP-W/WA260-150"}' -${CMD} '{"article":"FGP-W/WA310-200"}' -${CMD} '{"article":"FIX-IPN075"}' -${CMD} '{"article":"FIX-IPN100"}' -${CMD} '{"article":"FIX-IPN125"}' -${CMD} '{"article":"FIX-IPN150"}' -${CMD} '{"article":"FIX-IPN200"}' -${CMD} '{"article":"KAS-AA-1.3/65"}' -${CMD} '{"article":"KAS-AG-045/02500"}' -${CMD} '{"article":"KAS-AG-055/01300"}' -${CMD} '{"article":"KAS-AG-065/01300"}' -${CMD} '{"article":"KAS-AG-070/02500"}' -${CMD} '{"article":"KAS-AG-075/05000"}' -${CMD} '{"article":"KAS-AG-085/01300"}' -${CMD} '{"article":"KAS-AG-085/02500"}' -${CMD} '{"article":"KAS-AG-085/07500"}' -${CMD} '{"article":"KAS-AG-095/05000"}' -${CMD} '{"article":"KAS-AG-095/07500"}' -${CMD} '{"article":"KAS-AG-120/01300"}' -${CMD} '{"article":"KAS-AG-120/02500"}' -${CMD} '{"article":"KAS-AG-120/05000"}' -${CMD} '{"article":"KAS-AG-120/07500"}' -${CMD} '{"article":"KAS-AG-120/10000"}' -${CMD} '{"article":"KAS-AG-135/10000"}' -${CMD} '{"article":"KAS-AG-140/02500"}' -${CMD} '{"article":"KAS-AG-140/07500"}' -${CMD} '{"article":"KAS-AG-150/10000"}' -${CMD} '{"article":"KAS-AG-160/05000"}' -${CMD} '{"article":"KAS-AG-165/07500"}' -${CMD} '{"article":"KAS-AG-165/15000"}' -${CMD} '{"article":"KAS-AG-170/02500"}' -${CMD} '{"article":"KAS-AG-170/10000"}' -${CMD} '{"article":"KAS-AG-180/05000"}' -${CMD} '{"article":"KAS-AG-200/07500"}' -${CMD} '{"article":"KAS-AG-200/10000"}' -${CMD} '{"article":"KAS-AG-200/15000"}' -${CMD} '{"article":"KAS-AG-210/02500"}' -${CMD} '{"article":"KAS-AG-210/05000"}' -${CMD} '{"article":"KAS-AG-220/10000"}' -${CMD} '{"article":"KAS-AG-240/01300"}' -${CMD} '{"article":"KAS-AG-240/05000"}' -${CMD} '{"article":"KAS-AG-250/10000"}' -${CMD} '{"article":"KAS-AG-280/02500"}' -${CMD} '{"article":"KAS-AG-300/07500"}' -${CMD} '{"article":"KAS-AG-300/15000"}' -${CMD} '{"article":"KAS-AG-340/05000"}' -${CMD} '{"article":"KAS-AG-340/10000"}' -${CMD} '{"article":"KAS-AG-340/20000"}' -${CMD} '{"article":"KAS-AG-400/15000"}' -${CMD} '{"article":"KAS-AG-480/05000"}' -${CMD} '{"article":"KAS-AG-500/20000"}' -${CMD} '{"article":"KAS-AG-540/07500"}' -${CMD} '{"article":"KAS-AG-680/07500"}' -${CMD} '{"article":"KAS-AG-680/10000"}' -${CMD} '{"article":"KAS-AG-700/32000"}' -${CMD} '{"article":"KAS-AW-230/04000B"}' -${CMD} '{"article":"KAS-WK/L-0350-0020B"}' -${CMD} '{"article":"KAS-WK/S-230/0004B"}' -${CMD} '{"article":"LIF-A/TI-RD30-04000G"}' -${CMD} '{"article":"LIF-D/FO-RD12-00500A"}' -${CMD} '{"article":"LIF-D/FO-RD12-00500G"}' -${CMD} '{"article":"LIF-D/FO-RD14-00800A"}' -${CMD} '{"article":"LIF-D/FO-RD14-00800G"}' -${CMD} '{"article":"LIF-D/FO-RD16-01200A"}' -${CMD} '{"article":"LIF-D/FO-RD16-01200G"}' -${CMD} '{"article":"LIF-D/FO-RD18-01600A"}' -${CMD} '{"article":"LIF-D/FO-RD18-01600G"}' -${CMD} '{"article":"LIF-D/FO-RD20-02000A"}' -${CMD} '{"article":"LIF-D/FO-RD20-02000G"}' -${CMD} '{"article":"LIF-D/FO-RD24-02500A"}' -${CMD} '{"article":"LIF-D/FO-RD24-02500G"}' -${CMD} '{"article":"LIF-D/FO-RD30-04000A"}' -${CMD} '{"article":"LIF-D/FO-RD30-04000G"}' -${CMD} '{"article":"LIF-D/FO-RD36-06300A"}' -${CMD} '{"article":"LIF-D/FO-RD36-06300G"}' -${CMD} '{"article":"LIF-D/FO-RD42-08000A"}' -${CMD} '{"article":"LIF-D/FO-RD42-08000G"}' -${CMD} '{"article":"LIF-D/FO-RD52-12500A"}' -${CMD} '{"article":"LIF-D/FO-RD52-12500G"}' -${CMD} '{"article":"LIF-E/HA-RD16-01200"}' -${CMD} '{"article":"LIF-E/SI-M14-0800"}' -${CMD} '{"article":"LIF-E/SI-M16-01200"}' -${CMD} '{"article":"LIF-E/SI-M18-01600"}' -${CMD} '{"article":"LIF-E/SI-M20-03200"}' -${CMD} '{"article":"LIF-E/SI-M24-02500"}' -${CMD} '{"article":"LIF-E/SI-M30-04000"}' -${CMD} '{"article":"LIF-E/SI-RD12-00500"}' -${CMD} '{"article":"LIF-E/SI-RD14-00800"}' -${CMD} '{"article":"LIF-E/SI-RD16-01200"}' -${CMD} '{"article":"LIF-E/SI-RD18-01600"}' -${CMD} '{"article":"LIF-E/SI-RD20-02000"}' -${CMD} '{"article":"LIF-E/SI-RD24-02500"}' -${CMD} '{"article":"LIF-E/SI-RD30-04000"}' -${CMD} '{"article":"LIF-E/SI-RD36-06300"}' -${CMD} '{"article":"LIF-E/SI-RD42-08000"}' -${CMD} '{"article":"LIF-E/SI-RD52-12500"}' -${CMD} '{"article":"LIF-E/SP-RD16-01200"}' -${CMD} '{"article":"LIF-E/SP-RD20-02000"}' -${CMD} '{"article":"LIF-E/SP-RD24-02500"}' -${CMD} '{"article":"LIF-E/SP-RD30-04000"}' -${CMD} '{"article":"LIF-E/SP-RD36-06300"}' -${CMD} '{"article":"LIF-P/AS-RD12/050"}' -${CMD} '{"article":"LIF-P/AS-RD14/215"}' -${CMD} '{"article":"LIF-P/AS-RD16/255"}' -${CMD} '{"article":"LIF-P/BS-RD20"}' -${CMD} '{"article":"LIF-P/BS-RD24"}' -${CMD} '{"article":"LIF-P/BS-RD36"}' -${CMD} '{"article":"LIF-P/FI-M08/58"}' -${CMD} '{"article":"PAL-EURO"}' -${CMD} '{"article":"PAL-EURO-REHAUSSE"}' -${CMD} '{"article":"PAL-GIT"}' -${CMD} '{"article":"PAL-GIT/KG2000"}' -${CMD} '{"article":"PAL-PAN"}' -${CMD} '{"article":"PAL-TIL"}' -${CMD} '{"article":"RDF-M/FR-0240-0200"}' -${CMD} '{"article":"RDF-M/FR-0240-0500"}' -${CMD} '{"article":"RDF-M/FR-0240/0150"}' -${CMD} '{"article":"RDF-M/FR-0250-0500"}' -${CMD} '{"article":"RDF-M/FR-0250/0150"}' -${CMD} '{"article":"RDF-M/FR-0250/0200"}' -${CMD} '{"article":"RDF-M/FR-0300-0200"}' -${CMD} '{"article":"RDF-M/FR-0300-0250"}' -${CMD} '{"article":"RDF-M/FR-0300-1000"}' -${CMD} '{"article":"RDF-M/FR-0500/0125"}' -${CMD} '{"article":"RDF-M/FR-0500/0150"}' -${CMD} '{"article":"RDF-M/FR-0500/0200"}' -${CMD} '{"article":"RDF-M/FR-0600-0250"}' -${CMD} '{"article":"RDF-M/FR-1000-0200"}' -${CMD} '{"article":"RES-AR/P050-050G"}' -${CMD} '{"article":"RES-AR/P050-125G"}' -${CMD} '{"article":"RES-AR/P050-160G"}' -${CMD} '{"article":"RES-AR/P080-165G"}' -${CMD} '{"article":"RES-AR/R040-300B"}' -${CMD} '{"article":"RES-AR/R040-300G"}' -${CMD} '{"article":"RSY-E/C-000365-A"}' -${CMD} '{"article":"RSY-E/S-000270-A"}' -${CMD} '{"article":"RSY-E/S-000300-A"}' -${CMD} '{"article":"RSY-E/S-000365-A"}' -${CMD} '{"article":"RSY-E/S-000390-A"}' -${CMD} '{"article":"RSY-E/S-152025-A"}' -${CMD} '{"article":"SFS-PCC016-0745B"}' -${CMD} '{"article":"SGW-0785-0026"}' -${CMD} '{"article":"SGW-0813-0025"}' -${CMD} '{"article":"SGW-0813-1025"}' -${CMD} '{"article":"SGW-0813-2525"}' -${CMD} '{"article":"SGW-0813-4025"}' -${CMD} '{"article":"SGW-0813/10-25"}' -${CMD} '{"article":"SGW-0813/40-25"}' -${CMD} '{"article":"SGW-0828-DBG10"}' -${CMD} '{"article":"SGW-0875-0005"}' -${CMD} '{"article":"SGW-0875-0005BB"}' -${CMD} '{"article":"SGW-0875-0005CB"}' -${CMD} '{"article":"SGW-0875-0015"}' -${CMD} '{"article":"SGW-0883-0310MB"}' -${CMD} '{"article":"SGW-0883-0310SSG"}' -${CMD} '{"article":"WHM-TA/S-1252800-004"}' -${CMD} '{"article":"WHM-TA/S-1252800-008"}' -${CMD} '{"article":"WHM-TA/T-1252800-008"}' -/usr/local/bin/perl /usr/home/qubewv/api/bin/getapidata.pl -l -t upd -s articles + +/usr/local/bin/perl /usr/home/qubewv/api/bin/getapidata.pl -l -c -t upd -s articles diff --git a/public_html/.htaccess b/public_html/.htaccess index 8821dce..76067db 100644 --- a/public_html/.htaccess +++ b/public_html/.htaccess @@ -1,4 +1,4 @@ - +#FcgidWrapper "/home/httpd/cgi-bin/php74-fcgi-starter.fcgi" .php Options +FollowSymLinks php_flag display_startup_errors off @@ -10,7 +10,8 @@ php_value upload_max_filesize 128M RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d - +#RewriteCond %{REQUEST_FILENAME} !-l +#RewriteCond %{REQUEST_URI} !^/shop/(.*)? RewriteRule "^(.*)$" index.php [NC,L,QSA] diff --git a/public_html/css/site-normal.css b/public_html/css/site-normal.css index 4b68d1d..649a00b 100644 --- a/public_html/css/site-normal.css +++ b/public_html/css/site-normal.css @@ -21,15 +21,7 @@ } -.row.productsrow {display:inline-block; margin:0 auto; background-color:style="background-color:#fff;";} -.row.productsrow.app {clear:left; text-align:center; background-color:#225ba6; padding-bottom:50px; } - -.row.productsrow.app.homeh2 {float:left; width:70%; text-align:left; margin-left:0; padding:0;} - -.row.productsrow.app.homeh2right {float:right; width:30%; text-align:right; background:none;} - -.row.productsrow.app h2 {text-align:left; margin-top:50px; margin-left:0px; margin-bottom:10px;} @@ -327,18 +319,14 @@ and (max-device-width : 667px) { .homeh2 {margin-top:-10px;} - .productsrow { - - margin-top: 100px; - - } + .productsrow { margin-top: 100px; } .row.productsrow.app {padding-bottom:10px; margin-top:50px;} .row.productsrow.app.about {margin-top:10px;} - .row.productsrow.app.homeh2 {float:none; width:100%; margin-top:-50px;} - .row.productsrow.app.homeh2 h2 {margin-top:-50px;} - .row.productsrow.app.homeh2right {display:none;} - .row.productsrow.app h2 {margin-top:10px;} + .row .productsrow .app .homeh2 {float:none; width:100%; margin-top:-50px;} + .row .productsrow .app .homeh2 h2 {margin-top:-50px;} + .row .productsrow .app .homeh2right {display:none;} + .row .productsrow .app h2 {margin-top:10px;} .app1 {float:none; width:100%;} .app2 {display:none;} diff --git a/public_html/css/site.css b/public_html/css/site.css new file mode 100644 index 0000000..8aef345 --- /dev/null +++ b/public_html/css/site.css @@ -0,0 +1,60 @@ +.span33 { + float:none; + display:inline-block; + width: 300px; + height:350px; + background:#ccc; + border: 1px solid #fff; + border-radius: 0px; + padding:0px; + overflow:hidden; + margin:auto; + margin-top:20px; + margin-left:35px; + -webkit-box-shadow: 0px 0px 39px -14px rgba(0,0,0,0.62); +-moz-box-shadow: 0px 0px 39px -14px rgba(0,0,0,0.62); +box-shadow: 0px 0px 39px -14px rgba(0,0,0,0.62); + +} + +/* .row .productsrow {display:inline-block; margin:0 auto; background-color:#fff;} +.row .productsrow .app {clear:left; text-align:center; background-color:#225ba6; padding-bottom:50px; } +.row .productsrow .app .homeh2 {float:left; width:70%; text-align:left; margin-left:0; padding:0;} +.row .productsrow .app .homeh2right {float:right; width:30%; text-align:right; background:none;} +.row .productsrow .app h2 {text-align:left; margin-top:50px; margin-left:0px; margin-bottom:10px;} + +.lastnews {float:none; max-height:300px; width:45%; float:left; margin-top:50px; margin-left: 50px; padding-left:20px; background-color:#fff;} +.lastnews .newspic {float:left; width:30%; text-align:left; background:none;} +.lastnews .newspic img {width:200px; height:auto;} +.lastnews .newstext {float:left; width:450px; text-align:left; margin-left:50px; padding:0;} +.lastnews .newstext h2.h2 {margin-top:0px; top:0px; padding:0px;} +.lastnews:nth-child(even) {border-left: 1px solid #ccc;} +.lastnews:nth-of-type(2n+1) {clear:left;} + +@media only screen +and (min-device-width : 375px) +and (max-device-width : 667px) { + .homeh2 {margin-top:-10px;} + + .productsrow { margin-top: 100px; } + .row .productsrow .app {padding-bottom:10px; margin-top:50px;} + .row .productsrow .app .about {margin-top:10px;} + + .row .productsrow .app .homeh2 {float:none; width:100%; margin-top:-50px;} + .row .productsrow .app .homeh2 h2 {margin-top:-50px;} + .row .productsrow .app .homeh2right {display:none;} + .row .productsrow .app h2 {margin-top:10px;} +} + +@media only screen +and (min-device-width : 320px) +and (max-device-width : 667px) +and (orientation : portrait) { + .row .productsrow .app {padding-bottom:10px;} + .row .productsrow .app.about {margin-top:10px;} + + .row .productsrow .app.homeh2 {float:none; width:100%; margin-top:-50px;} + .row .productsrow .app.homeh2 h2 {margin-top:-50px;} + .row .productsrow .app.homeh2right {display:none;} + .row .productsrow .app h2 {margin-top:10px;} +} */ \ No newline at end of file diff --git a/public_html/css/style.css b/public_html/css/style.css index 7c3f7a3..87ef7d7 100644 --- a/public_html/css/style.css +++ b/public_html/css/style.css @@ -320,24 +320,7 @@ background:#ffffff; text-align:center; } -.span33 { - float:none; - display:inline-block; - width: 300px; - height:350px; - background:#ccc; - border: 1px solid #fff; - border-radius: 0px; - padding:0px; - overflow:hidden; - margin:auto; - margin-top:20px; - margin-left:35px; - -webkit-box-shadow: 0px 0px 39px -14px rgba(0,0,0,0.62); --moz-box-shadow: 0px 0px 39px -14px rgba(0,0,0,0.62); -box-shadow: 0px 0px 39px -14px rgba(0,0,0,0.62); -} .span34 { float:none; @@ -630,7 +613,6 @@ font-size:12px; .image { position:relative; - width:400px; height:400px; } .image img { @@ -3905,13 +3887,7 @@ footer .social2 { margin-top:50px; } -.span33 { - float:none; - display:inline-block; - margin:0 auto; - margin-top:20px; -} #search {display:none;} #share {display:none;} @@ -4164,8 +4140,9 @@ color:#fff; display:inline-block; margin-left:auto; margin-right:auto; - + } + diff --git a/public_html/img/icons/style.css b/public_html/img/icons/style.css deleted file mode 100644 index 5fb940c..0000000 --- a/public_html/img/icons/style.css +++ /dev/null @@ -1,3245 +0,0 @@ -body { - - font-family: font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; - line-height: 24px; - font-size:12pt; - color: #58595b; - /* fallback */ - background-color: #242527; - -} -#desc h2 {display:none;} - -#desc p { -font-size:12px; line-height: 20px; color:#fff; -} - -#preloader { - position: fixed; - top:0; - left:0; - right:0; - bottom:0; - background-color:#fff; /* change if the mask should have another color then white */ - z-index:99; /* makes sure it stays on top */ -} - -#status { - width:200px; - height:200px; - position:absolute; - left:50%; /* centers the loading animation horizontally one the screen */ - top:50%; /* centers the loading animation vertically one the screen */ - background-image:url(../img/status.gif); /* path to your loading animation */ - background-repeat:no-repeat; - background-position:center; - margin:-100px 0 0 -100px; /* is width and height divided by two */ -} - -.lang { -float:right; -height: 25px; -padding:4px; -} - -.lang a:link { -color:#fff; -} - -a:link { - font-size:13pt; - color: #58595b;} - -.disclaimer { - color:#fff; - text-align:justify; - font-size:10pt; - - } -.more { - display: none; - border-top: 1px solid #fff; - border-bottom: 1px solid #fff; } - -#adressbar p { - margin-bottom: 16px; - font-size:13pt; - color: #fff; -} - -.rows { - width:100%; - line-height:24pt; -} -.rows:nth-of-type(odd) { - background: #e0e0e0; -} - -p { - margin-bottom: auto; - font-size:14px; - color: #58595b; -} - -#desc_news > p { - margin-bottom: auto; - font-size:10pt; - color: #fff; - text-align:justify; - line-height:auto; -} - - -p > span { - font-size:13pt; - color: #58595b; -} -a[href^="tel:"] { - color: inherit; - text-decoration: none; -} -a { - outline: none; -} -a:hover { - text-decoration: none; -} -article ul -{ - list-style-type: none; -} - -.mobile { - -display:none; - -} - -.filler { - -height:550px; - -} - -.square-thumb { -width: 120px; -height: 120px; -overflow:hidden; -float : left; -border-color : #ffffff #ffffff #ffffff #ffffff; -border-style : solid; -border-top-width : 1px; -border-right-width : 1px; -border-bottom-width : 1px; -border-left-width : 1px; -margin-left : 25px; -margin-right : auto; -margin-top : 20px; -text-align: center; -background:#fff; -background-image: url("css/loading.gif"); -background-position: center center; -background-repeat: no-repeat; -box-shadow: rgb(124, 124, 124) 3px 3px 3px;" -} - -.square-thumb img { - position: relative; - top: 50%; - -webkit-transform: translateY(-50%); - -ms-transform: translateY(-50%); - transform: translateY(-50%); -} - -a.partner:link { - color: #000; - font-size:11px; - font-weight:bold; -} - -/* visited link */ -a.partner:visited { - color: #000; -} - -/* mouse over link */ -a.partner:hover { - color: #000; -} - -/* selected link */ -a.partner:active { - color: #000; -} - -.span7 { - float:left; - width: 730px; - height:auto; - background:#fff; - border: 0px solid #cccccc; - border-radius: 15px; - padding:15px; - -webkit-box-shadow: 0px 0px 39px -14px rgba(0,0,0,0.62); --moz-box-shadow: 0px 0px 39px -14px rgba(0,0,0,0.62); -box-shadow: 0px 0px 39px -14px rgba(0,0,0,0.62); - -} - -#rmmenu.span12 { - -float:none; -margin:0; -padding:0; -height:auto; -max-width:1200px; -display:inline-block; -text-align:center; -background-image: url(/img/back-icons-menu.png); -z-index:9999999; - -} -.span12 { -float:none; -margin:0; -padding:0; -height:auto; -width:1200px; -text-align:center; - -} - -#mainmenu.container { - -position:relative; -margin-top:-120px; -width:100%; -text-align:center; -padding:0; -padding-bottom:75px; -} - -#contenu.container { -position:relative; -margin-top:-80px; -background:#dddedf; -text-align:center; -} - -.span33 { - - display:inline-block; - width: 300px; - height:350px; - background:#ccc; - border: 1px solid #fff; - border-radius: 0px; - padding:0px; - overflow:hidden; - margin:auto; - margin-top:20px; - margin-left:65px; - -webkit-box-shadow: 0px 0px 39px -14px rgba(0,0,0,0.62); --moz-box-shadow: 0px 0px 39px -14px rgba(0,0,0,0.62); -box-shadow: 0px 0px 39px -14px rgba(0,0,0,0.62); - -} - -.product { - float:left; - display:inline-block; - width: 550px; - border: 1px solid #fff; - border-radius: 0px; - margin: auto 1.5em; - margin-top:20px; - -webkit-box-shadow: 0px 0px 39px -14px rgba(0,0,0,0.62); --moz-box-shadow: 0px 0px 39px -14px rgba(0,0,0,0.62); -box-shadow: 0px 0px 39px -14px rgba(0,0,0,0.62); - -} - -.product-menu { - width:100%; - height:120px; - /* text-align:center; */ - -} -.product-menu .product-menu-wrapper { - -display:inline-block; -margin: auto 0.1em; -width:100px; -height:120px; -background:#245CAA; - -} -.product-menu .product-menu-wrapper .icon { - -float:left; -width:100%; -height:90px; -background-size: 100px 90px; -background-repeat: no-repeat; - -} - -.product-menu .product-menu-wrapper .active { - -float:left; -width:100%; -height:90px; -background-size: 100px 90px; -background-repeat: no-repeat; - -} - -.product-menu .product-menu-wrapper .prodname { - -float:left; width:100%; height:30px; background:#2c2d2d; color:#fff; font-size:9px; -} -.product-menu .product-menu-wrapper .prodname:hover { - -float:left; -width:100%; -height:30px; -background:#245CAA; -color:#fff; -font-size:9px; -} - - -.span4 { - float:right; - width: 300px; - height:auto; - margin-right:0; - background:#fff; - border: 0px solid #cccccc; - border-radius: 15px; - padding:15px; - -webkit-box-shadow: 0px 0px 39px -14px rgba(0,0,0,0.62); --moz-box-shadow: 0px 0px 39px -14px rgba(0,0,0,0.62); -box-shadow: 0px 0px 39px -14px rgba(0,0,0,0.62); - -} - -.span7 .gallery { - - display: inline-block; -} - - -.brand { - width:200px; - height:70px; - font-size: 0 !important; - line-height: 0 !important; - display: inline-block; - text-align:center; - margin: 0 !important; - position: relative; - padding: 0 0 0 0!important; - margin-top:0px; - background:#245CAA; -} - - -.brand img.left { - float:left; - width:167px; - height:50px; - margin-top:10px; - -} - -.brand img.right { - float:right; - width:350px; - height:100px; - margin:auto; - margin-bottom:20px; - -} - -.map{ - position:relative; - margin-top:-50px; - margin-bottom:40px; -} - -.map iframe{ - width:100%; - height:450px; - border:none; -} - -.map-grid iframe{ - width:100%; - height:350px; - border:none; - margin:0 0 -5px 0; - padding:0; -} -#map_canvas img, -.google-maps img { - max-width: none; -} - -h2 { - color: #383838; - font: 300 40px/40px Helvetica Neue, Helvetica, sans-serif; - margin: 0; - - margin-bottom: 18px; - font-weight:600; - text-align:left; -} -h2 > span { - color: #383838; -} -h3 { - color: #383838; - font: 100 27px/27px Helvetica Neue, Helvetica, sans-serif; - margin-top: 5px; - margin-bottom: 5px; - font-weight:500; - text-align:left; -} -h4 { - color: #383838; - font: 100 20px/20px Helvetica Neue, Helvetica, sans-serif; - margin: 0; - - font-weight:600; - margin-bottom: 18px; -} -h5 { - color: #58595b; - font: 300 20px/20px Helvetica Neue, Helvetica, sans-serif; - margin: 0; - - margin-bottom: 14px; -} -h5 > span { - color: #58595b; -} -h5 > em { - font-style: normal; - color: #fff6e5; -} -h6 { - color: #6f6f6f; - font: 300 14px/20px Helvetica Neue, Helvetica, sans-serif; - margin: 0; - - margin-bottom: 14px; - margin-top: -6px; -} -#content ul { - list-style: none; -} -.extra-wrap { - overflow: hidden; -} -/*-----btn-----*/ -.btn.btn-primary { - box-shadow: none; - background: none; - text-shadow: none; - text-decoration: none !important; - position: relative; - display: inline-block; - padding: 17px 36px 16px 37px; - font: 300 20px 'Open Sans'; - color: #fff6e5; - border: none; - letter-spacing: 0; - border-radius: 0; - - background: #cc0000; - -webkit-transition: all 0.35s ease; - -moz-transition: all 0.35s ease; - -o-transition: all 0.35s ease; - transition: all 0.35s ease; -} -.btn.btn-primary:hover { - background: none; - color: #fff6e5; - background: #3e454c; - -webkit-transition: all 0.35s ease; - -moz-transition: all 0.35s ease; - -o-transition: all 0.35s ease; - transition: all 0.35s ease; -} -.btn.btn-info { - box-shadow: none; - background: none; - text-shadow: none; - text-decoration: none !important; - position: relative; - display: inline-block; - padding: 13px 14px 12px 14px; - font: 14px 'Open Sans'; - color: #fff6e5; - border: none; - letter-spacing: 0; - border-radius: 0; - text-transform: uppercase; - background: #cc0000; - -webkit-transition: all 0.35s ease; - -moz-transition: all 0.35s ease; - -o-transition: all 0.35s ease; - transition: all 0.35s ease; -} -.btn.btn-info:hover { - background: #3e454c; - color: #fff6e5; - -webkit-transition: all 0.35s ease; - -moz-transition: all 0.35s ease; - -o-transition: all 0.35s ease; - transition: all 0.35s ease; -} -/*-----list-----*/ -.list1 { - margin: 0; - list-style: none; - margin-bottom: 25px; - margin-top: 26px; -} -.list1 li { - font-size: 14px; - line-height: 24px; - padding-left: 28px; - margin-bottom: 10px; - background: url(../img/list_arrow.png) left 4px no-repeat; -} -.list1 li a { - color: #727c87; - font: 14px Helvetica Neue, Helvetica, sans-serif; - text-transform: uppercase; - line-height: 24px; - -webkit-transition: all 0.35s ease; - -moz-transition: all 0.35s ease; - -o-transition: all 0.35s ease; - transition: all 0.35s ease; -} -.list1 li a:hover { - color: #cc0000; - -webkit-transition: all 0.35s ease; - -moz-transition: all 0.35s ease; - -o-transition: all 0.35s ease; - transition: all 0.35s ease; -} -.list2 { - margin: 0; - position: relative; - list-style: none; - margin-top: 28px; -} -.list2 li { - font-size: 14px; - line-height: 24px; - margin-bottom: 2px; -} -.list2 li .date { - position: relative; - float: left; - color: #6f6f6f; - font: 300 14px/14px 'Helvetica'; - top: 3px; - margin-right: 7px; -} -.list2 li a { - color: #7ecefd; - font-family: Helvetica Neue, Helvetica, sans-serif; - font-size: 14px; - line-height: 24px; - -webkit-transition: all 0.35s ease; - -moz-transition: all 0.35s ease; - -o-transition: all 0.35s ease; - transition: all 0.35s ease; -} -.list2 li a:hover { - color: #a2a0a0; - -webkit-transition: all 0.35s ease; - -moz-transition: all 0.35s ease; - -o-transition: all 0.35s ease; - transition: all 0.35s ease; -} -.list3 { - margin: 0; - list-style: none; - margin-top: 26px; -} -.list3 li { - font-size: 14px; - line-height: 24px; - border-bottom: 1px solid #f5f6f6; - margin-bottom: 14px; -} -.list3 li:first-child + li + li { - border-bottom: none; -} -.list3 li p { - margin-bottom: 13px; -} -.list3 .icon { - float: left; - margin-right: 5px; - width: 31px; - margin-top: 6px; -} -.list4 { - margin: 0; - list-style: none; - display: block; - margin-top: 32px; -} -.list4 li { - font-size: 14px; - line-height: 24px; - margin-bottom: 30px; - padding-bottom: 20px; - border-bottom: 1px solid #f5f6f6; -} -.list4 li h5 { - margin-bottom: 2px; - margin-top: 13px; -} -.list4 .badge { - padding: 0; - margin: 0; - -webkit-border-radius: 0; - -moz-border-radius: 0; - border-radius: 0; - width: 72px; - height: 53px; - text-align: center; - padding-top: 19px; - text-shadow: none; - background-color: #cc0000; - font: 20px/20px 'Open Sans'; - color: #fff6e5; - float: left; - margin-right: 19px; - text-transform: uppercase; -} -.list4 .badge p { - margin-bottom: 0; - margin-top: -3px; -} -.list4 li .extra-wrap p { - font: 14px Helvetica Neue, Helvetica, sans-serif; - line-height: 24px; - color: #c1c1c1; - float: left; -} -.list4 li .extra-wrap a { - font: 14px Helvetica Neue, Helvetica, sans-serif; - line-height: 24px; - color: #c1c1c1; - display: inline-block; - -webkit-transition: all 0.35s ease; - -moz-transition: all 0.35s ease; - -o-transition: all 0.35s ease; - transition: all 0.35s ease; -} -.list4 li .extra-wrap a:hover { - color: #cc0000; - -webkit-transition: all 0.35s ease; - -moz-transition: all 0.35s ease; - -o-transition: all 0.35s ease; - transition: all 0.35s ease; -} -.list4 li > div { - margin-bottom: 6px; -} -.list4 h2 { - margin-top: 0; - margin-bottom: 18px; -} -.list5 { - margin: 0; - list-style: none; - margin-top: auto; -} -.list5 li { - font-size: 14px; - line-height: 24px; - margin-bottom: 19px; - margin-top: 5px; -} -.list5 li a { - color: #cc0000; - font: 300 20px/20px Helvetica Neue, Helvetica, sans-serif; - margin: 0; - text-transform: uppercase; - margin-bottom: 14px; - display: inline-block; - -webkit-transition: all 0.35s ease; - -moz-transition: all 0.35s ease; - -o-transition: all 0.35s ease; - transition: all 0.35s ease; -} -.list5 li a:hover { - color: #3e454c; - -webkit-transition: all 0.35s ease; - -moz-transition: all 0.35s ease; - -o-transition: all 0.35s ease; - transition: all 0.35s ease; -} -.list5 li figure { - margin: 0; - float: left; - margin-right: 18px; -} -.list5 li figure > img { - width: 100%; -} -.list5 li p { - margin-bottom: 0; -} -/*-----thumbs-----*/ -.thumb-pad1 { - margin-bottom: 8px; -} -.thumb-pad1 .thumbnail { - position: relative; - padding: 0; - margin: 0; - border: none; - border-radius: 0; - box-shadow: none; -} -.thumb-pad1 figure { - margin: 0; -} -.thumb-pad1 figure img { - width: 100%; -} -.thumb-pad1 .thumbnail .caption { - padding: 0; - color: #c1c1c1; - overflow: hidden; - padding: 17px 20px 29px 26px; - background-color: #ffffff; -} -.thumb-pad1 .thumbnail .caption h3 { - margin-bottom: 6px; -} -.thumb-pad1 .thumbnail .caption p { - color: #cccccc; - line-height: 24px; - margin-bottom: 18px; -} -.box-thumb1 { - margin-bottom: 30px; -} -.thumb-pad2 { - margin: 0; - margin-top: 16px; -} -.thumb-pad2 .thumbnail { - padding: 0; - margin: 0; - border: none; - border-radius: 0; - box-shadow: none; -} -.thumb-pad2 .thumbnail .caption { - padding: 0; - color: #c1c1c1; -} -.thumb-pad2 .thumbnail .caption a { - color: #6f6f6f; - font: 300 14px/20px Helvetica Neue, Helvetica, sans-serif; - margin: 0; - text-transform: uppercase; - margin-bottom: 11px; - display: inline-block; - -webkit-transition: all 0.35s ease; - -moz-transition: all 0.35s ease; - -o-transition: all 0.35s ease; - transition: all 0.35s ease; -} -.thumb-pad2 .thumbnail .caption a:hover { - color: #cc0000; - -webkit-transition: all 0.35s ease; - -moz-transition: all 0.35s ease; - -o-transition: all 0.35s ease; - transition: all 0.35s ease; -} -.thumb-pad2 figure { - margin: 0; - margin-bottom: 24px; -} -.thumb-pad2 figure img { - width: 100%; -} -.thumb-pad3 { - margin-bottom: 30px; -} -.thumb-pad3 .thumbnail { - padding: 0; - margin: 0; - border: none; - border-radius: 0; - box-shadow: none; -} -.thumb-pad3 .thumbnail .caption { - padding: 0; - color: #c1c1c1; - overflow: hidden; -} -.thumb-pad3 figure { - margin: 0; - float: left; - margin-right: 20px; -} -.thumb-pad3 figure img { - width: 100%; - max-width: 100%; -} -.thumb-pad3 .thumbnail .caption span { - margin-bottom: 8px; - display: block; -} -.thumb-pad3 .thumbnail .caption span a { - color: #6f6f6f; - font: 300 14px/14px Helvetica Neue, Helvetica, sans-serif; - margin: 0; - display: inline-block; - text-transform: uppercase; - -webkit-transition: all 0.35s ease; - -moz-transition: all 0.35s ease; - -o-transition: all 0.35s ease; - transition: all 0.35s ease; -} -.thumb-pad3 .thumbnail .caption span a:hover { - color: #7ecefd; - -webkit-transition: all 0.35s ease; - -moz-transition: all 0.35s ease; - -o-transition: all 0.35s ease; - transition: all 0.35s ease; -} -.thumb-pad3 .thumbnail .caption h4 { - margin-bottom: -1px; -} -.thumb-pad4 { - margin-top: 34px; -} -.thumb-pad4 .thumbnail { - padding: 0; - margin: 0; - border: none; - border-radius: 0; - box-shadow: none; -} -.thumb-pad4 figure { - margin: 0; - margin-bottom: 17px; -} -.thumb-pad4 figure img { - width: 100%; - max-width: 100%; -} -.thumb-pad4 .thumbnail .caption { - padding: 0; - color: #c1c1c1; -} -.thumb-pad4 .thumbnail .caption p { - color: #c1c1c1; - font: 14px Helvetica Neue, Helvetica, sans-serif; - line-height: 24px; - padding-bottom: 9px; -} -.thumb-pad5 { - margin: 0; - display: inline-block; - margin-bottom: 20px !important; -} -.thumb-pad5 .thumbnail { - padding: 0; - margin: 0; - border: none; - border-radius: 0; - box-shadow: none; -} -.thumb-pad5 .thumbnail .caption { - padding: 0; - color: #c1c1c1; -} -.thumb-pad5 figure { - margin: 0; - overflow: hidden; - display: inline-block; - float: left; - margin-right: 20px; -} -.thumb-pad5 figure img { - width: 100%; -} -.thumb-pad6 { - margin-top: 15px; -} -.thumb-pad6 .thumbnail { - position: relative; - padding: 0; - margin: 0; - border: none; - border-radius: 0; - box-shadow: none; -} -.thumb-pad6 figure { - margin: 0; - margin-bottom: 22px; - position: relative; -} -.thumb-pad6 figure img { - width: 100%; -} -.thumb-pad6 .thumbnail .caption { - padding: 0; - color: #c1c1c1; -} -.thumb-pad6 a { - color: #cc0000; - font: 300 20px/20px Helvetica Neue, Helvetica, sans-serif; - margin: 0; - text-transform: uppercase; - margin-bottom: 8px; - display: inline-block; - -webkit-transition: all 0.35s ease; - -moz-transition: all 0.35s ease; - -o-transition: all 0.35s ease; - transition: all 0.35s ease; -} -.thumb-pad6 a:hover { - color: #3e454c; - -webkit-transition: all 0.35s ease; - -moz-transition: all 0.35s ease; - -o-transition: all 0.35s ease; - transition: all 0.35s ease; -} -.thumb-pad6 .badge { - padding: 0; - margin: 0; - position: absolute; - bottom: 0; - right: 0; - border-radius: 0; - text-shadow: none; - box-shadow: none; - background-color: #cc0000; - text-align: center; - padding-top: 11px; - font: 300 30px/30px 'Open Sans'; - color: #ffffff; - width: 71px; -} -.thumb-pad6 .badge p { - font: 600 15px/15px 'Open Sans'; - margin-bottom: 13px; -} -.thumb-pad6 .badge time { - margin-left: 6px; - margin-bottom: 2px; - display: block; -} -.thumb-pad7 .thumbnail { - position: relative; - padding: 0; - margin: 0; - border: none; - border-radius: 0; - box-shadow: none; - margin-top: 33px; -} -.thumb-pad7 figure { - margin: 0; - float: left; - margin-right: 20px; -} -.thumb-pad7 figure img { - width: 100%; -} -.thumb-pad7 h6 { - margin-top: 0; -} -.thumb-pad7 .thumbnail .caption { - padding: 0; - color: #c1c1c1; - overflow: hidden; -} -.thumb-pad7 .thumbnail .caption .name { - float: right; - text-align: right; - margin-top: -13px; -} -.thumb-pad7 .thumbnail .caption .name p { - font: 20px 'Pacifico'; - color: #c1c1c1; - margin-bottom: 0; -} -.thumb-pad7 .thumbnail .caption .name span { - font: 11px Arial, Helvetica Neue, Helvetica, sans-serif; - color: #c1c1c1; - position: relative; - top: -10px; -} -.thumb-pad8 { - position: relative; - padding: 20px 20px 14px 20px; - margin-bottom: 20px; -} -.thumb-pad8 span { - background-color: #cc0000; - width: 100%; - height: 0; - position: absolute; - z-index: 2; - bottom: 0; - left: 0; - right: 0; - -webkit-transition: all 0.4s ease; - -moz-transition: all 0.4s ease; - -o-transition: all 0.4s ease; - transition: all 0.4s ease; -} -.thumb-pad8 strong { - background-color: #f5f6f6; - width: 100%; - height: 100%; - position: absolute; - z-index: 1; - bottom: 0; - left: 0; - right: 0; - -webkit-transition: all 0.5s ease; - -moz-transition: all 0.5s ease; - -o-transition: all 0.5s ease; - transition: all 0.5s ease; -} -.thumb-pad8 .thumbnail { - position: relative; - z-index: 3; - padding: 0; - margin: 0; - border: none; - border-radius: 0; - box-shadow: none; -} -.thumb-pad8 figure { - margin: 0; - width: 100%; - margin-bottom: 25px; -} -.thumb-pad8 figure img { - width: 100%; - max-width: 100%; -} -.thumb-pad8 .thumbnail .caption { - padding: 0; - color: #c1c1c1; -} -.thumb-pad8 .thumbnail .caption a { - color: #6f6f6f; - font: 300 14px/20px Helvetica Neue, Helvetica, sans-serif; - margin: 0; - text-transform: uppercase; - margin-bottom: 11px; - display: inline-block; - -webkit-transition: all 0.5s ease; - -moz-transition: all 0.5s ease; - -o-transition: all 0.5s ease; - transition: all 0.5s ease; -} -.thumb-pad8 .thumbnail .caption p { - -webkit-transition: all 0.5s ease; - -moz-transition: all 0.5s ease; - -o-transition: all 0.5s ease; - transition: all 0.5s ease; -} -/*----------*/ -header { - padding: 0; -} -.follow_block { - position: relative; - padding: 10px 0 0 0; - height: 30px; - background-color: #2f2f2f; - text-align: center; -} -.follow_block ul { - list-style: none; - margin: 0; - display: inline-block; -} -.follow_block ul li { - float: left; -} -.follow_block ul li { - font: 10px Helvetica Neue, Helvetica, sans-serif; - line-height: 24px; - color: #c4c4c4; -} -.follow_block ul li a { - font: 10px Helvetica Neue, Helvetica, sans-serif; - line-height: 24px; - - color: #c4c4c4; -} -.follow_block ul li a:hover { - color: #f4d35c; -} -.follow_block ul li span { - margin: 0 5px; -} -/*-----Language-----*/ - -a.langmenu:link { color:#fff; } -a.langmenu:visited { color:#fff; } - -nav ul { - -webkit-font-smoothing:antialiased; - background: none; - list-style: none; - margin: 0; - padding: 0; - width: 100%; -} -nav li { - float: left; - margin: 0; - padding: 0; - position: relative; - -} -nav li a { - - color: #fff; - display: block; - font-size: 24px; - padding: 20px; - text-align: center; - text-decoration: none; - -webkit-transition: all .25s ease; - -moz-transition: all .25s ease; - -ms-transition: all .25s ease; - -o-transition: all .25s ease; - transition: all .25s ease; -} - -nav li:hover a { - color:#000; -} -nav li ul { - float: left; - left: 0; - opacity: 0; - position: absolute; - top: 100%; - visibility: hidden; - z-index: 1; - -webkit-transition: all .25s ease; - -moz-transition: all .25s ease; - -ms-transition: all .25s ease; - -o-transition: all .25s ease; - transition: all .25s ease; -} -nav li:hover ul { - opacity: 1; - top: 100%; - width:70px; - visibility: visible; - background: #505050; -} -nav li ul li { - float: none; - width: 100%; -} -nav li ul a:hover { - background: #245CAA; -} - -/* Clearfix */ - -.cf:after, .cf:before { - content:""; - display:table; -} -.cf:after { - clear:both; -} -.cf { - zoom:1; -} - -.dropdown img { - -width:30px; -height:30px; - -} - - -/*-----menu-----*/ -.navbar_ { - margin-bottom: 0 !important; -} -.nav-collapse .nav { - float: none !important; -} -.navbar_ .collapse { - overflow: visible; - line-height: 0 !important; - font-size: 0; - filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); -} -.navbar_ .nav-collapse_ .nav li li { - font-size: 14px; - line-height: 24px; - display: block; -} -.navbar_ .navbar-inner { - filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); - -webkit-box-shadow: none; - -moz-box-shadow: none; - box-shadow: none; - margin: 0; - padding: 0; - border: none; - background: none; - -webkit-border-radius: none; - -moz-border-radius: none; - border-radius: none; -} -.navbar_ .nav-collapse_ { - float: right; - height: 40px !important; - margin-top: 10px; -} -.nav-collapse_ { - -webkit-border-radius: 0; - -moz-border-radius: 0; - border-radius: 0; - -webkit-box-shadow: none; - -moz-box-shadow: none; - box-shadow: none; - position: relative; - float: none; - margin: 0; - padding: 0; - background: none; - text-align: center; -} -.nav-collapse_ .nav { - display: none; - float: left; - margin: 0; - padding: 0; -} - -.nav-collapse_ .nav li:first-child { -border:0px; -} -.nav-collapse_ .nav li { - position: relative; - display: inline-block; - margin: 0; - padding: 0; - float: left; - padding-left:20px; - padding-right:20px; - padding-top:10px; - padding-bottom:10px; - margin-left: 5px; - margin-right: 5px; - margin-bottom:10px; - border-left-width:0px; - border-left-color:#fff; - border-left-style: solid; - zoom: 1; -} -.nav-collapse_ .nav > li > a { - -webkit-border-radius: 0; - -moz-border-radius: 0; - border-radius: 0; - margin: 0; - padding: 0; - color: #fff; - box-shadow: none !important; - font-family: Helvetica Neue, Helvetica, sans-serif; - font-size:11pt; - text-shadow: none; - text-align: center; - background: none; - - padding: 5px 7px 5px 7px; - -} -.nav-collapse_ .nav > li.active > a { - color: #fff !important; - box-shadow: none; - border-bottom-width:0px; - border-bottom-color:#fff; - border-bottom-style: solid; -} - -.nav-collapse_ .nav > li.active { - - background:#194178; - -} - -.nav-collapse_ .nav > li.active > a > strong { - display: block; -} -.nav-collapse_ .nav > li a:hover { - color: #fff !important; - background: none; - border-bottom-width:2px; - border-bottom-color:#fff; - border-bottom-style: solid; -} -.nav-collapse_ .nav > li a:hover > strong { - display: block; -} -.nav-collapse_ .nav > .sfHover > a { - color: #197fbd !important; - box-shadow: none; - border-bottom-width:2px; - border-bottom-color:#197fbd; - border-bottom-style: solid; -} -.nav-collapse_ .nav > .sfHover > a > strong { - display: block; -} -.nav-collapse_ .nav > li > a span { - display: block; - position: absolute; - height: 6px; - top: 46px; - width: 6px; - left: 31px; -} -.nav-collapse_ .nav > li a > strong { - - position: absolute; - bottom: -5px; - display: none; - text-align: center; - margin-left: -5px; - width: 9px; - height: 5px; - left: 50%; -} -/*-----subMenu1-----*/ -.nav-collapse .sub-menu > ul { - position: absolute; - display: none; - width: 200px; - left: 0; - top: 58px; - list-style: none !important; - zoom: 1; - z-index: 11; - background: #75AE42; - opacity: 0.9; - filter: alpha(opacity=90); - padding: 16px 5 16px 5; - margin: 0; - text-align:left; - border: 1px solid #fff; - border-radius: 0px; - padding:15px; -} -.nav-collapse .sub-menu > ul li { - background: none; - float: none; - margin: 0; - padding: 5px; - border: none; - text-align: left; - margin-bottom: 4px; - -} -.nav-collapse .sub-menu > ul li:hover { - color:#fff; - background:#1984C6; -} - -.nav-collapse .sub-menu > ul li a { - display: block; - background: none; - padding: 0; - margin: 0; - font-family: Helvetica Neue, Helvetica, sans-serif; - font-size:13pt; - color: #fff6e5; - display: inline-block; - -webkit-transition: all 0.35s ease; - -moz-transition: all 0.35s ease; - -o-transition: all 0.35s ease; - transition: all 0.35s ease; -} -.nav-collapse .sub-menu > ul li a span { - margin-left: 10px; - display: inline-block; - background: url(../img/menu-marker2.png) no-repeat; - width: 6px; - height: 5px; - position: relative; - top: -3px; -} -.nav-collapse .sub-menu > ul li a:hover { - text-decoration: none; - background: none !important; - color: #fff !important; - -webkit-transition: all 0.5s ease; - -moz-transition: all 0.5s ease; - -o-transition: all 0.5s ease; - transition: all 0.5s ease; -} -.nav-collapse .sub-menu > ul li.sfHover > a { - text-decoration: none; - background: none !important; - color: #cc0000 !important; -} -/*-----subMenu2-----*/ -.nav-collapse .sub-menu ul ul { - position: absolute; - display: none; - width: 164px; - left: 165px; - top: -16px; - list-style: none !important; - zoom: 1; - z-index: 11; - background: #fff6e5; - padding: 16px 0 16px 0; - margin: 0; - border: 1px solid #cc0000; - border-radius: 12px; - padding:15px; -} -.nav-collapse .sub-menu ul ul li a { - display: block; - background: none; - padding: 0; - margin: 0; - font: 500 15px/15px Helvetica Neue, Helvetica, sans-serif; - color: #3e454c; - - display: inline-block; - -webkit-transition: all 0.35s ease; - -moz-transition: all 0.35s ease; - -o-transition: all 0.35s ease; - transition: all 0.35s ease; -} -.nav-collapse .sub-menu ul ul li a:hover { - text-decoration: none; - background: none !important; - color: #cc0000 !important; - -webkit-transition: all 0.5s ease; - -moz-transition: all 0.5s ease; - -o-transition: all 0.5s ease; - transition: all 0.5s ease; -} - - - -/*-----menu-2-----*/ - -.nav-collapse_ .nav2 { - display: inline-block; - float: left; - margin: 0; - padding: 0; -} - -.nav-collapse_ .nav2 li:first-child { -border:0px; -} -.nav-collapse_ .nav2 li { - position: relative; - display: inline-block; - margin: 0; - padding: 0; - float: left; - padding-left:20px; - padding-right:20px; - padding-top:10px; - padding-bottom:10px; - margin-left: 5px; - margin-right: 5px; - margin-bottom:10px; - border-left-width:0px; - border-left-color:#fff; - border-left-style: solid; - zoom: 1; -} -.nav-collapse_ .nav2 > li > a { - -webkit-border-radius: 0; - -moz-border-radius: 0; - border-radius: 0; - margin: 0; - padding: 0; - color: #fff; - box-shadow: none !important; - font-family: Helvetia, sans-serif; - font-size:11pt; - text-shadow: none; - text-align: center; - background: none; - - padding: 5px 7px 5px 7px; - -} -.nav-collapse_ .nav2 > li.active > a { - color: #fff !important; - box-shadow: none; - border-bottom-width:0px; - border-bottom-color:#fff; - border-bottom-style: solid; -} - -.nav-collapse_ .nav2 > li.active { - - background:#194178; - -} - -.nav-collapse_ .nav2 > li.active > a > strong { - display: block; -} -.nav-collapse_ .nav2 > li a:hover { - color: #fff !important; - background: none; - border-bottom-width:2px; - border-bottom-color:#fff; - border-bottom-style: solid; -} -.nav-collapse_ .nav2 > li a:hover > strong { - display: block; -} -.nav-collapse_ .nav2 > .sfHover > a { - color: #197fbd !important; - box-shadow: none; - border-bottom-width:2px; - border-bottom-color:#197fbd; - border-bottom-style: solid; -} -.nav-collapse_ .nav2 > .sfHover > a > strong { - display: block; -} -.nav-collapse_ .nav2 > li > a span { - display: block; - position: absolute; - height: 6px; - top: 46px; - width: 6px; - left: 31px; -} -.nav-collapse_ .nav2 > li a > strong { - - position: absolute; - bottom: -5px; - display: none; - text-align: center; - margin-left: -5px; - width: 9px; - height: 5px; - left: 50%; -} -/*-----subMenu1-----*/ -.nav-collapse .sub-menu > ul { - position: absolute; - display: none; - width: 200px; - left: 0; - top: 58px; - list-style: none !important; - zoom: 1; - z-index: 11; - background: #75AE42; - opacity: 0.9; - filter: alpha(opacity=90); - padding: 16px 5 16px 5; - margin: 0; - text-align:left; - border: 1px solid #fff; - border-radius: 0px; - padding:15px; -} -.nav-collapse .sub-menu > ul li { - background: none; - float: none; - margin: 0; - padding: 5px; - border: none; - text-align: left; - margin-bottom: 4px; - -} -.nav-collapse .sub-menu > ul li:hover { - color:#fff; - background:#1984C6; -} - -.nav-collapse .sub-menu > ul li a { - display: block; - background: none; - padding: 0; - margin: 0; - font-family: Helvetica Neue, Helvetica, sans-serif; - font-size:13pt; - color: #fff6e5; - display: inline-block; - -webkit-transition: all 0.35s ease; - -moz-transition: all 0.35s ease; - -o-transition: all 0.35s ease; - transition: all 0.35s ease; -} -.nav-collapse .sub-menu > ul li a span { - margin-left: 10px; - display: inline-block; - background: url(../img/menu-marker2.png) no-repeat; - width: 6px; - height: 5px; - position: relative; - top: -3px; -} -.nav-collapse .sub-menu > ul li a:hover { - text-decoration: none; - background: none !important; - color: #fff !important; - -webkit-transition: all 0.5s ease; - -moz-transition: all 0.5s ease; - -o-transition: all 0.5s ease; - transition: all 0.5s ease; -} -.nav-collapse .sub-menu > ul li.sfHover > a { - text-decoration: none; - background: none !important; - color: #cc0000 !important; -} -/*-----subMenu2-----*/ -.nav-collapse .sub-menu ul ul { - position: absolute; - display: none; - width: 164px; - left: 165px; - top: -16px; - list-style: none !important; - zoom: 1; - z-index: 11; - background: #fff6e5; - padding: 16px 0 16px 0; - margin: 0; - border: 1px solid #cc0000; - border-radius: 12px; - padding:15px; -} -.nav-collapse .sub-menu ul ul li a { - display: block; - background: none; - padding: 0; - margin: 0; - font: 500 15px/15px Helvetica Neue, Helvetica, sans-serif; - color: #3e454c; - - display: inline-block; - -webkit-transition: all 0.35s ease; - -moz-transition: all 0.35s ease; - -o-transition: all 0.35s ease; - transition: all 0.35s ease; -} -.nav-collapse .sub-menu ul ul li a:hover { - text-decoration: none; - background: none !important; - color: #cc0000 !important; - -webkit-transition: all 0.5s ease; - -moz-transition: all 0.5s ease; - -o-transition: all 0.5s ease; - transition: all 0.5s ease; -} - - - - - - -/*----content-----*/ -#content { - position: relative; - padding: 0 0 0 0; -} -.img-polaroid { - position: relative; - padding: 7px; - background: none; - box-shadow: none; - border: 1px solid #f1f1f1; - max-width: inherit; - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; -} -#toTop { - display: none; - width: 42px; - height: 42px; - overflow: hidden; - background: url(../img/top.png) 0 top no-repeat; - position: fixed; - margin-right: -690px !important; - right: 50%; - bottom: 40px; - z-index: 999; -} -#toTop:hover { - background: url(../img/top.png) 0 bottom no-repeat; -} -.mail { - font: 14px Helvetica Neue, Helvetica, sans-serif; - line-height: 24px; - color: #c1c1c1; - -webkit-transition: all 0.35s ease; - -moz-transition: all 0.35s ease; - -o-transition: all 0.35s ease; - transition: all 0.35s ease; -} -.mail:hover { - color: #d26600; - -webkit-transition: all 0.35s ease; - -moz-transition: all 0.35s ease; - -o-transition: all 0.35s ease; - transition: all 0.35s ease; -} -.box1 p > a { - color: #f1511f; - font-size: 11px; - -webkit-transition: all 0.35s ease; - -moz-transition: all 0.35s ease; - -o-transition: all 0.35s ease; - transition: all 0.35s ease; -} -.box1 p > a:hover { - color: #181818; - -webkit-transition: all 0.35s ease; - -moz-transition: all 0.35s ease; - -o-transition: all 0.35s ease; - transition: all 0.35s ease; -} -.box1 ul { - margin: 0; - list-style: none; - overflow: hidden; -} -.box1 ul li { - margin-bottom: 19px; -} -.follow_icon { - margin: 0; - list-style: none; - margin-top: 33px; -} -.follow_icon li { - float: left; - margin-right: 8px; -} -.follow_icon li a { - width: 35px; - height: 34px; - display: inline-block; - overflow: hidden; - -webkit-border-radius: 35px; - -moz-border-radius: 35px; - border-radius: 35px; -} -.follow_icon li a > img { - margin-top: 0; - -webkit-transition: all 0.35s ease; - -moz-transition: all 0.35s ease; - -o-transition: all 0.35s ease; - transition: all 0.35s ease; -} -.follow_icon li a:hover > img { - margin-top: -34px; - -webkit-transition: all 0.35s ease; - -moz-transition: all 0.35s ease; - -o-transition: all 0.35s ease; - transition: all 0.35s ease; -} -.error-search h3 { - line-height: 29px; - margin-top: 142px; -} -.slogan { - padding-bottom: 26px; - border-bottom: 1px solid #f5f6f6; - margin-bottom: 60px; - overflow: hidden; -} -.slogan h2 { - margin-bottom: 7px; - margin-top: 33px; -} -.slogan > div { - float: left; -} -.slogan > .btn-primary { - margin-top: 38px; -} -/*-----carousel-----*/ -.list_carousel { - position: relative; -} -.caroufredsel_wrapper { - height: 286px !important; -} -.list_carousel #foo { - margin: 0; - padding: 0; - list-style: none; - display: block; - cursor: default; - height: 100% !important; -} -.list_carousel #foo > li { - padding: 0; - float: left; - cursor: default; - margin-right: 4px; -} -.list_carousel #foo li figure { - margin: 0; - float: left; - margin-right: 20px; -} -.list_carousel #foo li figure img { - width: 100%; -} -.list_carousel.responsive { - width: auto; - padding-top: 30px; - padding-left: 30px; - padding-right: 30px; - padding-bottom: 81px; - background-color: #f5f6f6; - margin-top: 34px; -} -.list_carousel #foo li .caption h5 { - margin-bottom: 5px; -} -.list_carousel #foo li .caption h6 { - margin-bottom: 19px; -} -.list_carousel #foo li .caption p { - margin-bottom: 11px; -} -.list_carousel.responsive .caroufredsel_wrapper { - cursor: default !important; -} -.list_carousel .prev, -.list_carousel .next { - display: inline-block; - width: 42px; - height: 42px; - cursor: pointer; - position: absolute; - bottom: 27px; -} -.list_carousel .prev { - background: url(../img/prev_arrow.png) 0 top no-repeat; - right: 71px; - -webkit-transition: all 0.25s ease; - -moz-transition: all 0.25s ease; - -o-transition: all 0.25s ease; - transition: all 0.25s ease; -} -.list_carousel .next { - background: url(../img/next_arrow.png) 0 top no-repeat; - right: 29px; - -webkit-transition: all 0.25s ease; - -moz-transition: all 0.25s ease; - -o-transition: all 0.25s ease; - transition: all 0.25s ease; -} -.list_carousel .prev:hover { - background: url(../img/prev_arrow.png) 0 bottom no-repeat; - -webkit-transition: all 0.25s ease; - -moz-transition: all 0.25s ease; - -o-transition: all 0.25s ease; - transition: all 0.25s ease; -} -.list_carousel .next:hover { - background: url(../img/next_arrow.png) 0 bottom no-repeat; - -webkit-transition: all 0.25s ease; - -moz-transition: all 0.25s ease; - -o-transition: all 0.25s ease; - transition: all 0.25s ease; -} -/*-----subscribeForm-----*/ -#subscribe-form { - margin: 0; - position: relative; - top: 8px; -} -#subscribe-form .error { - display: block; - overflow: hidden; - height: 0px; - position: absolute; - top: 37px; - left: 0; - font: 11px Helvetica Neue, Helvetica, sans-serif; - color: #91d6fd; - -webkit-transition: all 0.3s ease; - -moz-transition: all 0.3s ease; - -o-transition: all 0.3s ease; - transition: all 0.3s ease; -} -#subscribe-form input { - background-color: #252833; - border: none; - width: 100%; - outline: none; - box-shadow: none; - margin: 0; - color: #4a4f63; - font: 12px Helvetica Neue, Helvetica, sans-serif; - line-height: 19px; - border-radius: 0; - padding: 9px 10px 10px 10px; - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; - float: none; - height: 34px; - border-width: 1px; - border-style: solid; - border-top-color: #1f222b; - border-right-color: #63656d; - border-bottom-color: #a0a1a6; - border-left-color: #21242e; -} -#subscribe-form fieldset .email { - float: none; - margin-right: 0; - margin-bottom: 23px; -} -#subscribe-form label.invalid .error { - height: 19px; -} -#subscribe-form .success { - display: none; - border: none; - border-radius: 0; - padding: 5px 0 5px 5px; - background-color: #63656d; - text-align: center; - color: #c1c1c1; - position: absolute; - z-index: 10; - left: 0; - right: 0; - top: 0px; - width: 390px; -} -/*-----search-----*/ - -#search input { - background: #ebeced; - width: 146px; - outline: none; - box-shadow: none; - color: #000; - font: 14px Helvetica Neue, Helvetica, sans-serif; - line-height: 24px; - border-radius: 0; - padding: 5px 15px 6px 18px; - margin: 0; - border: 1px solid #245caa; - - -} -.search_link { - -webkit-transition: all 0.5s ease; - -moz-transition: all 0.5s ease; - -o-transition: all 0.5s ease; - transition: all 0.5s ease; -} -#search-404 .btn.btn-primary { - margin: 0; - padding: 14px 20px 14px 19px; -} -/*-----map-----*/ -.map { - margin: 7px 0 30px 0; - display: inline-block; - width: 100%; - line-height: 0; -} - -.map iframe { - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; - width: 100%; - height: 606px ; - border: none; - line-height: 0; -} -.info { - margin-bottom: 16px; - margin-top: 26px; -} -.info p { - margin-bottom: 0; - font: 14px Helvetica Neue, Helvetica, sans-serif; - line-height: 24px; -} -.info em { - font-style: normal; - display: inline-block; - width: 98px; -} -.info a { - font: 14px Helvetica Neue, Helvetica, sans-serif; - color: #c1c1c1; - -webkit-transition: all 0.35s ease; - -moz-transition: all 0.35s ease; - -o-transition: all 0.35s ease; - transition: all 0.35s ease; -} -.info a:hover { - color: #3e454c; - -webkit-transition: all 0.35s ease; - -moz-transition: all 0.35s ease; - -o-transition: all 0.35s ease; - transition: all 0.35s ease; -} -/*-----form-----*/ -#contact-form { - position: relative; - z-index: 1; - margin: 34px 0 20px 0; - padding: 0 0 0 0; - vertical-align: top; - font-family: Helvetica Neue, Helvetica, sans-serif; -} -.txt-form { - display: block; - padding-bottom: 6px; - color: #ffffff; -} -.txt-form span { - color: #ffffff; -} -.form-div-1, -.form-div-2, -.form-div-3 { - float: left; - width: 202px; -} -.form-div-1, -.form-div-2 { - margin-right: 6px; -} -#contact-form div { - overflow: hidden; -} -#contact-form fieldset { - position: relative; - z-index: 10; - overflow: hidden; - padding: 0; - width: 100%; - border: none; -} -#contact-form label { - position: relative; - display: block; - float: left; - margin: 0; - padding: 0; - min-height: 48px; - width: 100%; -} -#contact-form .message { - display: block !important; - min-height: 129px; - width: 100%; - margin-bottom: 10px; -} -#contact-form input, -#contact-form textarea { - -webkit-box-shadow: none; - -moz-box-shadow: none; - box-shadow: none; - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - border-radius: 10px; - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; - float: left; - background-color: #fff; - margin: 0; - padding: 8px 15px 10px 15px; - width: 100%; - outline: none; - border: solid 1px #707070; - font: 14px Helvetica Neue, Helvetica, sans-serif; - line-height: 24px; - color: #000; -} -#contact-form input { - height: 42px; -} -#contact-form input:focus, -#contact-form textarea:focus { - -webkit-box-shadow: none; - -moz-box-shadow: none; - box-shadow: none; -} -#contact-form .area .error { - float: none; -} -#contact-form textarea { - overflow: auto; - width: 100%; - height: 322px; - resize: none; -} -#contact-form .success { - position: absolute; - top: 0; - left: 0; - z-index: 20; - display: none; - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; - padding: 10px 10px; - width: 100%; - border: none; - background: #ebeced; - color: #c1c1c1; - text-align: center; - - font-size: 16px; - font-family: Helvetica Neue, Helvetica, sans-serif; - line-height: 22px; -} -#contact-form .error, -#contact-form .empty { - position: absolute; - bottom: 7px; - left: 2px; - display: none; - overflow: hidden; - padding: 1px 4px 0px 0; - width: 100%; - color: #cc0000; - text-transform: none; - font-size: 11px; - line-height: 1.27em; - font-family: Helvetica Neue, Helvetica, sans-serif; - text-align: right; -} -#contact-form .message .error, -#contact-form .message .empty { - bottom: 0; - text-align: right; -} -.btns a { - float: left; - margin-right: 20px; -} -.btns p { - margin-top: 9px; -} -/*-----footer-----*/ -footer { - padding-top: 56px; - padding-bottom: 38px; - background-color: #245caa; -} -footer .margBot1 { - margin-bottom: 26px; -} -footer .container h1 { - margin:0; - padding:0; - font-family: "HelveticaNeueHeavyCondensed", "HelveticaNeue-Heavy-Condensed", "Helvetica Neue Heavy Condensed", "HelveticaNeueHeavy", "HelveticaNeue-Heavy", "Helvetica Neue Heavy", "HelveticaNeue", "Helvetica Neue", 'TeXGyreHerosCnBold', "Arial Narrow", "Arial", sans-serif; font-stretch:condensed; - font-weight:1000; - font-stretch:condensed; - font-size:30pt; - color:#fff; - } - -.footerlogo { - display:block; - margin-top: -100px; -} - -footer p { - font: 14px 'Helvetica'; - line-height: 24px; - color: #727c87; - margin-top: 26px; - -} -footer p > span { - font-weight: 600; - color: #727c87; -} -footer p > a { - font: 14px 'Helvetica'; - line-height: 24px; - color: #727c87; - -} -footer p > a:hover { - color: #ffffff; - -webkit-transition: all 0.35s ease; - -moz-transition: all 0.35s ease; - -o-transition: all 0.35s ease; - transition: all 0.35s ease; -} -.select-menu { - display: none !important; -} -/*-------------------------------------------------------media queries----------------------------------------------------------*/ -@media (min-width: 1200px) { - .nav-collapse_ { - display: block; - } - #search-404 input { - width: 275px; - } - #contact-form label { - display: inline-block; - } - .form-div-1, - .form-div-2, - .form-div-3 { - width: 252px; - } - #subscribe-form input { - width: 270px; - margin-bottom: 0; - } - .thumb-pad2 .badge strong { - display: block; - } - #subscribe-form fieldset .email { - float: left; - margin-right: 10px; - } - .caroufredsel_wrapper { - height: 186px !important; - } -} -/*---------------------------------------------------------------------------------------------------------------------------*/ -@media (min-width: 980px) and (max-width: 1199px) { - .nav-collapse_ { - height: auto !important; - } - .caroufredsel_wrapper { - height: 286px !important; - } -} -/*---------------------------------------------------------------------------------------------------------------------------*/ -@media (max-width: 979px) { - .thumb-pad7 figure { - width: 100%; - float: none; - margin-right: 0; - margin-bottom: 10px; - } - .thumb-pad4 figure { - float: left; - margin-right: 20px; - } - .box-thumb1 { - width: 20%; - float: left; - margin-right: 15px; - } - .box4 { - width: 27%; - margin-right: 20px; - float: left; - } - .error img { - margin-left: 0; - } -} -/*---------------------------------------------------------------------------------------------------------------------------*/ -@media (min-width: 768px) and (max-width: 979px) and (orientation : portrait)and (-webkit-min-device-pixel-ratio: 2) { - .form-div-1, - .form-div-2, - .form-div-3 { - width: 100%; - } - .form-div-1, - .form-div-2 { - margin-right: 20px; - } - - .map { - margin-top:50px; - height:200px; - } - .map iframe { - margin-top:50px; - height:200px; - } - #contact-form .error, - #contact-form .empty { - bottom: 0; - } - .navbar_ .navbar-inner > div { - text-align: center; - } - #flexslider { - margin-top: -100px; - - } - h1.brand { - width:100%; - margin-top:-40px; - padding:0; - } - h1.brand img { - margin-top:-40px; - margin-bottom:50px; - max-width:200px; - height:auto; - } - .navbar_ .nav-collapse_ { - width: 100%; - margin-bottom: 20px; - margin-top: 0; - } - .navbar_ .nav-collapse_ .nav { - display: none; - } - .navbar_ .nav-collapse_ .nav2 { - display: none; - } - - .navbar_ .nav-collapse_ .mobile { - display: none; - } - - .select-menu { - display: block !important; - margin-bottom: 2px; - width: 100%; - border: 1px solid #000; - background: #d9d9d9 ; - color: #000000; - cursor: pointer; - } - - .slogan > .btn-primary { - float: left; - margin-top: 10px; - } - .thumb-pad6 { - margin-bottom: 35px; - } - .list_carousel #foo li figure { - width: 100%; - margin-bottom: 10px; - } - .caroufredsel_wrapper { - height: 480px !important; - } - .follow-box { - width: 90%; - } - .info-box { - width: 30%; - } - h2 { - font-size: 35px; - line-height: 35px; - } - .error img { - margin-left: 0 !important; - } -} - -@media (min-width: 768px) and (max-width: 1024px) and (orientation : landscape)and (-webkit-min-device-pixel-ratio: 2) { - .form-div-1, - .form-div-2, - .form-div-3 { - width: 100%; - } - .form-div-1, - .form-div-2 { - margin-right: 20px; - } - #contact-form .error, - #contact-form .empty { - bottom: 0; - } - .navbar_ .navbar-inner > div { - text-align: center; - } - .navbar_ .nav-collapse_ { - width: 80%; - float:right; - margin-top: 50px; - } - h1.brand { - - margin-top:auto; - padding:0; - } - h1.brand img { - margin-top:auto; - margin-bottom:50px; - max-width:200px; - height:auto; - } - - .slogan > .btn-primary { - float: left; - margin-top: 10px; - } - .thumb-pad6 { - margin-bottom: 35px; - } - .list_carousel #foo li figure { - width: 100%; - margin-bottom: 10px; - } - .caroufredsel_wrapper { - height: 480px !important; - } - .follow-box { - width: 90%; - } - .info-box { - width: 30%; - } - h2 { - font-size: 35px; - line-height: 35px; - } - .error img { - margin-left: 0 !important; - } -} - - -/*---------------------------------------------------------------------------------------------------------------------------*/ -@media (max-width: 767px) { - - - h2 { - font-size: 35px; - line-height: 35px; - } - h3 { - margin-top: 50px; - } - .slogan { - margin-bottom: 10px; - } - .slogan > .btn-primary { - float: left; - margin-top: 10px; - } - .thumb-pad6 { - width: 45%; - margin-right: 20px; - float: left; - } - .list_carousel .prev { - right: auto; - } - .list_carousel .next { - right: auto; - margin-left: 42px; - } - .info-box { - margin-bottom: 55px; - width: 45%; - float: left; - } - .follow-box { - width: 45%; - float: left; - } - .navbar_ .navbar-inner > div { - text-align: center; - } - h1.brand { - width: 100%; - } - .navbar_ .nav-collapse_ { - width: 100%; - margin-bottom: 20px; - margin-top: 0; - } - .navbar_ .nav-collapse_ { - width: 100%; - } - .navbar_ .nav-collapse_ .nav { - display: none; - } - - .navbar_ .nav-collapse_ .nav2 { - display: none; - } - .select-menu { - display: block !important; - margin-top:10px; - margin-bottom: 2px; - width: 100%; - border: 1px solid #000; - background: #d9d9d9 ; - color: #000000; - cursor: pointer; - } - .thumb-pad7 figure { - float: left; - width: auto; - margin-right: 20px; - } - .top { - display: none; - } - .form-div-1, - .form-div-2, - .form-div-3 { - float: none; - width: 100%; - margin: 0 0 0 0; - } - .error { - text-align: center; - } - .box-thumb1 { - width: 45%; - } - .box4 { - width: 45%; - } - .error img { - margin-left: 0 !important; - } - .caroufredsel_wrapper { - height: 186px !important; - } -} -/*---------------------------------------------------------------------------------------------------------------------------*/ -@media (min-width: 626px) and (max-width: 767px) { - -} -/*---------------------------------------------------------------------------------------------------------------------------*/ -@media (max-width: 626px) { - .info-box { - margin-bottom: 0; - width: 100%; - float: none; - } - .follow-box { - margin-bottom: 0; - width: 100%; - float: none; - } - .error img { - margin-left: 0 !important; - } - .caroufredsel_wrapper { - height: 200px !important; - } -} -/*---------------------------------------------------------------------------------------------------------------------------*/ -@media (max-width: 560px) { - .thumb-pad6 { - width: 100%; - margin-right: 0; - float: left; - } - .thumb-pad5 figure { - float: none; - width: 100%; - margin-bottom: 20px; - } - .error img { - margin-left: 0 !important; - } - .caroufredsel_wrapper { - height: 220px !important; - } -} -/*---------------------------------------------------------------------------------------------------------------------------*/ -@media (min-width: 482px) and (max-width: 625px) { - -} -@media (max-width: 480px) { - .map iframe { - height: 200px; - } - .box-thumb1 { - width: 100%; - float: none; - margin-right: 0; - } - .box4 { - width: 100%; - } - .list4 li .extra-wrap .pull-right { - display: block; - float: left; - width: 100%; - } - .list4 li .extra-wrap p { - margin-bottom: 0px; - } - .error img { - margin-left: 0 !important; - } - .thumb-pad7 figure { - width: 100%; - margin-right: 0; - float: none; - } - .thumb-pad4 figure { - width: 100%; - margin-right: 0; - float: none; - } - .caroufredsel_wrapper { - height: 260px !important; - } -} -/*---------------------------------------------------------------------------------------------------------------------------*/ -@media only screen -and (min-device-width : 320px) -and (max-device-width : 568px) { - - .phone { - - float: left; - max-width: 95%; - margin-top:6px; - padding:5px; - margin-left:5px; - margin-right:5px; - text-align:center; - } - - .phone2 { - max-width: 100%; - float:left; - padding:5px; - margin-top:6px; - margin-left:5px; - margin-right:5px; - font-size:22px; - text-align:center; - } - - .phone2 img { - - float:left; - width:30px; - height:30px; - margin-right:5px; - } - - .phone2 a { - - font-size:22px; - color:#000; - - } - -#commerciaux { - - - width:100%; - margin-left:auto; - -} - -#rule hr { - - display: none; - -} - -#assistantes { - - - width:100%; - margin-left:auto; - margin-top:20px; - - } - -#magasiniers { - - - width:100%; - margin-left:auto; - margin-top:auto; - -} -#chauffeurs { - - - width:100%; - margin-left:auto; - margin-top:20px; - -} - -#direction { - - - - width:100%; - margin-left:auto; - margin-top:auto; - -} - -#renseignements { - - - width:100%; - margin-left:auto; - margin-top:20px; - -} - - .span7 { - width: 100%; - padding:5px; - margin-left:5px; - margin-right:5px; - - } - - .span4 { - float:left; - width: 100%; - padding:5px; - margin-top:10px; - margin-left:5px; - margin-right:5px; - - } - - h1.brand { - margin-top:-25px; - } - - h1.brand img { - margin-top:-25px; - width:300px; - height:auto; - } - - - .map { - display: none; - } - - .row { - -margin-top:auto; - -} - -} - -@media (max-width: 320px) { - .list_carousel #foo li figure { - width: 100%; - margin-bottom: 5px; - } - .caroufredsel_wrapper { - height: 470px !important; - } - .list5 li figure { - width: 100%; - float: none; - margin-right: 0; - margin-top: 5px; - margin-bottom: 10px; - } - .margBot { - margin-bottom: 0; - } - .error img { - margin-left: 0 !important; - } - .caroufredsel_wrapper { - height: 470px !important; - } -} - -@media only screen -and (min-device-width : 768px) -and (max-device-width : 1024px) { - - .nav-collapse .nav - { - margin-top: -50px; - } - - .phone { - - max-width: 100%; - padding:5px; - margin-left:5px; - margin-right:5px; - } - - .span7 { - width: 100%; - padding:5px; - margin-left:5px; - margin-right:5px; - - } - - .span4 { - float:left; - width: 100%; - padding:5px; - margin-top:10px; - margin-left:5px; - margin-right:5px; - - } - - h1.brand { - margin-top:auto; - margin-left:15px; - } - - h1.brand img { - margin-top:auto; - margin-left:15px; - max-width:400px; - height:auto; - } - -} - - -/*---------------------------------------------------------------------------------------------------------------------------*/ - -.error img { - max-width: 100% !important; - margin-top: 105px; - margin-left: 26px; -} -.border1 { - border-bottom: 1px solid #f5f6f6; - padding-bottom: 42px; -} -.border2 { - border-bottom: 1px solid #494f56; - padding-bottom: 37px; - margin-top:10px; -} -.margBot { - margin-bottom: 63px; -} -.margBot1 { - margin-bottom: 45px; -} -.margBot2 { - margin-bottom: 82px; -} -.margBot3 { - margin-bottom: 23px; -} -.margBot4 { - margin-bottom: 29px; -} -.margBot5 { - margin-bottom: 35px; -} -.margBot6 { - margin-bottom: 25px !important; -} -/* .padBot { - padding-bottom: 75px; -} */ -/*---------------------------------------------------------------------------------------------------------------------------*//*Core variables and mixins*/ -.clearfix { - *zoom: 1; -} -.clearfix:before, -.clearfix:after { - display: table; - content: ""; - line-height: 0; -} -.clearfix:after { - clear: both; -} -.hide-text { - font: 0/0 a; - color: transparent; - text-shadow: none; - background-color: transparent; - border: 0; -} -.input-block-level { - display: block; - width: 100%; - min-height: 34px; - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; -} - -/* --- contact form ---- */ -form#contactform input[type="text"] { - width: 100%; - min-height: 40px; - padding-left:20px; - font-size:13px; - padding-right:20px; - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; - -} - -form#contactform textarea { - width: 100%; - padding-left:20px; - padding-top:10px; - font-size:13px; - padding-right:20px; - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; - -} - -form#contactform .validation { - font-size:11px; -} - -#sendmessage { - border:1px solid #e6e6e6; - background:#f6f6f6; - display:none; - text-align:center; - padding:15px 12px 15px 65px; - margin:10px 0; - font-weight:600; - margin-bottom:30px; - -} - -#sendmessage.show,.show { - display:block; -} -table { - border-spacing: 10px; - border-collapse: separate; -} -td{padding: 6px; - border-collapse: separate; - border: 1px solid #58595b; -} -.etabs { margin: 0; padding: 0; text-align:center; } - .tab { display: inline-block; zoom:1; *display:inline; width:200px; background: #eae9e9; border: solid 2px #cc0000; border-bottom: none; -moz-border-radius: 4px 4px 0 0; -webkit-border-radius: 4px 4px 0 0; border-radius: 4px 4px 0 0; } - .tab a { font-size: 16px; line-height: 2em; display: block; padding: 0 10px; outline: none; } - .tab a:hover { text-decoration: underline; background: #58595b; color:#cc0000; } - .tab.active { background: #58595b; color:#cc0000; padding-top: 6px; position: relative; top: 1px; border-color: #cc0000; } - .tab a.active { font-weight: bold; background: #58595b; color:#cc0000;} - .tab-container .panel-container { background: #fff; border: 2px solid #cc0000; padding: 10px; -moz-border-radius: 0 4px 4px 4px; -webkit-border-radius: 0 4px 4px 4px; border-radius: 0 4px 4px 4px; } - .panel-container { margin-bottom: 10px; } - - .tab-container2 .panel-container { background: #fff; border: 2px solid #cc0000; padding: 10px; -moz-border-radius: 0 4px 4px 4px; -webkit-border-radius: 0 4px 4px 4px; border-radius: 0 4px 4px 4px; } - .panel-container2 { margin-bottom: 10px; } - - -.menu_button1 { - -moz-box-shadow:inset 0px 1px 0px 0px #ffffff; - -webkit-box-shadow:inset 0px 1px 0px 0px #ffffff; - box-shadow:inset 0px 1px 0px 0px #ffffff; - background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #fd2424), color-stop(1, #fff) ); - background:-moz-linear-gradient( center top, #fd2424 5%, #fff 100% ); - filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fd2424', endColorstr='#fff'); - background-color:#cc0000; - -moz-border-radius:6px; - -webkit-border-radius:6px; - border-radius:6px; - border:1px solid #8a8a8a; - display:inline-block; - color:#ffffff; - font-family:Helvetica; - font-size:11px; - padding:2px 14px; - text-decoration:none; - text-shadow:1px 1px 0px #000000; -} -.menu_button1:visited { - - color:#fff; -} -.menu_button1:hover { - background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #fff), color-stop(1, #fd2424) ); - background:-moz-linear-gradient( center top, #fff 5%, #fd2424 100% ); - filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff', endColorstr='#fd2424'); - background-color:#cc0000; -} -.menu_button1:active { - position:relative; - top:1px; - color:#fff; -} - -@media only screen and (max-device-width: 480px), only screen and (min-device-width: 560px) and (max-device-width: 1136px) and (-webkit-min-device-pixel-ratio: 2) { -.lang { -float:right; -height: 25px; -padding:4px; -margin-bottom:5px; -} -.menu_button1 { - -moz-box-shadow:inset 0px 1px 0px 0px #ffffff; - -webkit-box-shadow:inset 0px 1px 0px 0px #ffffff; - box-shadow:inset 0px 1px 0px 0px #ffffff; - background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #fd2424), color-stop(1, #fff) ); - background:-moz-linear-gradient( center top, #fd2424 5%, #fff 100% ); - filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fd2424', endColorstr='#fff'); - background-color:#cc0000; - -moz-border-radius:6px; - -webkit-border-radius:6px; - border-radius:6px; - border:1px solid #8a8a8a; - display:inline-block; - color:#ffffff; - font-family:Helvetica; - font-size:10px; - padding:2px 2px; - text-decoration:none; - text-shadow:1px 1px 0px #000000; -} -.menu_button1:visited { - - color:#fff; -} -.menu_button1:hover { - background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #fff), color-stop(1, #fd2424) ); - background:-moz-linear-gradient( center top, #fff 5%, #fd2424 100% ); - filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff', endColorstr='#fd2424'); - background-color:#cc0000; -} -.menu_button1:active { - position:relative; - top:1px; - color:#fff; -} -} -a.registerlink:link { - - color:#120cfe; - text-decoration:underline; - -} -a.registerlink:visited { - - color:#120cfe; - text-decoration:underline; - -} -a.registerlink:hover { - - color:#cc0000; - text-decoration:underline; - -} -a.registerlink:active { - - color:#120cfe; - text-decoration:underline; - -} -@media only screen -and (min-device-width : 768px) -and (max-device-width : 1024px) -and (orientation : portrait) -and (-webkit-min-device-pixel-ratio: 1){ - -.filler { - -height:50px; - -} - -} - -@media only screen -and (min-device-width : 768px) -and (max-device-width : 1024px) -and (orientation : landscape) -and (-webkit-min-device-pixel-ratio: 1) { - -.filler { - -height:200px; - -} - -} -@media only screen -and (min-device-width : 320px) -and (max-device-width : 667px) -and (orientation : portrait) { - -/* #slider {display:none;} */ - -.filler { - -height:60px; - -} -.brand { - -max-width:150px; -height: auto; -padding:5px; -} - -.brand img.left { -margin:0; -width: 150px; -height: auto; -} - -.home { - -margin-left:0; - -} -.mobile { - -display:block; -} -#rmmenu.span12 { - -float:none; -margin:0; -padding:0; -height:90px; -width:100%; -display:inline-block; -text-align:center; -background:none; - -} - -#mainmenu.container { - -margin-top:-80px; -} - -#contenu.container { - -margin-top:-50px; - -} - -footer .container h1 { - margin:0; - padding:0; - font-family: "HelveticaNeueHeavyCondensed", "HelveticaNeue-Heavy-Condensed", "Helvetica Neue Heavy Condensed", "HelveticaNeueHeavy", "HelveticaNeue-Heavy", "Helvetica Neue Heavy", "HelveticaNeue", "Helvetica Neue", 'TeXGyreHerosCnBold', "Arial Narrow", "Arial", sans-serif; font-stretch:condensed; - font-weight:1000; - font-stretch:condensed; - font-size:12pt; - color:#fff; - } - -.footerlogo { - display:block; - margin-top: 50px; -} - -.span33 { - float:none; - display:inline-block; - margin:0 auto; - margin-top:20px; - -} - -#search {display:none;} -#share {display:none;} - - -} - -@media only screen -and (min-device-width : 320px) -and (max-device-width : 667px) -and (orientation : landscape) { - -/* #slider {display:none;} */ - -.filler { - -height:60px; - -} - -.home { - -margin-left:0; - -} -.mobile { - -display:block; -} -#rmmenu.span12 { - -float:none; -margin:0; -padding:0; -height:90px; -width:100%; -display:inline-block; -text-align:center; -background:none; - -} - -#mainmenu.container { - -margin-top:-40px; -} - -#contenu.container { - -margin-top:-100px; - -} - -} - diff --git a/public_html/index.php b/public_html/index.php index f7d6835..c16fa32 100644 --- a/public_html/index.php +++ b/public_html/index.php @@ -1,24 +1,34 @@ = 3){ if (isset($spl[3])){ $page = $spl[0]; @@ -30,26 +40,23 @@ if (count($spl) >= 3){ } else { $lang= $spl[2]; } - $lang= $spl[3]; + #$lang= $spl[3]; } else { $page = $spl[0]; $prod= $spl[1]; $pgrp = null; $cat= $spl[1]; - $lang= $spl[2]; + #$lang= $spl[2]; } } else { $page="home";$prod=1;$lang="fr";$cat=""; } - - - - if (!$lang || (!in_array("$lang", array('de','fr','en')))){ $lang = $cfg["lang"]; } $cfg["lang"] = $lang; +include_once('shop/lib/lang/'.$lang.'.php'); // $lang = $lang; if (isset($_GET["subprod"])){ $subcat=$_GET["subprod"]; @@ -66,6 +73,7 @@ if (strlen($slide) <= 2){ // $slide = $_GET["prod"]; // $cat = $_GET['prod']; // } + $pagetype = 'normal'; $errormsg = ""; $keywords="";$description="";$title="";$title2=""; @@ -104,7 +112,7 @@ if (file_exists("shop/lib/lang/".$lang.".php")){ -" test=""> +" > @@ -149,6 +157,7 @@ if (file_exists("shop/lib/lang/".$lang.".php")){ "> "> +shop/vendor/tabulator/css/tabulator_site.css?v=""> shop/css/icons.css?v=""> shop/css/theme.css?v="> @@ -182,7 +191,7 @@ if (file_exists("shop/lib/lang/".$lang.".php")){
">menu["home"][$lang]; ?> diff --git a/public_html/index2.php b/public_html/index2.php new file mode 100644 index 0000000..0bf7162 --- /dev/null +++ b/public_html/index2.php @@ -0,0 +1,360 @@ += 3){ + if (isset($spl[3])){ + $page = $spl[0]; + $prod= $spl[1]; + $cat= $spl[1]; + $pgrp = null; + if (strlen($spl[2]) > 2){ + $pgrp = $spl[2]; + } else { + $lang= $spl[2]; + } + $lang= $spl[3]; + } else { + $page = $spl[0]; + $prod= $spl[1]; + $pgrp = null; + $cat= $spl[1]; + $lang= $spl[2]; + } +} else { + $page="home";$prod=1;$lang="fr";$cat=""; +} + +if (!$lang || (!in_array("$lang", array('de','fr','en')))){ + $lang = $cfg["lang"]; +} +$cfg["lang"] = $lang; +// $lang = $lang; +if (isset($_GET["subprod"])){ + $subcat=$_GET["subprod"]; +} else { + $subcat=''; +} +$slide=$prod; +if (strlen($slide) <= 2){ + $slide=$page; +} +//$cat=$prod; +// if (isset($_GET['prod'])){ +// $prod = $_GET['prod']; +// $slide = $_GET["prod"]; +// $cat = $_GET['prod']; +// } +$pagetype = 'normal'; +$errormsg = ""; +$keywords="";$description="";$title="";$title2=""; +$pages = array('home','about','contact','inscription','hotnews','project','projects','product','products','nouveautes','search','fr_sendcandidature','confirm_email','unsubscripe','delete','confirmdelete'); +// $datainfo = array( +// 'inscription' => array("title" => "Newsletter - qube-concretec.eu"), +// 'fr_sendcontact' => array("title" => "Contact - qube-concretec.eu"), +// 'fr_sendcontact2'=> array("title" => "Contact - qube-concretec.eu"), +// 'fr_sendcandidature'=> array("title" => "Contact - qube-concretec.eu"), +// 'fr_sendcommande'=> array("title" => "Contact - qube-concretec.eu"), +// 'en_sendcontact'=> array("title" => "Contact - qube-concretec.eu"), +// 'es_sendcontact'=> array("title" => "Contact - qube-concretec.eu"), +// ); +if (isset($datainfo[$page])){ + $title = $datainfo[$page]["title"]; +}else { + + $subcat = (isset($_GET["subprod"])?$_GET["subprod"]:null); + $abfrage = "SELECT name_".$cfg["lang"].",keywords_".$cfg["lang"].",desc_".$cfg["lang"]." FROM content WHERE (linkname = '$cat') OR (linkname = '$subcat')"; + $info = $db->query($abfrage); + //error_log($abfrage.":".print_r($info,true)); + if ($info){ + $title = (($info['name_'.$cfg["lang"]])?$info['name_'.$cfg["lang"]]:''); + $keywords = (($info['keywords_'.$cfg["lang"]])?$info['keywords_'.$cfg["lang"]]:''); + $description = (($info['desc_'.$cfg["lang"]])?$info['desc_'.$cfg["lang"]]:''); + } +} + +if (file_exists("shop/lib/lang/".$lang.".php")){ + require_once("shop/lib/lang/".$lang.".php"); +} + + +?> + + + + +" test=""> + + + +<?php echo $title; ?>Qube Group Solutions - Luxembourg + + + + + + + + + + + +manifest.json"> +img/favicon.ico"> +apple-touch-icon.png"> +img/apple-touch-icon-57x57.png"> +img/apple-touch-icon-72x72.png"> +img/apple-touch-icon-114x114.png"> +img/apple-touch-icon-144x144.png"> +img/apple-touch-icon-152x152.png"> +img/apple-touch-icon-precomposed.png"> +favicon.ico" type="image/x-icon"> +img/favicon-32x32.png"> +img/favicon-16x16.png"> +img/safari-pinned-tab.svg?v=rMJ0xoby8K" color="#245ba7"> + + + + + +home/home/matieres-premieres/fr/" /> +" /> + +"> +"> + + + +shop/vendor/tabulator/css/tabulator_site.css?v=""> +shop/css/icons.css?v=""> + + + + + + + + + + + + + +
+ +
+ +
+ + +
+
+
+
+ + +
+
+
+ + +
+ + $cat "); +if (file_exists('pages/'.$page.'.php')){ + + include('pages/'.$page.'.php'); +} else { + file_put_contents("log/page.log","Page not found pages/".$page."\n",FILE_APPEND); + // error_log("Page pages/$page.php does not exist! "); + include('pages/default.php'); +} +?> +
+
+ + + + + + diff --git a/public_html/js/askprice.js b/public_html/js/askprice.js index 418c49e..91dab23 100644 --- a/public_html/js/askprice.js +++ b/public_html/js/askprice.js @@ -4,6 +4,7 @@ let publicaskprice = { postData({"ac":"getOrderItems","id_user":mysite.iduser,"type":"askprice","lang":preferences.lang}).then(ogrps => { //console.log("ordergroups",ogrps.data); this.setTable(ogrps.data); + // document.getElementById("infomsg").innerHTML ='
'; //myapp.viewpanel(otype); }); }, @@ -71,7 +72,7 @@ let publicaskprice = { getItemCount: function(){ postData({"ac":"getOrderItemCount","id_user":mysite.iduser,"type":'askprice'}).then(data => { - //console.log("cnt",'askprice',data); + publicaskprice.itemscount = data.data.cnt; let conts = document.getElementsByName('askpriceitems'); if (conts){ for (var i in conts){ @@ -139,6 +140,10 @@ let publicaskprice = { return false; }, sendOrder: function(){ + if (publicaskprice.itemscount == "0"){ + document.getElementById("infomsg").innerHTML = '
Vous devez choisir des produits pour envoyer une demande!
'; + return false; + } let frm = document.getElementById("frm_askprice"); let flds = {"askprice":{"id_user":mysite.iduser}}; let breakSend=false; @@ -157,19 +162,24 @@ let publicaskprice = { flds[field.dataset.table][field.dataset.column] = field.value; } } + if (breakSend == true){ document.getElementById("infomsg").innerHTML = '
Il manque encore des données dans le formulaire!
'; - //return false; + return false; } else { document.getElementById("infomsg").innerHTML = ''; } - console.log("frmdata",flds); + //console.log("frmdata",flds); //console.log("barts",barts); + document.getElementById("infomsg").innerHTML ='
'; postData({"ac":"sendAskPrice","id_user":mysite.iduser,"data":flds['askprice'],"type":'askprice'}).then(data => { document.getElementById("infomsg").innerHTML = '
merci, La demande demande de prix à été envoyée!
'; this.loadTable(); - }); + //setTimeout("location.href='https://www.qube-concretec.eu/product/3/fr';",1000); + + }).catch(e => { document.getElementById("infomsg").innerHTML = '';}); + return false; }, articlecomment(obj){ diff --git a/public_html/js/shop.js b/public_html/js/shop.js index 90e63af..1dd7fa6 100644 --- a/public_html/js/shop.js +++ b/public_html/js/shop.js @@ -31,7 +31,8 @@ let shop = { getGroupArticles: function(art,cnt){ var iw = window.innerWidth; let mod = 4; - if (iw < 1690){mod=3;} else if (iw < 1260){ mod=2;}else if(iw < 841){mod=1;} + mod = parseInt(iw/320)-2; + //if (iw < 1690){mod=3;} else if (iw < 1260){ mod=2;}else if(iw < 841){mod=1;} let row = cnt%mod; let nid=cnt+mod-row; @@ -46,7 +47,7 @@ let shop = { if (!document.getElementById("artgroup_"+ nid)){ nid= mysecx.length; } - console.log("TEST nid:",nid); + //console.log("TEST nid:",nid); let lst = document.getElementById("artgroup_"+ nid); lst.innerHTML=''; postData({"ac":"getArticleGroup","article":art,"lang":preferences.lang}).then(agrps => { @@ -67,7 +68,7 @@ let shop = { let grparticle = grpdata['article']; let strartgrp_small = ''; let strartgrp = '
'+ - '
'+ + '
'+ '
image
'+ '

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

'+ '
' +((grpdata.description)?grpdata.description:' ') +'
'+ @@ -143,10 +144,6 @@ let shop = { strartgrp += '
'; strartgrp += '
'; - - //console.log("grp",grparticle); - //console.log("adata",articledata); - //console.log("articledata",articledata[grparticle]); let stf= shop.getCounterfield([grpdata.c01_label,grpdata.c02_label,grpdata.c03_label,grpdata.c04_label,grpdata.c05_label],((articledata[grparticle])?articledata[grparticle].unite_quantite:null)); if (articledata[grparticle]){ let template = document.getElementById('articlecart').innerHTML; @@ -191,4 +188,13 @@ let shop = { obj.value = number.clean(obj.value); return false; }, + openpdf: function(pdfname){ + var windowReference = window.open(); + if (/^http/.test(pdfname)){ + windowReference.location = pdfname; + } else if (/\.pdf/.test(pdfname)){ + windowReference.location = 'https://qube-concretec.eu/shop/media/'+ pdfname; + } + + }, } \ No newline at end of file diff --git a/public_html/js/site.js b/public_html/js/site.js index f93f272..c3dcf3e 100644 --- a/public_html/js/site.js +++ b/public_html/js/site.js @@ -134,11 +134,16 @@ document.addEventListener("DOMContentLoaded", function() { if (document.getElementById("lst_order_askprice")) { console.log("loading askprice Basket!"); publicaskprice.loadTable(); + } - let slcnt = document.getElementsByClassName("topslides"); - if (slcnt && slcnt.length > 1){ - mysite.slides=slcnt.length; - console.log("no of slides",mysite.slides); - setTimeout("mysite.rotateslides('topslides',1);",mysite.slidetranstime); + // $('.carousel').carousel(); + // let slcnt = document.getElementsByClassName("topslides"); + // if (slcnt && slcnt.length > 1){ + // mysite.slides=slcnt.length; + // console.log("no of slides",mysite.slides); + // setTimeout("mysite.rotateslides('topslides',1);",mysite.slidetranstime); + // } + if (typeof loadp !== 'undefined'){ + initpage(); } }); \ No newline at end of file diff --git a/public_html/log/20211027_curl.log b/public_html/log/20211027_curl.log new file mode 100644 index 0000000..0d0001e --- /dev/null +++ b/public_html/log/20211027_curl.log @@ -0,0 +1,537 @@ +send Array +( + [document] => DPS + [client] => 10000 + [adresse_client] => test +1, rue test +t-0000 Test + [adresse_livraison] => Test TEst\n01234567\ntest@test.com + [commentaire] => sdasd +) + +send newdata: +Array +( + [document] => DPS + [client] => 10000 + [adresse_client] => test +1, rue test +t-0000 Test + [adresse_livraison] => Test TEst\n01234567\ntest@test.com + [commentaire] => sdasd + [firme] => 1 +) + +--- +{"document":"DPS","client":"10000","adresse_client":"test\n1, rue test\nt-0000 Test","adresse_livraison":"Test TEst\\n01234567\\ntest@test.com","commentaire":"sdasd","firme":"1"}get: +403 Forbidden + +

403 Forbidden

+
nginx/1.10.3 (Ubuntu)
+ + + +send Array +( + [document] => DPS + [no_document] => + [article] => + [commentaire_pos] => +) + +send newdata: +Array +( + [document] => DPS + [no_document] => + [article] => + [commentaire_pos] => + [firme] => 1 +) + +--- +{"document":"DPS","no_document":null,"article":null,"commentaire_pos":null,"firme":"1"}get: +403 Forbidden + +

403 Forbidden

+
nginx/1.10.3 (Ubuntu)
+ + + +send Array +( + [document] => DPS + [no_document] => + [article] => + [commentaire_pos] => +) + +send newdata: +Array +( + [document] => DPS + [no_document] => + [article] => + [commentaire_pos] => + [firme] => 1 +) + +--- +{"document":"DPS","no_document":null,"article":null,"commentaire_pos":null,"firme":"1"}get: +403 Forbidden + +

403 Forbidden

+
nginx/1.10.3 (Ubuntu)
+ + + +send Array +( + [document] => DPS + [no_document] => + [article] => + [commentaire_pos] => +) + +send newdata: +Array +( + [document] => DPS + [no_document] => + [article] => + [commentaire_pos] => + [firme] => 1 +) + +--- +{"document":"DPS","no_document":null,"article":null,"commentaire_pos":null,"firme":"1"}get: +403 Forbidden + +

403 Forbidden

+
nginx/1.10.3 (Ubuntu)
+ + + +send Array +( + [document] => DPS + [no_document] => + [article] => + [commentaire_pos] => +) + +send newdata: +Array +( + [document] => DPS + [no_document] => + [article] => + [commentaire_pos] => + [firme] => 1 +) + +--- +{"document":"DPS","no_document":null,"article":null,"commentaire_pos":null,"firme":"1"}get: +403 Forbidden + +

403 Forbidden

+
nginx/1.10.3 (Ubuntu)
+ + + +send Array +( + [document] => DPS + [no_document] => + [article] => + [commentaire_pos] => +) + +send newdata: +Array +( + [document] => DPS + [no_document] => + [article] => + [commentaire_pos] => + [firme] => 1 +) + +--- +{"document":"DPS","no_document":null,"article":null,"commentaire_pos":null,"firme":"1"}get: +403 Forbidden + +

403 Forbidden

+
nginx/1.10.3 (Ubuntu)
+ + + +send Array +( + [document] => DPS + [client] => 10000 + [adresse_client] => TEst +1, rue test +x-0000 test + [adresse_livraison] => Test\n0123456\ntest@test.com + [commentaire] => wewe +) + +send newdata: +Array +( + [document] => DPS + [client] => 10000 + [adresse_client] => TEst +1, rue test +x-0000 test + [adresse_livraison] => Test\n0123456\ntest@test.com + [commentaire] => wewe + [firme] => 1 +) + +--- +{"document":"DPS","client":"10000","adresse_client":"TEst\n1, rue test\nx-0000 test","adresse_livraison":"Test\\n0123456\\ntest@test.com","commentaire":"wewe","firme":"1"}get: +403 Forbidden + +

403 Forbidden

+
nginx/1.10.3 (Ubuntu)
+ + + +send Array +( + [document] => DPS + [no_document] => + [article] => + [commentaire_pos] => +) + +send newdata: +Array +( + [document] => DPS + [no_document] => + [article] => + [commentaire_pos] => + [firme] => 1 +) + +--- +{"document":"DPS","no_document":null,"article":null,"commentaire_pos":null,"firme":"1"}get: +403 Forbidden + +

403 Forbidden

+
nginx/1.10.3 (Ubuntu)
+ + + +send Array +( + [document] => DPS + [no_document] => + [article] => + [commentaire_pos] => +) + +send newdata: +Array +( + [document] => DPS + [no_document] => + [article] => + [commentaire_pos] => + [firme] => 1 +) + +--- +{"document":"DPS","no_document":null,"article":null,"commentaire_pos":null,"firme":"1"}get: +403 Forbidden + +

403 Forbidden

+
nginx/1.10.3 (Ubuntu)
+ + + +send Array +( + [document] => DPS + [no_document] => + [article] => + [commentaire_pos] => +) + +send newdata: +Array +( + [document] => DPS + [no_document] => + [article] => + [commentaire_pos] => + [firme] => 1 +) + +--- +{"document":"DPS","no_document":null,"article":null,"commentaire_pos":null,"firme":"1"}get: +403 Forbidden + +

403 Forbidden

+
nginx/1.10.3 (Ubuntu)
+ + + +send Array +( + [document] => DPS + [no_document] => + [article] => + [commentaire_pos] => +) + +send newdata: +Array +( + [document] => DPS + [no_document] => + [article] => + [commentaire_pos] => + [firme] => 1 +) + +--- +{"document":"DPS","no_document":null,"article":null,"commentaire_pos":null,"firme":"1"}get: +403 Forbidden + +

403 Forbidden

+
nginx/1.10.3 (Ubuntu)
+ + + +send Array +( + [document] => DPS + [client] => 10000 + [adresse_client] => TEst +8, rue test +t-0000 TEst + [adresse_livraison] => test\n0123446\ntest@tets.com + [commentaire] => Dgfsd +) + +send newdata: +Array +( + [document] => DPS + [client] => 10000 + [adresse_client] => TEst +8, rue test +t-0000 TEst + [adresse_livraison] => test\n0123446\ntest@tets.com + [commentaire] => Dgfsd + [firme] => 1 +) + +--- +{"document":"DPS","client":"10000","adresse_client":"TEst\n8, rue test\nt-0000 TEst","adresse_livraison":"test\\n0123446\\ntest@tets.com","commentaire":"Dgfsd","firme":"1"}get: +403 Forbidden + +

403 Forbidden

+
nginx/1.10.3 (Ubuntu)
+ + + +send Array +( + [document] => DPS + [no_document] => + [article] => + [commentaire_pos] => +) + +send newdata: +Array +( + [document] => DPS + [no_document] => + [article] => + [commentaire_pos] => + [firme] => 1 +) + +--- +{"document":"DPS","no_document":null,"article":null,"commentaire_pos":null,"firme":"1"}get: +403 Forbidden + +

403 Forbidden

+
nginx/1.10.3 (Ubuntu)
+ + + +send Array +( + [document] => DPS + [no_document] => + [article] => + [commentaire_pos] => +) + +send newdata: +Array +( + [document] => DPS + [no_document] => + [article] => + [commentaire_pos] => + [firme] => 1 +) + +--- +{"document":"DPS","no_document":null,"article":null,"commentaire_pos":null,"firme":"1"}get: +403 Forbidden + +

403 Forbidden

+
nginx/1.10.3 (Ubuntu)
+ + + +send Array +( + [document] => DPS + [no_document] => + [article] => + [commentaire_pos] => +) + +send newdata: +Array +( + [document] => DPS + [no_document] => + [article] => + [commentaire_pos] => + [firme] => 1 +) + +--- +{"document":"DPS","no_document":null,"article":null,"commentaire_pos":null,"firme":"1"}get: +403 Forbidden + +

403 Forbidden

+
nginx/1.10.3 (Ubuntu)
+ + + +send Array +( + [document] => DPS + [no_document] => + [article] => + [commentaire_pos] => +) + +send newdata: +Array +( + [document] => DPS + [no_document] => + [article] => + [commentaire_pos] => + [firme] => 1 +) + +--- +{"document":"DPS","no_document":null,"article":null,"commentaire_pos":null,"firme":"1"}get: +403 Forbidden + +

403 Forbidden

+
nginx/1.10.3 (Ubuntu)
+ + + +send Array +( + [document] => DPS + [client] => 10000 + [adresse_client] => Test +0,rue x +t-000 test + [adresse_livraison] => uwrw iwzhi\n01246\nt@t.com + [commentaire] => dfg +) + +send newdata: +Array +( + [document] => DPS + [client] => 10000 + [adresse_client] => Test +0,rue x +t-000 test + [adresse_livraison] => uwrw iwzhi\n01246\nt@t.com + [commentaire] => dfg + [firme] => 1 +) + +--- +{"document":"DPS","client":"10000","adresse_client":"Test\n0,rue x\nt-000 test","adresse_livraison":"uwrw iwzhi\\n01246\\nt@t.com","commentaire":"dfg","firme":"1"}get: +403 Forbidden + +

403 Forbidden

+
nginx/1.10.3 (Ubuntu)
+ + + +send Array +( + [document] => DPS + [no_document] => + [article] => + [commentaire_pos] => +) + +send newdata: +Array +( + [document] => DPS + [no_document] => + [article] => + [commentaire_pos] => + [firme] => 1 +) + +--- +{"document":"DPS","no_document":null,"article":null,"commentaire_pos":null,"firme":"1"}get: +403 Forbidden + +

403 Forbidden

+
nginx/1.10.3 (Ubuntu)
+ + + +send Array +( + [document] => DPS + [no_document] => + [article] => + [commentaire_pos] => +) + +send newdata: +Array +( + [document] => DPS + [no_document] => + [article] => + [commentaire_pos] => + [firme] => 1 +) + +--- +{"document":"DPS","no_document":null,"article":null,"commentaire_pos":null,"firme":"1"}get: +403 Forbidden + +

403 Forbidden

+
nginx/1.10.3 (Ubuntu)
+ + + diff --git a/public_html/log/20211101_curl.log b/public_html/log/20211101_curl.log new file mode 100644 index 0000000..196add4 --- /dev/null +++ b/public_html/log/20211101_curl.log @@ -0,0 +1,87 @@ +send Array +( + [document] => DPS + [client] => 10000 + [adresse_client] => + +- + [adresse_livraison] => \n\n + [commentaire] => +) + +send newdata: +Array +( + [document] => DPS + [client] => 10000 + [adresse_client] => + +- + [adresse_livraison] => \n\n + [commentaire] => + [firme] => 1 +) + +--- +{"document":"DPS","client":"10000","adresse_client":"\n\n- ","adresse_livraison":"\\n\\n","commentaire":"","firme":"1"}get: +403 Forbidden + +

403 Forbidden

+
nginx/1.10.3 (Ubuntu)
+ + + +send Array +( + [document] => DPS + [no_document] => + [article] => SPF-C-16060-1200 + [commentaire_pos] => +) + +send newdata: +Array +( + [document] => DPS + [no_document] => + [article] => SPF-C-16060-1200 + [commentaire_pos] => + [firme] => 1 +) + +--- +{"document":"DPS","no_document":null,"article":"SPF-C-16060-1200","commentaire_pos":null,"firme":"1"}get: +403 Forbidden + +

403 Forbidden

+
nginx/1.10.3 (Ubuntu)
+ + + +send Array +( + [document] => DPS + [no_document] => + [article] => SPF-C-17040-1125 + [commentaire_pos] => +) + +send newdata: +Array +( + [document] => DPS + [no_document] => + [article] => SPF-C-17040-1125 + [commentaire_pos] => + [firme] => 1 +) + +--- +{"document":"DPS","no_document":null,"article":"SPF-C-17040-1125","commentaire_pos":null,"firme":"1"}get: +403 Forbidden + +

403 Forbidden

+
nginx/1.10.3 (Ubuntu)
+ + + diff --git a/public_html/log/apireturn.log b/public_html/log/apireturn.log new file mode 100644 index 0000000..2e0170b --- /dev/null +++ b/public_html/log/apireturn.log @@ -0,0 +1,231 @@ +i:0Array +( + [id] => bf23a8ab-4f26-4b98-95f5-60d39c7f092c + [article_group] => &SDR-M-DS + [titre_fr] => Joint mousse étanche | DS + [article] => SDR-M-DS203602 + [comment] => +) + +in:-:--:--:- +ret: +i:1Array +( + [id] => 2e957313-0f2f-46dd-a944-d3569fea14fe + [article_group] => &SDR-M-DS + [titre_fr] => Joint mousse étanche | DS + [article] => SDR-M-DS204005 + [comment] => +) + +in:-:--:--:- +ret: +i:2Array +( + [id] => 24d6f444-0931-4194-8421-8c9828962b7e + [article_group] => &SDR-M-DS + [titre_fr] => Joint mousse étanche | DS + [article] => SDR-M-DS204006 + [comment] => +) + +in:-:--:--:- +ret: +i:3Array +( + [id] => 933d2026-377c-4ce7-bd5d-43a6cb56dc54 + [article_group] => &SDR-M-DS + [titre_fr] => Joint mousse étanche | DS + [article] => SDR-M-DS204204 + [comment] => +) + +in:-:--:--:- +ret: +i:4Array +( + [id] => f9d92657-cdcd-4e3f-9ebf-bbf320a30fce + [article_group] => &SDR-M-DS + [titre_fr] => Joint mousse étanche | DS + [article] => SDR-M-DS253902 + [comment] => +) + +in:-:--:--:- +ret: +i:0Array +( + [id] => bbae69f7-e7c1-4f10-a1f9-30d08934ebd2 + [article_group] => &AWR-KG2/RP-RD + [titre_fr] => Passage étange | KG2000 + [article] => AWR-KG2/RP125-0500RD + [comment] => +) + +ndoc: +in:-:--:--:- +ret: +i:1Array +( + [id] => 2656748d-8a29-49b1-b422-c3071d72f7ce + [article_group] => &AWR-KG2/RP-RD + [titre_fr] => Passage étange | KG2000 + [article] => AWR-KG2/RP200-0500RD + [comment] => +) + +ndoc: +in:-:--:--:- +ret: +i:2Array +( + [id] => 5a456f19-dc41-42a0-958d-bb6d6243fd4c + [article_group] => &INJ-BOX + [titre_fr] => Boitier réservation | Box + [article] => INJ-BOX + [comment] => fh +) + +ndoc: +in:-:--:--:- +ret: +i:3Array +( + [id] => c02ba958-64b8-4f92-8fee-b0ff5ca7260c + [article_group] => &INJ-NAPA + [titre_fr] => Attache-araignée | Napa + [article] => INJ-NAPA-2 + [comment] => sd +) + +ndoc: +in:-:--:--:- +ret: +i:0 +ndoc: +i:0Array +( + [id] => bb71b0da-b057-4642-b50b-c6bbd42e5830 + [article_group] => &ARV-CTC + [titre_fr] => Raccord tuyau en grès | CTC - 2A + [article] => ARV-CTC-175190-11006 + [comment] => dsf +) + +ndoc: +in:-:--:--:- +ret: +i:1 +ndoc: +i:1Array +( + [id] => b15e6eb8-1a75-4fe0-a7d1-97cb6286eef6 + [article_group] => &ARV-CTC + [titre_fr] => Raccord tuyau en grès | CTC - 2A + [article] => ARV-CTC-290305-16506 + [comment] => sdf +) + +ndoc: +in:-:--:--:- +ret: +i:2 +ndoc: +i:2Array +( + [id] => be43e428-1d7e-4642-860c-f48f554609fb + [article_group] => &ARV-CTC + [titre_fr] => Raccord tuyau en grès | CTC - 2A + [article] => ARV-CTC-310325-16506 + [comment] => dsf +) + +ndoc: +in:-:--:--:- +ret: +i:3 +ndoc: +i:3Array +( + [id] => 0c1b4945-2c2a-47d2-8e78-9ae656b34e52 + [article_group] => &WDF-SR1 + [titre_fr] => Flasque étanche | SanRing + [article] => WDF-SR1/150-AL + [comment] => df +) + +ndoc: +in:-:--:--:- +ret: +i:0 +ndoc: +i:0Array +( + [id] => 1313180e-920d-4724-ac57-8bbcfca8fdde + [article_group] => &MUB-1966 + [titre_fr] => Passerelle | Bois + [article] => MUB-19660 + [comment] => df +) + +ndoc: +in:-:--:--:- +ret: +i:1 +ndoc: +i:1Array +( + [id] => be5fa899-9162-467c-8153-74fadc3a1316 + [article_group] => &MUB-1966 + [titre_fr] => Passerelle | Bois + [article] => MUB-19800 + [comment] => ss +) + +ndoc: +in:-:--:--:- +ret: +Array +( + [0] => Array + ( + [id] => c7d5b2fd-ccf1-491f-adbc-5001e36d0f76 + [article_group] => &SPF-C + [titre_fr] => Elément de coffrage | Car + [article] => SPF-C-16060-1200 + [comment] => + ) + + [1] => Array + ( + [id] => 018ab9b1-7ccb-4744-b885-ffb550667ec3 + [article_group] => &SPF-C + [titre_fr] => Elément de coffrage | Car + [article] => SPF-C-17040-1125 + [comment] => + ) + +) + +i:0->->ndoc: +i:0->Array +( + [id] => c7d5b2fd-ccf1-491f-adbc-5001e36d0f76 + [article_group] => &SPF-C + [titre_fr] => Elément de coffrage | Car + [article] => SPF-C-16060-1200 + [comment] => +) + + +i:1->->ndoc: +i:1->Array +( + [id] => 018ab9b1-7ccb-4744-b885-ffb550667ec3 + [article_group] => &SPF-C + [titre_fr] => Elément de coffrage | Car + [article] => SPF-C-17040-1125 + [comment] => +) + + diff --git a/public_html/log/mails/20211101141651_team.qube@qube-group.eu.eml b/public_html/log/mails/20211101141651_team.qube@qube-group.eu.eml new file mode 100644 index 0000000..63062a3 --- /dev/null +++ b/public_html/log/mails/20211101141651_team.qube@qube-group.eu.eml @@ -0,0 +1,41 @@ +Date: Mon, 1 Nov 2021 14:16:51 +0100 +To: team.qube@qube-group.eu +From: newsletter@qube-concretec.eu +Subject: Demande de Prix via Site - Document No +Message-ID: +X-Mailer: PHPMailer 6.1.8 (https://github.com/PHPMailer/PHPMailer) +MIME-Version: 1.0 +Content-Type: multipart/alternative; + boundary="b1_aAsv5aljceIna3dk0w0ytxsh8oX01iQOCAMI9hhHUbI" +Content-Transfer-Encoding: 8bit + +This is a multi-part message in MIME format. + +--b1_aAsv5aljceIna3dk0w0ytxsh8oX01iQOCAMI9hhHUbI +Content-Type: text/plain; charset=us-ascii + +Nouvelle Demande de Prix via Site! + + Document no: + -- + + +- + -- + \n\n + -- + Commentaire: + -- + Articles: + SPF-C-16060-1200 +SPF-C-17040-1125 + + + +--b1_aAsv5aljceIna3dk0w0ytxsh8oX01iQOCAMI9hhHUbI +Content-Type: text/html; charset=us-ascii + +Nouvelle Demande de Prix via Site!

Document no:
--


-
--
\n\n
--
Commentaire:
--
Articles:
SPF-C-16060-1200
SPF-C-17040-1125

+ + +--b1_aAsv5aljceIna3dk0w0ytxsh8oX01iQOCAMI9hhHUbI-- diff --git a/public_html/log/page.log b/public_html/log/page.log new file mode 100644 index 0000000..51d4103 --- /dev/null +++ b/public_html/log/page.log @@ -0,0 +1,1183 @@ +REQ/qube/ +SPL Array +( + [0] => +) + +home +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +askprice +product +product +product +product +product +product +product +product +product +home +home +product +product +product +product +product + +Page not found pages/ +data +Page not found pages/data +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +about +product +nouveautes +projects +home +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +home +about +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +home +about +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +home +home +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +home +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +projects +home +home +home +home + +Page not found pages/ + +Page not found pages/ + +Page not found pages/ + +Page not found pages/ + +Page not found pages/ + +Page not found pages/ + +Page not found pages/ + +Page not found pages/ + +Page not found pages/ + +Page not found pages/ + +Page not found pages/ + +Page not found pages/ + +Page not found pages/ + +Page not found pages/ + +Page not found pages/ + +Page not found pages/ + +Page not found pages/ + +Page not found pages/ + +Page not found pages/ + +Page not found pages/ + +Page not found pages/ + +Page not found pages/ + +Page not found pages/ + +Page not found pages/ +about +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +about +product +nouveautes +nouveautes +projects +contact +about +home +product +nouveautes +projects +contact +nouveautes +product +about +home +about +product +nouveautes +projects +contact +projects +project +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +home +askprice +product +product +product +product +product +product +product +product +product +askprice +askprice +product +product +product +product +product +product +askprice +askprice +product +product +product +product +projects +nouveautes +askprice +home +product +askprice +askprice +askprice +askprice +askprice +askprice +askprice +askprice +askprice +askprice +askprice +askprice +askprice +askprice +askprice +askprice +askprice +askprice +product +nouveautes +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +home +nouveautes +product +askprice +askprice +askprice +askprice +askprice +askprice +askprice +askprice +product +product +product +askprice +home +vendor +Page not found pages/vendor +home +vendor +Page not found pages/vendor +home +vendor +Page not found pages/vendor +about +vendor +Page not found pages/vendor +product +vendor +Page not found pages/vendor +nouveautes +vendor +Page not found pages/vendor +projects +vendor +Page not found pages/vendor +contact +vendor +Page not found pages/vendor +contact +vendor +Page not found pages/vendor +contact +vendor +Page not found pages/vendor +contact +vendor +Page not found pages/vendor +contact +vendor +Page not found pages/vendor +contact +vendor +Page not found pages/vendor +contact +vendor +Page not found pages/vendor +contact +contact +contact +contact +contact +contact +contact +contact +contact +contact +contact +contact +contact +contact +contact +contact +contact +contact +contact +contact +contact +contact +contact +home +home +home +home +home +home +home +home +home +home +home +home +home +home +home +home +home +home +home +home +home +home +home +home +home +home +home +home +home +home +home +home +home +home +home +home +home +home +home +home +home +home +home +home +product +projects +product +about +home +product +home +askprice +home +home +home +home +home +home +home +home +home +home +home +about +home +home +about +home +home +home +home +home +home +home +home +home +home +home +home +home +home +home +home +home +projects +home +projects +about +home +about +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +home + +Page not found pages/ +data +Page not found pages/data + +Page not found pages/ +data +Page not found pages/data +about +about +about +about +about +about +about +about +about +about +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +product +home +home +home +product +product +product +product +product +product +product +product +product +product +product diff --git a/public_html/log/sql.log b/public_html/log/sql.log index 4472b32..5b1440e 100644 --- a/public_html/log/sql.log +++ b/public_html/log/sql.log @@ -8494,3 +8494,7773 @@ QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_ar from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CON-LC-DT' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A102' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='img' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CON-LC-DT' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A102' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='img' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CON-LC-SH' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A102' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='img' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CON-LC-D' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A102' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='img' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CON-LC-D' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A102' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='img' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CON-LC-SH' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A102' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='img' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CON-LC-DT' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A102' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='img' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CON-LC-SH' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A102' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='img' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CON-LC-D' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A102' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='img' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,case when qube_name is null then titre_fr else qube_name end as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='A2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A2' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,case when qube_name is null then titre_fr else qube_name end as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,case when qube_name is null then titre_fr else qube_name end as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,case when qube_name is null then titre_fr else qube_name end as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.gp_art='C900' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,case when qube_name is null then titre_fr else qube_name end as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.gp_art='C904' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.gp_art='C904' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.gp_art='C904' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.gp_art='C904' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.gp_art='C904' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&TDR-B2E' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C6' and gp_art='C600' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&TDR-B2T' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C6' and gp_art='C600' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&TDR-B2T' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C6' and gp_art='C600' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&TDR-B2T' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C6' and gp_art='C600' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&TDR-B2X' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C6' and gp_art='C600' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&TDR-B2X' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C6' and gp_art='C600' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'askprice'; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink , oa.comment + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'S1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='S1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='S1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C605' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&FBL-SB' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C6' and gp_art='C605' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C605' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C607' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C602' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C600' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'product') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERY: SELECT * FROM content WHERE (linkname = 'product') OR (linkname = '') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'gallerys') OR (linkname = '') +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: SELECT * FROM slider WHERE page = 'gallerys'; +QUERY: SELECT * FROM content WHERE (linkname = 'gallerys') OR (linkname = '') OR (linkname = 'data') +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&FGP-DO/B' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C9' and gp_art='C900' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&FGP-TP1' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C9' and gp_art='C900' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&FGP-TP2' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C9' and gp_art='C900' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&FGP-CD' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C9' and gp_art='C900' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'about'; +QUERYARRAY: SELECT * FROM main_menu WHERE parentid = '2'; +QUERYARRAY: SELECT * FROM content WHERE linkname = 'about' +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'nouveautes'; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'projects'; +QUERYARRAY: SELECT * FROM projects ORDER BY date +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.gp_art='C500' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.gp_art='C514' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.gp_art='C519' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.gp_art='C906' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.gp_art='C904' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.gp_art='C901' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.gp_art='C901' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.gp_art='C901' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.gp_art='C900' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.gp_art='C906' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.gp_art='C906' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.gp_art='C907' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.gp_art='C900' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&FGP-CD' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C9' and gp_art='C900' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.gp_art='C900' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&FGP-TP2' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C9' and gp_art='C900' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.gp_art='C900' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&FGP-TP1' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C9' and gp_art='C900' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.gp_art='C900' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&FGP-DO/B' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C9' and gp_art='C900' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.gp_art='C900' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&FGP-CD' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C9' and gp_art='C900' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.gp_art='C900' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'S1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='S1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='S1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='A1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='A1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'S1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='S1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='S1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='A1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='A1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='A1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='A104' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='A1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='A102' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='A1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='A102' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='A1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='A102' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='A1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='A102' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='A1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='A102' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='A1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='A102' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='A1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='A102' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='A1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='A104' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CNT-S...I2.02' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A104' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='A1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='A104' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CNT-S...I2.01' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A104' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='A1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='A104' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CNT-S...I2.03' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A104' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='A1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='A104' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CNT-S...I2.04' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A104' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='A1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='A104' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CNT-S...I2.03' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A104' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='A1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='A104' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CNT-S...I2.01' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A104' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='A1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='A104' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='A1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='A102' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='A1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='A104' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='A1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='A102' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='A1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='A104' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&ABS-KI4122' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C5' and gp_art='C500' and isactive=1) group by id,article_group,article order by article_group,article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&ABS-KI4122' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C5' and gp_art='C500' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&ABS-KI4930' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C5' and gp_art='C500' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&ABS-KI4930' and isactive=1 order by titre,article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C5' and gp_art='C500' and isactive=1) group by id,article_group,article order by article_group,article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&ABS-KI4930' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C5' and gp_art='C500' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&ABS-TU' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C5' and gp_art='C500' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&SFS-PGS/G2' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C5' and gp_art='C527' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&SPV-FA' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C5' and gp_art='C514' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&SPV-FA' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C5' and gp_art='C514' and isactive=1) group by id,article_group,article order by article_group,article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&SPV-FA' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C5' and gp_art='C514' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&MAA-AG' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C5' and gp_art='C500' and isactive=1) group by id,article_group,article order by article_group,article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&MAA-AG' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C5' and gp_art='C500' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&ABS-WI' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C5' and gp_art='C500' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&ABS-WI' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C5' and gp_art='C500' and isactive=1) group by id,article_group,article order by article_group,article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&ABS-WI' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C5' and gp_art='C500' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&ABS-KI2815' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C5' and gp_art='C500' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&ABS-KI3817' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C5' and gp_art='C500' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&ABS-KI4025' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C5' and gp_art='C500' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&ABS-KI4122' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C5' and gp_art='C500' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&ABS-KI4930' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C5' and gp_art='C500' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&ABS-KI5433' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C5' and gp_art='C500' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&ABS-KI7249' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C5' and gp_art='C500' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&ABS-TU' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C5' and gp_art='C500' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&LSA-V' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C5' and gp_art='C505' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&AMA-LSG' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C5' and gp_art='C513' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&AMA-LSG' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C5' and gp_art='C513' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.gp_art='C519' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.gp_art='C521' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.gp_art='C523' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&VBB-VS/I' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C5' and gp_art='C523' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.gp_art='C523' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.gp_art='C526' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&APL-P' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C5' and gp_art='C526' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.gp_art='C526' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.gp_art='C526' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&APL-P' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C5' and gp_art='C526' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.gp_art='C526' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.gp_art='C523' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.gp_art='C514' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&SPV-DA' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C5' and gp_art='C514' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.gp_art='C514' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&SPV-FA' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C5' and gp_art='C514' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.gp_art='C514' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.gp_art='C526' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.gp_art='C525' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&FIX-MW-G' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C5' and gp_art='C525' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.gp_art='C525' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.gp_art='C505' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.gp_art='C505' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&LSA-DVW' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C5' and gp_art='C505' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.gp_art='C505' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.gp_art='C523' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.gp_art='C514' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.gp_art='C513' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.gp_art='C519' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.gp_art='C514' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.gp_art='C513' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&AMA-LSV' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C5' and gp_art='C513' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.gp_art='C513' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&AMA-LOE' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C5' and gp_art='C513' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.gp_art='C513' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&AMA-LSV' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C5' and gp_art='C513' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.gp_art='C513' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&LIF-B/H..P' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C4' and gp_art='C401' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&LIF-A/LA-I' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C4' and gp_art='C402' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&LIF-A/LI' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C4' and gp_art='C402' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&KAS-WK/L' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C4' and gp_art='C407' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&LIF-P/BG' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C4' and gp_art='C408' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&LIF-B/WI' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C4' and gp_art='C401' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.gp_art='C408' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.gp_art='C409' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.gp_art='C401' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.gp_art='C403' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.gp_art='C407' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.gp_art='C408' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.gp_art='C409' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.gp_art='C408' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.gp_art='C407' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.gp_art='C409' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&LIF-E/AS' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C4' and gp_art='C409' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.gp_art='C409' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&LIF-E/SI' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C4' and gp_art='C409' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.gp_art='C409' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&LIF-E/SP-RD' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C4' and gp_art='C409' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.gp_art='C409' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&LIF-E/SP-M' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C4' and gp_art='C409' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.gp_art='C409' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'about'; +QUERYARRAY: SELECT * FROM main_menu WHERE parentid = '2'; +QUERYARRAY: SELECT * FROM content WHERE linkname = 'about' +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.gp_art='C902' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.gp_art='C901' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.gp_art='C905' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.gp_art='C906' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.gp_art='C907' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.gp_art='C901' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.gp_art='C904' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.gp_art='C901' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.gp_art='C902' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.gp_art='C906' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.gp_art='C901' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.gp_art='C900' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'D1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='D1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='D1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'D2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='D2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='D2' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'D1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='D1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='D1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='A4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A4' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='A4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A4' and ag.gp_art='A402' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='A2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A2' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C604' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C612' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'about'; +QUERYARRAY: SELECT * FROM main_menu WHERE parentid = '2'; +QUERYARRAY: SELECT * FROM content WHERE linkname = 'about' +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C612' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C602' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C607' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C614' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C617' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C617' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C617' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C603' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C608' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C603' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C612' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C616' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C604' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C601' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.gp_art='C108' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.gp_art='C110' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.gp_art='C107' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.gp_art='C109' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.gp_art='C111' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&QKD-M' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C111' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.gp_art='C111' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.gp_art='C114' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&BKS-ALC/RE' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C114' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.gp_art='C114' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&BKS-ALC/ST' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C114' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.gp_art='C114' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&BKS-ALC/RE' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C114' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.gp_art='C114' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='5df6d35d-5b18-49dd-a709-d92a7901a16c' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='5df6d35d-5b18-49dd-a709-d92a7901a16c' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CON-LC-DT' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A102' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='img' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CON-LC-SH' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A102' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='img' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CON-LC-D' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A102' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='img' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CON-LC-M' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A102' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='img' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='5df6d35d-5b18-49dd-a709-d92a7901a16c' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CON-LC-G' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A102' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='img' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CNT-S...I2.02' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A104' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='img' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CON-LC-DT' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A102' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='img' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CON-LC-SH' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A102' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='img' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CON-LC-SH' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A102' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='img' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CON-LC-D' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A102' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='img' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CON-LC-M' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A102' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='img' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CNT-S...I2.01' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A104' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='img' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CNT-S...I2.02' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A104' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='img' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CNT-S...I2.03' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A104' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='img' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CNT-S...I2.04' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A104' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='img' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CNT-S...I2.04A' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A104' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='img' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CNT-S...I2.05' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A104' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='img' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CNT-S...I2.05A' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A104' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='img' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CNT-S...I2.06' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A104' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='img' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CNT-S...I2.07' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A104' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='img' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CNT-S...I2.08' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A104' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='img' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CNT-S...I2.10' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A104' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='img' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CON-ABRI' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A105' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='img' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CON-TR' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A105' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='img' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CON-TR' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A105' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='img' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CON-TR' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A105' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='img' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CON-ABRI' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A105' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='img' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CNT-S...I2.10' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A104' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='img' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CNT-S...I2.05' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A104' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='img' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CNT-S...I2.01' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A104' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='img' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CON-LC-G' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A102' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='img' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CON-LC-DT' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A102' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='img' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CON-LC-SH' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A102' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='img' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CON-LC-D' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A102' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='img' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CON-LC-M' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A102' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='img' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CNT-S...I2.01' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A104' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='img' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.gp_art='C114' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&BKS-ALC/AP' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C114' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.gp_art='C114' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='5df6d35d-5b18-49dd-a709-d92a7901a16c' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C216' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='5df6d35d-5b18-49dd-a709-d92a7901a16c' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&RZB-DV' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C216' and isactive=1) group by id,article_group,article order by article_group,article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&RZB-DV' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C216' and isactive=1) group by id,article_group,article order by article_group,article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&RZB-DV-C' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C216' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C224' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='5df6d35d-5b18-49dd-a709-d92a7901a16c' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&VOI-P/M' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C224' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C224' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&VOI-Z/R' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C224' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C224' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&VOI-Z/T' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C224' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C224' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&VOI-Z/V' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C224' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C224' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C227' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='5df6d35d-5b18-49dd-a709-d92a7901a16c' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&MUB-1210' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C227' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C227' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&MUB-12420' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C227' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C227' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&MUB-1239' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C227' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C227' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C219' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='5df6d35d-5b18-49dd-a709-d92a7901a16c' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&RES-G/A' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C219' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C219' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C216' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='5df6d35d-5b18-49dd-a709-d92a7901a16c' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&RZB-DV' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C216' and isactive=1) group by id,article_group,article order by article_group,article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&RZB-DV' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C216' and isactive=1) group by id,article_group,article order by article_group,article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&RZB-DV-C' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C216' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C216' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C216' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C216' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&RZB-DV' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C216' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C216' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C216' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='5df6d35d-5b18-49dd-a709-d92a7901a16c' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&RZB-DV' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C216' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C216' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C216' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='5df6d35d-5b18-49dd-a709-d92a7901a16c' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&RZB-DV' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C216' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C216' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C218' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='5df6d35d-5b18-49dd-a709-d92a7901a16c' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='5df6d35d-5b18-49dd-a709-d92a7901a16c' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='5df6d35d-5b18-49dd-a709-d92a7901a16c' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='5df6d35d-5b18-49dd-a709-d92a7901a16c' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&FLM-FA' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C200' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&SPF-C' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C201' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C218' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='5df6d35d-5b18-49dd-a709-d92a7901a16c' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C201' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='5df6d35d-5b18-49dd-a709-d92a7901a16c' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C200' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='5df6d35d-5b18-49dd-a709-d92a7901a16c' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C217' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='5df6d35d-5b18-49dd-a709-d92a7901a16c' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C205' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='5df6d35d-5b18-49dd-a709-d92a7901a16c' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C219' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='5df6d35d-5b18-49dd-a709-d92a7901a16c' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C219' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='5df6d35d-5b18-49dd-a709-d92a7901a16c' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C220' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='5df6d35d-5b18-49dd-a709-d92a7901a16c' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&RES-KS/W1G' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C220' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C220' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C220' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='5df6d35d-5b18-49dd-a709-d92a7901a16c' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&RES-KS/PF' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C220' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C220' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&RES-KS/T1D' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C220' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C220' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&RES-D-P' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C220' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C220' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&RES-KS/W1G' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C220' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C220' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C216' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='5df6d35d-5b18-49dd-a709-d92a7901a16c' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&RZB-DV' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C216' and isactive=1) group by id,article_group,article order by article_group,article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&RZB-DV-C' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C216' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C203' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='5df6d35d-5b18-49dd-a709-d92a7901a16c' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&FLM-SB' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C203' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C203' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&FLM-SV' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C203' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C203' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C205' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='5df6d35d-5b18-49dd-a709-d92a7901a16c' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&RSM-F4' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C205' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C205' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C217' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='5df6d35d-5b18-49dd-a709-d92a7901a16c' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&RZB-V' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C217' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C217' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C224' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='5df6d35d-5b18-49dd-a709-d92a7901a16c' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&VOI-P/M' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C224' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C224' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&VOI-Z/R' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C224' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C224' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&VOI-Z/T' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C224' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C224' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&VOI-Z/V' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C224' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C224' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C220' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='5df6d35d-5b18-49dd-a709-d92a7901a16c' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&RES-KS/T1D' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C220' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C220' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&RES-KS/W1G' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C220' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C220' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&RES-KS/PF' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C220' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C220' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&RES-KS/T1D' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C220' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C220' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C200' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='5df6d35d-5b18-49dd-a709-d92a7901a16c' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C203' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='5df6d35d-5b18-49dd-a709-d92a7901a16c' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&FLM-SB' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C203' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C203' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C217' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='5df6d35d-5b18-49dd-a709-d92a7901a16c' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C219' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='5df6d35d-5b18-49dd-a709-d92a7901a16c' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C220' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='5df6d35d-5b18-49dd-a709-d92a7901a16c' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&RES-KS/PF' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C220' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C220' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&RES-KS/T1D' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C220' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C220' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&RES-KS/W1G' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C220' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C220' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&RES-AR/R-G' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C220' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C220' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&RES-AR/R-B' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C220' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C220' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C227' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='5df6d35d-5b18-49dd-a709-d92a7901a16c' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C214' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='5df6d35d-5b18-49dd-a709-d92a7901a16c' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&RSY-C/A' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C214' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C214' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&RSY-C/G' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C214' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C214' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&RSY-E/D' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C214' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C214' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&RSY-E/C' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C214' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C214' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&RSY-G/A' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C214' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C214' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&RSY-E/S' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C214' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C214' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&RSY-C/A' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C214' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C214' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&RSY-C/G' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C214' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C214' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C220' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='5df6d35d-5b18-49dd-a709-d92a7901a16c' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&RES-KS/T1D' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C220' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C220' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&RES-KS/W1G' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C220' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C220' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&RES-D-P' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C220' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C220' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&RES-AR/R-B' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C220' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C220' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&RES-AR/F' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C220' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C220' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&RES-KS/PF' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C220' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C220' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C216' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='5df6d35d-5b18-49dd-a709-d92a7901a16c' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C203' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='5df6d35d-5b18-49dd-a709-d92a7901a16c' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='5df6d35d-5b18-49dd-a709-d92a7901a16c' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&MAA-AG' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C5' and gp_art='C500' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&ABS-WI' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C5' and gp_art='C500' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&ABS-KI2815' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C5' and gp_art='C500' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&ABS-KI3817' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C5' and gp_art='C500' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='5df6d35d-5b18-49dd-a709-d92a7901a16c' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&LIF-B/H..P' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C4' and gp_art='C401' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&LIF-A/LA' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C4' and gp_art='C402' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&LIF-A/CR-A' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C4' and gp_art='C402' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.gp_art='C408' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='5df6d35d-5b18-49dd-a709-d92a7901a16c' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.gp_art='C409' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='5df6d35d-5b18-49dd-a709-d92a7901a16c' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.gp_art='C403' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='5df6d35d-5b18-49dd-a709-d92a7901a16c' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.gp_art='C401' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='5df6d35d-5b18-49dd-a709-d92a7901a16c' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&LIF-B/WI' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C4' and gp_art='C401' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.gp_art='C401' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&LIF-B/DS' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C4' and gp_art='C401' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.gp_art='C401' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&BKS-ALC/AP' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C114' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.gp_art='C114' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&BKS-ALC/RE' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C114' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.gp_art='C114' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&BKS-ALC/ST' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C114' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.gp_art='C114' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.gp_art='C116' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.gp_art='C101' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'projects'; +QUERYARRAY: SELECT * FROM projects ORDER BY date +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'qube') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'qube'; +QUERY: SELECT * FROM content WHERE (linkname = 'qube') OR (linkname = '') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'qube') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'qube'; +QUERY: SELECT * FROM content WHERE (linkname = 'qube') OR (linkname = '') OR (linkname = '') +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'qube') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'qube'; +QUERY: SELECT * FROM content WHERE (linkname = 'qube') OR (linkname = '') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'qube') OR (linkname = '') +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: SELECT * FROM slider WHERE page = 'qube'; +QUERY: SELECT * FROM content WHERE (linkname = 'qube') OR (linkname = '') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'qube') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'qube'; +QUERY: SELECT * FROM content WHERE (linkname = 'qube') OR (linkname = '') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'qube') OR (linkname = '') +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: SELECT * FROM slider WHERE page = 'qube'; +QUERY: SELECT * FROM content WHERE (linkname = 'qube') OR (linkname = '') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'qube') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'qube'; +QUERY: SELECT * FROM content WHERE (linkname = 'qube') OR (linkname = '') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'qube') OR (linkname = '') +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: SELECT * FROM slider WHERE page = 'qube'; +QUERY: SELECT * FROM content WHERE (linkname = 'qube') OR (linkname = '') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'qube') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'qube'; +QUERY: SELECT * FROM content WHERE (linkname = 'qube') OR (linkname = '') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'qube') OR (linkname = '') +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: SELECT * FROM slider WHERE page = 'qube'; +QUERY: SELECT * FROM content WHERE (linkname = 'qube') OR (linkname = '') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'qube') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'qube'; +QUERY: SELECT * FROM content WHERE (linkname = 'qube') OR (linkname = '') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'qube') OR (linkname = '') +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: SELECT * FROM slider WHERE page = 'qube'; +QUERY: SELECT * FROM content WHERE (linkname = 'qube') OR (linkname = '') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'qube') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'qube'; +QUERY: SELECT * FROM content WHERE (linkname = 'qube') OR (linkname = '') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'qube') OR (linkname = '') +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: SELECT * FROM slider WHERE page = 'qube'; +QUERY: SELECT * FROM content WHERE (linkname = 'qube') OR (linkname = '') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'qube') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'qube'; +QUERY: SELECT * FROM content WHERE (linkname = 'qube') OR (linkname = '') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'qube') OR (linkname = '') +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: SELECT * FROM slider WHERE page = 'qube'; +QUERY: SELECT * FROM content WHERE (linkname = 'qube') OR (linkname = '') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'qube') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'qube'; +QUERY: SELECT * FROM content WHERE (linkname = 'qube') OR (linkname = '') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'qube') OR (linkname = '') +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: SELECT * FROM slider WHERE page = 'qube'; +QUERY: SELECT * FROM content WHERE (linkname = 'qube') OR (linkname = '') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'qube') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'qube'; +QUERY: SELECT * FROM content WHERE (linkname = 'qube') OR (linkname = '') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'qube') OR (linkname = '') +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: SELECT * FROM slider WHERE page = 'qube'; +QUERY: SELECT * FROM content WHERE (linkname = 'qube') OR (linkname = '') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'qube') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'qube'; +QUERY: SELECT * FROM content WHERE (linkname = 'qube') OR (linkname = '') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'qube') OR (linkname = '') +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: SELECT * FROM slider WHERE page = 'qube'; +QUERY: SELECT * FROM content WHERE (linkname = 'qube') OR (linkname = '') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'qube') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'qube'; +QUERY: SELECT * FROM content WHERE (linkname = 'qube') OR (linkname = '') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'qube') OR (linkname = '') +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: SELECT * FROM slider WHERE page = 'qube'; +QUERY: SELECT * FROM content WHERE (linkname = 'qube') OR (linkname = '') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'about'; +QUERYARRAY: SELECT * FROM main_menu WHERE parentid = '2'; +QUERYARRAY: SELECT * FROM content WHERE linkname = 'about' +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CON-LC-G' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A102' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='img' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CON-LC-DT' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A102' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='img' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'D1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='D1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='D1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'D1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='D1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='D1' and ag.gp_art='D117' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'D1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='D1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='D1' and ag.gp_art='D114' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'D1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='D1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='D1' and ag.gp_art='D113' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'D1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='D1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='D1' and ag.gp_art='D113' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.gp_art='C901' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.gp_art='C905' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.gp_art='C901' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.gp_art='C900' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.gp_art='C901' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.gp_art='C904' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.gp_art='C902' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.gp_art='C901' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.gp_art='C902' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.gp_art='C906' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.gp_art='C907' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.gp_art='C901' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.gp_art='C904' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.gp_art='C906' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.gp_art='C901' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.gp_art='C901' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.gp_art='C900' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C9') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C9' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C3' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C3' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='A4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A4' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C7') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C7' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C7' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='A5' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A5' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C8') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C8' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C8' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'D4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='D4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='D4' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C3' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C3' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='A4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A4' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'about'; +QUERYARRAY: SELECT * FROM main_menu WHERE parentid = '2'; +QUERYARRAY: SELECT * FROM content WHERE linkname = 'about' +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'nouveautes'; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'nouveautes'; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'projects'; +QUERYARRAY: SELECT * FROM projects ORDER BY date +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '7') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'contact'; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'about'; +QUERYARRAY: SELECT * FROM main_menu WHERE parentid = '2'; +QUERYARRAY: SELECT * FROM content WHERE linkname = 'about' +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'nouveautes'; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'projects'; +QUERYARRAY: SELECT * FROM projects ORDER BY date +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '7') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'contact'; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'nouveautes'; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'about'; +QUERYARRAY: SELECT * FROM main_menu WHERE parentid = '2'; +QUERYARRAY: SELECT * FROM content WHERE linkname = 'about' +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'about'; +QUERYARRAY: SELECT * FROM main_menu WHERE parentid = '2'; +QUERYARRAY: SELECT * FROM content WHERE linkname = 'about' +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'nouveautes'; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'projects'; +QUERYARRAY: SELECT * FROM projects ORDER BY date +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '7') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'contact'; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'projects'; +QUERYARRAY: SELECT * FROM projects ORDER BY date +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '14') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'project'; +QUERYARRAY: SELECT * FROM projects WHERE id = '14' +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C616' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C605' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C603' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C601' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&ASE-FA20-3230' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C6' and gp_art='C601' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C601' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&ASE-FA20-3230' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C6' and gp_art='C601' and isactive=1) group by id,article_group,article order by article_group,article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&ASE-FA20-3230' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C6' and gp_art='C601' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C601' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&ASE-FA20-3230' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C6' and gp_art='C601' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C601' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&ASE-FA20-3230' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C6' and gp_art='C601' and isactive=1) group by id,article_group,article order by article_group,article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&ASE-FA20-3230' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C6' and gp_art='C601' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C601' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C601' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&ASE-FA20-3230' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C6' and gp_art='C601' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C601' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C601' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='A4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A4' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='A2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A2' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='A4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A4' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='A4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A4' and ag.gp_art='A400' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='A4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A4' and ag.gp_art='A400' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C602' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C603' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C604' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C605' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C607' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C608' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C612' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C613' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C604' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C602' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&ASE-BF' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C6' and gp_art='C602' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C602' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C604' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&BWA-FB' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C6' and gp_art='C604' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C604' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C607' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C613' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C613' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'askprice'; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink , oa.comment + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +EXEC: INSERT INTO orders (id, id_client, id_user, status, orderdate, wiges_no_document, created, modified, wiges_document_type, deliveryaddress,msg) VALUES ('a12950ad-0a71-4fc1-8f28-3eafd40776a9', 10000, 'a4598487-1503-4bc3-be52-2ba096a6cd0a', 'received', CURRENT_DATE, null, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP, 'DPS', 'test +1, rue test +0000 Test +t', 'Contact: +Test TEst\n01234567\ntest@test.com +test +1, rue test +0000 Test +t + +Message: + +sdasd'); +EXEC: update order_articles set id_order='a12950ad-0a71-4fc1-8f28-3eafd40776a9' where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select oa.id,ar.article_group,ag.titre_fr,ar.article,oa.comment from articles ar + join article_groups ag on (ar.article_group=ag.article) + join order_articles oa on (ar.article=oa.article) + where oa.id_order='a12950ad-0a71-4fc1-8f28-3eafd40776a9' group by ar.article_group,ar.article; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink , oa.comment + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&TDR-B2E' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C6' and gp_art='C600' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C608' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&INJ-NAPA' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C6' and gp_art='C608' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C608' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select * from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and article='INJ-NAPA-2' and id_order is null and code_document='DPS'; +EXEC: INSERT INTO order_articles (id,article,quantity,id_user,code_document) VALUES ('c02ba958-64b8-4f92-8fee-b0ff5ca7260c','INJ-NAPA-2','1','a4598487-1503-4bc3-be52-2ba096a6cd0a','DPS'); +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C617' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&AWR-KG2/RP-RD' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C6' and gp_art='C617' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C617' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select * from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and article='AWR-KG2/RP125-0500RD' and id_order is null and code_document='DPS'; +EXEC: INSERT INTO order_articles (id,article,quantity,id_user,code_document) VALUES ('bbae69f7-e7c1-4f10-a1f9-30d08934ebd2','AWR-KG2/RP125-0500RD','1','a4598487-1503-4bc3-be52-2ba096a6cd0a','DPS'); +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: select * from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and article='AWR-KG2/RP200-0500RD' and id_order is null and code_document='DPS'; +EXEC: INSERT INTO order_articles (id,article,quantity,id_user,code_document) VALUES ('2656748d-8a29-49b1-b422-c3071d72f7ce','AWR-KG2/RP200-0500RD','1','a4598487-1503-4bc3-be52-2ba096a6cd0a','DPS'); +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C608' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&INJ-BOX' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C6' and gp_art='C608' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C608' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select * from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and article='INJ-BOX' and id_order is null and code_document='DPS'; +EXEC: INSERT INTO order_articles (id,article,quantity,id_user,code_document) VALUES ('5a456f19-dc41-42a0-958d-bb6d6243fd4c','INJ-BOX','1','a4598487-1503-4bc3-be52-2ba096a6cd0a','DPS'); +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'askprice'; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink , oa.comment + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +EXEC: UPDATE order_articles SET comment='sd' WHERE article='INJ-NAPA-2' and wiges_no_document is null and id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and code_document='DPS'; +EXEC: UPDATE order_articles SET comment='fh' WHERE article='INJ-BOX' and wiges_no_document is null and id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and code_document='DPS'; +EXEC: UPDATE order_articles SET comment='fh' WHERE article='INJ-BOX' and wiges_no_document is null and id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and code_document='DPS'; +EXEC: INSERT INTO orders (id, id_client, id_user, status, orderdate, wiges_no_document, created, modified, wiges_document_type, deliveryaddress,msg) VALUES ('d11fb863-a898-48b6-8125-3a23b5449eaa', 10000, 'a4598487-1503-4bc3-be52-2ba096a6cd0a', 'received', CURRENT_DATE, null, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP, 'DPS', 'TEst +1, rue test +0000 test +x', 'Contact: +Test\n0123456\ntest@test.com +TEst +1, rue test +0000 test +x + +Message: + +wewe'); +EXEC: update order_articles set id_order='d11fb863-a898-48b6-8125-3a23b5449eaa' where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select oa.id,ar.article_group,ag.titre_fr,ar.article,oa.comment from articles ar + join article_groups ag on (ar.article_group=ag.article) + join order_articles oa on (ar.article=oa.article) + where oa.id_order='d11fb863-a898-48b6-8125-3a23b5449eaa' group by ar.article_group,ar.article; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink , oa.comment + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'askprice'; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink , oa.comment + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C613' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&WDF-SR1' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C6' and gp_art='C613' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C613' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select * from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and article='WDF-SR1/150-AL' and id_order is null and code_document='DPS'; +EXEC: INSERT INTO order_articles (id,article,quantity,id_user,code_document) VALUES ('0c1b4945-2c2a-47d2-8e78-9ae656b34e52','WDF-SR1/150-AL','1','a4598487-1503-4bc3-be52-2ba096a6cd0a','DPS'); +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C616' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&ARV-CTC' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C6' and gp_art='C616' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C616' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select * from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and article='ARV-CTC-175190-11006' and id_order is null and code_document='DPS'; +EXEC: INSERT INTO order_articles (id,article,quantity,id_user,code_document) VALUES ('bb71b0da-b057-4642-b50b-c6bbd42e5830','ARV-CTC-175190-11006','1','a4598487-1503-4bc3-be52-2ba096a6cd0a','DPS'); +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: select * from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and article='ARV-CTC-290305-16506' and id_order is null and code_document='DPS'; +EXEC: INSERT INTO order_articles (id,article,quantity,id_user,code_document) VALUES ('b15e6eb8-1a75-4fe0-a7d1-97cb6286eef6','ARV-CTC-290305-16506','1','a4598487-1503-4bc3-be52-2ba096a6cd0a','DPS'); +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: select * from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and article='ARV-CTC-310325-16506' and id_order is null and code_document='DPS'; +EXEC: INSERT INTO order_articles (id,article,quantity,id_user,code_document) VALUES ('be43e428-1d7e-4642-860c-f48f554609fb','ARV-CTC-310325-16506','1','a4598487-1503-4bc3-be52-2ba096a6cd0a','DPS'); +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'askprice'; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink , oa.comment + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +EXEC: UPDATE order_articles SET comment='df' WHERE article='WDF-SR1/150-AL' and wiges_no_document is null and id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and code_document='DPS'; +EXEC: UPDATE order_articles SET comment='dsf' WHERE article='ARV-CTC-175190-11006' and wiges_no_document is null and id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and code_document='DPS'; +EXEC: UPDATE order_articles SET comment='sdf' WHERE article='ARV-CTC-290305-16506' and wiges_no_document is null and id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and code_document='DPS'; +EXEC: UPDATE order_articles SET comment='dsf' WHERE article='ARV-CTC-310325-16506' and wiges_no_document is null and id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and code_document='DPS'; +EXEC: INSERT INTO orders (id, id_client, id_user, status, orderdate, wiges_no_document, created, modified, wiges_document_type, deliveryaddress,msg) VALUES ('3ca773b2-c6cc-4bec-a0b9-3deb38462c82', 10000, 'a4598487-1503-4bc3-be52-2ba096a6cd0a', 'received', CURRENT_DATE, null, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP, 'DPS', 'TEst +8, rue test +0000 TEst +t', 'Contact: +test\n0123446\ntest@tets.com +TEst +8, rue test +0000 TEst +t + +Message: + +Dgfsd'); +EXEC: update order_articles set id_order='3ca773b2-c6cc-4bec-a0b9-3deb38462c82' where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select oa.id,ar.article_group,ag.titre_fr,ar.article,oa.comment from articles ar + join article_groups ag on (ar.article_group=ag.article) + join order_articles oa on (ar.article=oa.article) + where oa.id_order='3ca773b2-c6cc-4bec-a0b9-3deb38462c82' group by ar.article_group,ar.article; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink , oa.comment + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'askprice'; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' + as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink , oa.comment + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'D1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='D1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='D1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&MUB-2505' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='D1' and gp_art='D111' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'D1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='D1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='D1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&MUB-1966' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='D1' and gp_art='D113' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'D1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='D1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='D1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select * from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and article='MUB-19660' and id_order is null and code_document='DPS'; +EXEC: INSERT INTO order_articles (id,article,quantity,id_user,code_document) VALUES ('1313180e-920d-4724-ac57-8bbcfca8fdde','MUB-19660','1','a4598487-1503-4bc3-be52-2ba096a6cd0a','DPS'); +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: select * from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and article='MUB-19800' and id_order is null and code_document='DPS'; +EXEC: INSERT INTO order_articles (id,article,quantity,id_user,code_document) VALUES ('be5fa899-9162-467c-8153-74fadc3a1316','MUB-19800','1','a4598487-1503-4bc3-be52-2ba096a6cd0a','DPS'); +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'projects'; +QUERYARRAY: SELECT * FROM projects ORDER BY date +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'nouveautes'; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'askprice'; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink , oa.comment + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +EXEC: UPDATE order_articles SET comment='df' WHERE article='MUB-19660' and wiges_no_document is null and id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and code_document='DPS'; +EXEC: UPDATE order_articles SET comment='ss' WHERE article='MUB-19800' and wiges_no_document is null and id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and code_document='DPS'; +EXEC: UPDATE order_articles SET comment='ss' WHERE article='MUB-19800' and wiges_no_document is null and id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and code_document='DPS'; +EXEC: INSERT INTO orders (id, id_client, id_user, status, orderdate, wiges_no_document, created, modified, wiges_document_type, deliveryaddress,msg) VALUES ('c0cf51f5-1018-4871-a53a-7c3bb8ab634b', 10000, 'a4598487-1503-4bc3-be52-2ba096a6cd0a', 'received', CURRENT_DATE, null, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP, 'DPS', 'Test +0,rue x +000 test +t', 'Contact: +uwrw iwzhi\n01246\nt@t.com +Test +0,rue x +000 test +t + +Message: + +dfg'); +EXEC: update order_articles set id_order='c0cf51f5-1018-4871-a53a-7c3bb8ab634b' where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select oa.id,ar.article_group,ag.titre_fr,ar.article,oa.comment from articles ar + join article_groups ag on (ar.article_group=ag.article) + join order_articles oa on (ar.article=oa.article) + where oa.id_order='c0cf51f5-1018-4871-a53a-7c3bb8ab634b' group by ar.article_group,ar.article; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink , oa.comment + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'askprice'; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink , oa.comment + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'askprice'; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink , oa.comment + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'askprice'; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink , oa.comment + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'askprice'; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink , oa.comment + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'askprice'; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink , oa.comment + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'askprice'; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink , oa.comment + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'askprice'; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink , oa.comment + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'askprice'; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink , oa.comment + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'askprice'; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink , oa.comment + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'askprice'; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink , oa.comment + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'askprice'; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink , oa.comment + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'askprice'; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' + as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink , oa.comment + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'askprice'; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' + as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink , oa.comment + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'askprice'; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink , oa.comment + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'askprice'; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink , oa.comment + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'askprice'; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink , oa.comment + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'askprice'; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink , oa.comment + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'askprice'; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink , oa.comment + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'nouveautes'; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CON-LC-SH' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A102' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='img' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CON-LC-DT' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A102' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='img' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CON-LC-DT' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A102' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='img' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CON-LC-DT' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A102' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='img' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CON-LC-DT' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A102' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='img' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CON-LC-DT' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A102' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='img' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CON-LC-SH' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A102' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='img' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CON-LC-D' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A102' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='img' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CON-LC-M' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A102' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='img' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CON-LC-DT' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A102' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='img' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CON-LC-SH' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A102' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='img' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CON-LC-D' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A102' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='img' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CON-LC-M' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A102' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='img' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CNT-S...I2.01' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A104' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='img' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CNT-S...I2.03' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A104' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='img' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CNT-S...I2.04' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A104' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='img' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CNT-S...I2.04A' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A104' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='img' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CNT-S...I2.08' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A104' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='img' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CNT-S...I2.08' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A104' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='img' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CNT-S...I2.10' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A104' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='img' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CON-ABRI' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A105' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='img' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&KBA-M' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C100' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.gp_art='C108' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.gp_art='C107' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.gp_art='C107' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.gp_art='C102' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.gp_art='C106' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.gp_art='C106' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.gp_art='C108' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.gp_art='C131' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.gp_art='C131' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.gp_art='C131' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.gp_art='C131' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&BLZ-KV/UNI2S' and isactive=1 order by titre,article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&BLZ-KV/RR3' and isactive=1 order by titre,article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&BLZ-KV/UNI3S' and isactive=1 order by titre,article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&BLZ-KV30/UNI1S' and isactive=1 order by titre,article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&BLZ-KV/MZ' and isactive=1 order by titre,article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&BLZ-WE/M' and isactive=1 order by titre,article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&BLZ-KV/AR01' and isactive=1 order by titre,article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&BLZ-KV/FR' and isactive=1 order by titre,article; + +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&BLZ-KV/AR04' and isactive=1 order by titre,article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&BLZ-EB' and isactive=1 order by titre,article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&BLZ-KV/AR03' and isactive=1 order by titre,article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&BLZ-AK' and isactive=1 order by titre,article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&BLZ-RD' and isactive=1 order by titre,article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&BLZ-WD/WS' and isactive=1 order by titre,article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&BLZ-TE' and isactive=1 order by titre,article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&BLZ-WE/PR' and isactive=1 order by titre,article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&BLZ-WE/KVRR' and isactive=1 order by titre,article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&BLZ-WE/FIX' and isactive=1 order by titre,article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&BLZ-WE/FIX080' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C131' and isactive=1) group by id,article_group,article order by article_group,article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&BLZ-WE/WS' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C131' and isactive=1) group by id,article_group,article order by article_group,article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&BLZ-DIS' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C131' and isactive=1) group by id,article_group,article order by article_group,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C131' and isactive=1) group by id,article_group,article order by article_group,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C131' and isactive=1) group by id,article_group,article order by article_group,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C131' and isactive=1) group by id,article_group,article order by article_group,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C131' and isactive=1) group by id,article_group,article order by article_group,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C131' and isactive=1) group by id,article_group,article order by article_group,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C131' and isactive=1) group by id,article_group,article order by article_group,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C131' and isactive=1) group by id,article_group,article order by article_group,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C131' and isactive=1) group by id,article_group,article order by article_group,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C131' and isactive=1) group by id,article_group,article order by article_group,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C131' and isactive=1) group by id,article_group,article order by article_group,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C131' and isactive=1) group by id,article_group,article order by article_group,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C131' and isactive=1) group by id,article_group,article order by article_group,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C131' and isactive=1) group by id,article_group,article order by article_group,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C131' and isactive=1) group by id,article_group,article order by article_group,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C131' and isactive=1) group by id,article_group,article order by article_group,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C131' and isactive=1) group by id,article_group,article order by article_group,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C131' and isactive=1) group by id,article_group,article order by article_group,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C131' and isactive=1) group by id,article_group,article order by article_group,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C131' and isactive=1) group by id,article_group,article order by article_group,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C131' and isactive=1) group by id,article_group,article order by article_group,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C131' and isactive=1) group by id,article_group,article order by article_group,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C131' and isactive=1) group by id,article_group,article order by article_group,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C131' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.gp_art='C131' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.gp_art='C131' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.gp_art='C131' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&BLZ-KV/FF' and isactive=1 order by titre,article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&BLZ-KV/RR3' and isactive=1 order by titre,article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&BLZ-KV/CC' and isactive=1 order by titre,article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&BLZ-KV30/UNI1S' and isactive=1 order by titre,article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&BLZ-KV/UNI2S' and isactive=1 order by titre,article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&BLZ-KV/UNI3S' and isactive=1 order by titre,article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&BLZ-WD/WS3' and isactive=1 order by titre,article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&BLZ-KSB' and isactive=1 order by titre,article; +; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&BLZ-KV/AR01' and isactive=1 order by titre,article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&BLZ-KV/AR03' and isactive=1 order by titre,article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&BLZ-EB' and isactive=1 order by titre,article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&BLZ-MV/AR01' and isactive=1 order by titre,article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&BLZ-RD' and isactive=1 order by titre,article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&BLZ-PV' and isactive=1 order by titre,article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&BLZ-WE/PR' and isactive=1 order by titre,article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&BLZ-WE/FIX' and isactive=1 order by titre,article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&BLZ-TE' and isactive=1 order by titre,article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&BLZ-WE/KVRR' and isactive=1 order by titre,article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&BLZ-SSP' and isactive=1 order by titre,article; +icle; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&BLZ-WE/WS' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C131' and isactive=1) group by id,article_group,article order by article_group,article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&BLZ-DIS' and isactive=1 order by titre,article; +ticle=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C131' and isactive=1) group by id,article_group,article order by article_group,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C131' and isactive=1) group by id,article_group,article order by article_group,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C131' and isactive=1) group by id,article_group,article order by article_group,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C131' and isactive=1) group by id,article_group,article order by article_group,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C131' and isactive=1) group by id,article_group,article order by article_group,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C131' and isactive=1) group by id,article_group,article order by article_group,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C131' and isactive=1) group by id,article_group,article order by article_group,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C131' and isactive=1) group by id,article_group,article order by article_group,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C131' and isactive=1) group by id,article_group,article order by article_group,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C131' and isactive=1) group by id,article_group,article order by article_group,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C131' and isactive=1) group by id,article_group,article order by article_group,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C131' and isactive=1) group by id,article_group,article order by article_group,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C131' and isactive=1) group by id,article_group,article order by article_group,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C131' and isactive=1) group by id,article_group,article order by article_group,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C131' and isactive=1) group by id,article_group,article order by article_group,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C131' and isactive=1) group by id,article_group,article order by article_group,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C131' and isactive=1) group by id,article_group,article order by article_group,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C131' and isactive=1) group by id,article_group,article order by article_group,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C131' and isactive=1) group by id,article_group,article order by article_group,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C131' and isactive=1) group by id,article_group,article order by article_group,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C131' and isactive=1) group by id,article_group,article order by article_group,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C131' and isactive=1) group by id,article_group,article order by article_group,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C131' and isactive=1) group by id,article_group,article order by article_group,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C131' and isactive=1) group by id,article_group,article order by article_group,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C131' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.gp_art='C131' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.gp_art='C131' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.gp_art='C110' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&QKD-DND' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C110' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.gp_art='C110' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.gp_art='C107' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&QKD-WN' and isactive=1 order by titre,article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&QKD-WQ' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C107' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.gp_art='C107' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.gp_art='C111' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&QKD-M' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C111' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.gp_art='C111' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.gp_art='C105' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&BWA-SB-H17' and isactive=1 order by titre,article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&BWA-AS' and isactive=1 order by titre,article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&BWA-IS' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C105' and isactive=1) group by id,article_group,article order by article_group,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C105' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.gp_art='C105' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.gp_art='C107' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&QKD-WN' and isactive=1 order by titre,article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&QKD-WQ' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C107' and isactive=1) group by id,article_group,article order by article_group,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C107' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.gp_art='C107' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.gp_art='C107' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.gp_art='C102' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.gp_art='C102' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&BWA-B-H17' and isactive=1 order by titre,article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&BWA-I-H17' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C102' and isactive=1) group by id,article_group,article order by article_group,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C102' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.gp_art='C102' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&BWA-B-H17' and isactive=1 order by titre,article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&BWA-I-H17' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C102' and isactive=1) group by id,article_group,article order by article_group,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C102' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.gp_art='C108' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&QKD-EDM-HF' and isactive=1 order by titre,article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&QKD-EDV-HF' and isactive=1 order by titre,article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&QKD-EDM-HF/H' and isactive=1 order by titre,article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&QKD-EDV-HF/H' and isactive=1 order by titre,article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&QKD-EDM-HI' and isactive=1 order by titre,article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&QKD-EDM-HQI' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C108' and isactive=1) group by id,article_group,article order by article_group,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C108' and isactive=1) group by id,article_group,article order by article_group,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C108' and isactive=1) group by id,article_group,article order by article_group,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C108' and isactive=1) group by id,article_group,article order by article_group,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C108' and isactive=1) group by id,article_group,article order by article_group,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C108' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.gp_art='C108' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&QKD-EDM-HF' and isactive=1 order by titre,article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&QKD-EDV-HF' and isactive=1 order by titre,article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&QKD-EDM-HF/H' and isactive=1 order by titre,article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&QKD-EDV-HF/H' and isactive=1 order by titre,article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&QKD-EDM-HI' and isactive=1 order by titre,article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&QKD-EDM-HQI' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C108' and isactive=1) group by id,article_group,article order by article_group,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C108' and isactive=1) group by id,article_group,article order by article_group,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C108' and isactive=1) group by id,article_group,article order by article_group,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C108' and isactive=1) group by id,article_group,article order by article_group,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C108' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.gp_art='C108' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.gp_art='C108' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.gp_art='C108' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.gp_art='C108' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.gp_art='C108' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&TDR-B2R' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C6' and gp_art='C600' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&TDR-B2T' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C6' and gp_art='C600' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&TDR-B2E' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C6' and gp_art='C600' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&TDR-B2T' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C6' and gp_art='C600' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&TDR-B2X' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C6' and gp_art='C600' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&TDR-B2E' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C6' and gp_art='C600' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&TDR-B2R' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C6' and gp_art='C600' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&TDR-B2E' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C6' and gp_art='C600' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&TDR-B2T' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C6' and gp_art='C600' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&TDR-B2X' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C6' and gp_art='C600' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&TDR-B2R' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C6' and gp_art='C600' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&TDR-B2E' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C6' and gp_art='C600' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&TDR-B2T' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C6' and gp_art='C600' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&TDR-B2X' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C6' and gp_art='C600' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&TDR-B2E' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C6' and gp_art='C600' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C608' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C608' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C608' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C608' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C608' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C608' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C608' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +scription,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat from article_groups + where gp_art='C608' and famille_art='C6' and isactive=1 order by titre,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C608' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat from article_groups + where gp_art='C608' and famille_art='C6' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C6' and gp_art='C608' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C608' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat from article_groups + where gp_art='C608' and famille_art='C6' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C6' and gp_art='C608' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C608' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C608' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C608' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C608' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_frQUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C608' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C608' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C608' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C608' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C608' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C608' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C608' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C608' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C608' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C613' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat from article_groups + where gp_art='C613' and famille_art='C6' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C6' and gp_art='C613' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C613' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C613' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C613' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C615' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat from article_groups + where gp_art='C615' and famille_art='C6' and isactive=1 order by titre,article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C6' and gp_art='C615' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C615' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C615' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C604' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat from article_groups + where gp_art='C604' and famille_art='C6' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C6' and gp_art='C604' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C604' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C604' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C604' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C604' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C608' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat from article_groups + where gp_art='C608' and famille_art='C6' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C6' and gp_art='C608' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C608' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C608' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C608' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C608' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C608' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C608' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C608' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C608' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C608' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C608' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C608' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C608' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C608' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C608' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C608' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C608' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C608' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C608' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C601' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat from article_groups + where gp_art='C601' and famille_art='C6' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C6' and gp_art='C601' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C601' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C601' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C601' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C601' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C601' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C601' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C601' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C3' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C3' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='A4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A4' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='A4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A4' and ag.gp_art='A401' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat from article_groups + where gp_art='A401' and famille_art='A4' and isactive=1 order by titre,article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A4' and gp_art='A401' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A4') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A4') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +ERE (linkname = 'A4') OR (linkname = '') +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='A4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A4' and ag.gp_art='A401' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='A4' group by gp_art) ORDER BY gp_art ASC; +, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A4' and ag.gp_art='A401' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A4' and ag.gp_art='A401' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='A4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A4' and ag.gp_art='A401' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='A4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A4' and ag.gp_art='A405' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat from article_groups + where gp_art='A405' and famille_art='A4' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A4' and gp_art='A405' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='A4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A4' and ag.gp_art='A405' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&LIF-B/H..P' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C4' and gp_art='C401' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&LIF-MW-G' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C4' and gp_art='C403' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&KAS-DR/A' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C4' and gp_art='C407' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&LIF-A/TI-G' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C4' and gp_art='C408' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&LIF-D/UN' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C4' and gp_art='C408' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.gp_art='C407' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat from article_groups + where gp_art='C407' and famille_art='C4' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C4' and gp_art='C407' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.gp_art='C407' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.gp_art='C407' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.gp_art='C407' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.gp_art='C407' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.gp_art='C407' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.gp_art='C407' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.gp_art='C407' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat from article_groups + where gp_art='C407' and famille_art='C4' and isactive=1 order by titre,article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C4' and gp_art='C407' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.gp_art='C407' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.gp_art='C407' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.gp_art='C407' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.gp_art='C407' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.gp_art='C407' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.gp_art='C407' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.gp_art='C407' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat from article_groups + where gp_art='C407' and famille_art='C4' and isactive=1 order by titre,article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C4' and gp_art='C407' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.gp_art='C407' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.gp_art='C407' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.gp_art='C407' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.gp_art='C407' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.gp_art='C407' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.gp_art='C407' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.gp_art='C407' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.gp_art='C407' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.gp_art='C407' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +scription,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat from article_groups + where gp_art='C407' and famille_art='C4' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C4' and gp_art='C407' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.gp_art='C407' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.gp_art='C407' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.gp_art='C407' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.gp_art='C407' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.gp_art='C407' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.gp_art='C408' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +scription,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat from article_groups + where gp_art='C408' and famille_art='C4' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C4' and gp_art='C408' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.gp_art='C408' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.gp_art='C408' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.gp_art='C408' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.gp_art='C408' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.gp_art='C408' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.gp_art='C408' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.gp_art='C408' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.gp_art='C408' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.gp_art='C408' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.gp_art='C408' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.gp_art='C408' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.gp_art='C408' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.gp_art='C401' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat from article_groups + where gp_art='C401' and famille_art='C4' and isactive=1 order by titre,article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C4' and gp_art='C401' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C4' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.gp_art='C401' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.gp_art='C401' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.gp_art='C401' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C607' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat from article_groups + where gp_art='C607' and famille_art='C6' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C6' and gp_art='C607' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C607' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C607' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C607' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C607' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C607' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C607' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C607' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C607' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C616' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat from article_groups + where gp_art='C616' and famille_art='C6' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C6' and gp_art='C616' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C616' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C616' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C620' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat from article_groups + where gp_art='C620' and famille_art='C6' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C6' and gp_art='C620' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C620' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C620' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C620' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C620' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C620' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C620' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C620' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C620' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C620' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C620' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C620' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C620' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C620' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C620' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C603' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat from article_groups + where gp_art='C603' and famille_art='C6' and isactive=1 order by titre,article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C6' and gp_art='C603' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C603' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C603' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C603' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C603' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C603' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C603' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C603' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C603' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C603' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C603' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.gp_art='C603' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'nouveautes'; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'askprice'; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink , oa.comment + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'askprice'; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink , oa.comment + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'askprice'; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink , oa.comment + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'askprice'; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink , oa.comment + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'askprice'; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink , oa.comment + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'askprice'; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink , oa.comment + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'askprice'; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink , oa.comment + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'askprice'; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink , oa.comment + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&SPF-C' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C201' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select * from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and article='SPF-C-16060-1200' and id_order is null and code_document='DPS'; +EXEC: INSERT INTO order_articles (id,article,quantity,id_user,code_document) VALUES ('c7d5b2fd-ccf1-491f-adbc-5001e36d0f76','SPF-C-16060-1200','1','a4598487-1503-4bc3-be52-2ba096a6cd0a','DPS'); +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: select * from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and article='SPF-C-17040-1125' and id_order is null and code_document='DPS'; +EXEC: INSERT INTO order_articles (id,article,quantity,id_user,code_document) VALUES ('018ab9b1-7ccb-4744-b885-ffb550667ec3','SPF-C-17040-1125','1','a4598487-1503-4bc3-be52-2ba096a6cd0a','DPS'); +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'askprice'; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink , oa.comment + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +EXEC: INSERT INTO orders (id, id_client, id_user, status, orderdate, wiges_no_document, created, modified, wiges_document_type, deliveryaddress,msg) VALUES ('2bf9a0fe-de5f-455d-9472-d1aa82f64e03', 10000, 'a4598487-1503-4bc3-be52-2ba096a6cd0a', 'received', CURRENT_DATE, null, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP, 'DPS', ' + + +', 'Contact: +\n\n + + + + + +Message: + +'); +EXEC: update order_articles set id_order='2bf9a0fe-de5f-455d-9472-d1aa82f64e03' where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select oa.id,ar.article_group,ag.titre_fr,ar.article,oa.comment from articles ar + join article_groups ag on (ar.article_group=ag.article) + join order_articles oa on (ar.article=oa.article) + where oa.id_order='2bf9a0fe-de5f-455d-9472-d1aa82f64e03' group by ar.article_group,ar.article; +EXEC: DELETE FROM order_articles WHERE article='SPF-C-16060-1200' and id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and code_document='DPS' and id_order is null; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' + as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink , oa.comment + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'boostrap') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'boostrap'; +QUERY: SELECT * FROM content WHERE (linkname = 'boostrap') OR (linkname = '') OR (linkname = 'vendor') +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'boostrap') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'boostrap'; +QUERY: SELECT * FROM content WHERE (linkname = 'boostrap') OR (linkname = '') OR (linkname = 'vendor') +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'boostrap') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'boostrap'; +QUERY: SELECT * FROM content WHERE (linkname = 'boostrap') OR (linkname = '') OR (linkname = 'vendor') +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'about'; +QUERYARRAY: SELECT * FROM main_menu WHERE parentid = '2'; +QUERYARRAY: SELECT * FROM content WHERE linkname = 'about' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'boostrap') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'boostrap'; +QUERY: SELECT * FROM content WHERE (linkname = 'boostrap') OR (linkname = '') OR (linkname = 'vendor') +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'boostrap') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'boostrap'; +QUERY: SELECT * FROM content WHERE (linkname = 'boostrap') OR (linkname = '') OR (linkname = 'vendor') +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'nouveautes'; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'boostrap') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'boostrap'; +QUERY: SELECT * FROM content WHERE (linkname = 'boostrap') OR (linkname = '') OR (linkname = 'vendor') +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'projects'; +QUERYARRAY: SELECT * FROM projects ORDER BY date +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'boostrap') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'boostrap'; +QUERY: SELECT * FROM content WHERE (linkname = 'boostrap') OR (linkname = '') OR (linkname = 'vendor') +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '7') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'contact'; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'boostrap') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'boostrap'; +QUERY: SELECT * FROM content WHERE (linkname = 'boostrap') OR (linkname = '') OR (linkname = 'vendor') +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '7') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'contact'; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'boostrap') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'boostrap'; +QUERY: SELECT * FROM content WHERE (linkname = 'boostrap') OR (linkname = '') OR (linkname = 'vendor') +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '7') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'contact'; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'boostrap') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'boostrap'; +QUERY: SELECT * FROM content WHERE (linkname = 'boostrap') OR (linkname = '') OR (linkname = 'vendor') +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '7') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'contact'; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'boostrap') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'boostrap'; +QUERY: SELECT * FROM content WHERE (linkname = 'boostrap') OR (linkname = '') OR (linkname = 'vendor') +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '7') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'contact'; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'boostrap') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'boostrap'; +QUERY: SELECT * FROM content WHERE (linkname = 'boostrap') OR (linkname = '') OR (linkname = 'vendor') +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '7') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'contact'; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'boostrap') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'boostrap'; +QUERY: SELECT * FROM content WHERE (linkname = 'boostrap') OR (linkname = '') OR (linkname = 'vendor') +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '7') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'contact'; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'boostrap') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'boostrap'; +QUERY: SELECT * FROM content WHERE (linkname = 'boostrap') OR (linkname = '') OR (linkname = 'vendor') +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '7') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'contact'; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '7') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'contact'; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '7') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'contact'; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '7') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'contact'; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '7') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'contact'; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '7') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'contact'; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '7') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'contact'; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '7') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'contact'; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '7') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'contact'; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '7') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'contact'; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '7') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'contact'; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '7') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'contact'; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '7') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'contact'; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '7') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'contact'; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '7') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'contact'; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '7') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'contact'; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '7') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'contact'; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '7') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'contact'; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '7') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'contact'; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '7') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'contact'; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '7') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'contact'; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '7') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'contact'; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '7') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'contact'; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'projects'; +QUERYARRAY: SELECT * FROM projects ORDER BY date +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'about'; +QUERYARRAY: SELECT * FROM main_menu WHERE parentid = '2'; +QUERYARRAY: SELECT * FROM content WHERE linkname = 'about' +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'askprice'; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink , oa.comment + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'app') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'app'; +QUERYARRAY: SELECT * FROM main_menu WHERE parentid = '2'; +QUERYARRAY: SELECT * FROM content WHERE linkname = 'app' +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'app') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'app'; +QUERYARRAY: SELECT * FROM main_menu WHERE parentid = '2'; +QUERYARRAY: SELECT * FROM content WHERE linkname = 'app' +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CAN-SUPER/COL' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A4' and gp_art='A402' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'projects'; +QUERYARRAY: SELECT * FROM projects ORDER BY date +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'projects'; +QUERYARRAY: SELECT * FROM projects ORDER BY date +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'about'; +QUERYARRAY: SELECT * FROM main_menu WHERE parentid = '2'; +QUERYARRAY: SELECT * FROM content WHERE linkname = 'about' +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'about'; +QUERYARRAY: SELECT * FROM main_menu WHERE parentid = '2'; +QUERYARRAY: SELECT * FROM content WHERE linkname = 'about' +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) and famille_art='C2' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) and famille_art='C2' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C217' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat from article_groups + where gp_art='C217' and famille_art='C2' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C217' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) and famille_art='C2' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C217' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) and famille_art='C2' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C207' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat from article_groups + where gp_art='C207' and famille_art='C2' and isactive=1 order by titre,article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C207' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) and famille_art='C2' ORDER BY gp_art ASC; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) and famille_art='C2' ORDER BY gp_art ASC; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) and famille_art='C2' ORDER BY gp_art ASC; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) and famille_art='C2' ORDER BY gp_art ASC; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) and famille_art='C2' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C207' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C207' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C207' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C207' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C207' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) and famille_art='C2' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C207' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) and famille_art='C2' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.gp_art='C201' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat from article_groups + where gp_art='C201' and famille_art='C2' and isactive=1 order by titre,article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C201' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) and famille_art='C1' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) and famille_art='C1' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&BLZ-KSB' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C131' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) and famille_art='C1' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&BLZ-KSB' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C131' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) and famille_art='C1' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='A4' group by gp_art) and famille_art='A4' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A4' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='A4' group by gp_art) and famille_art='A4' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A4' and ag.gp_art='A405' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat from article_groups + where gp_art='A405' and famille_art='A4' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A4' and gp_art='A405' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='A4' group by gp_art) and famille_art='A4' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A4' and ag.gp_art='A405' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='A4' group by gp_art) and famille_art='A4' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A4' and ag.gp_art='A401' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat from article_groups + where gp_art='A401' and famille_art='A4' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A4' and gp_art='A401' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A4') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='A4' group by gp_art) and famille_art='A4' ORDER BY gp_art ASC; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='A4' group by gp_art) and famille_art='A4' ORDER BY gp_art ASC; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='A4' group by gp_art) and famille_art='A4' ORDER BY gp_art ASC; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='A4' group by gp_art) and famille_art='A4' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A4' and ag.gp_art='A401' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A4' and ag.gp_art='A401' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A4' and ag.gp_art='A401' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A4' and ag.gp_art='A401' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A4' and ag.gp_art='A401' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) and famille_art='C6' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C6') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C6' group by gp_art) and famille_art='C6' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) and famille_art='C5' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) and famille_art='C5' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.gp_art='C523' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat from article_groups + where gp_art='C523' and famille_art='C5' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C5' and gp_art='C523' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) and famille_art='C5' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.gp_art='C523' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A4') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='A4' group by gp_art) and famille_art='A4' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A4' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='A1' group by gp_art) and famille_art='A1' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'D1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='D1' group by gp_art) and famille_art='D1' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='D1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='A2' group by gp_art) and famille_art='A2' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A2' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CLO-W/B1' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A2' and gp_art='A201' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='A2' group by gp_art) and famille_art='A2' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A2' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&BZF-RA/4' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A2' and gp_art='A200' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='A2' group by gp_art) and famille_art='A2' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A2' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CLO-RO/G' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A2' and gp_art='A200' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='A2' group by gp_art) and famille_art='A2' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A2' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='A2' group by gp_art) and famille_art='A2' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A2' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&BDP-SU' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A2' and gp_art='A209' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='A2' group by gp_art) and famille_art='A2' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A2' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&ASS-F' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A2' and gp_art='A210' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='A2' group by gp_art) and famille_art='A2' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A2' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&SAS-BU' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A2' and gp_art='A212' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='A2' group by gp_art) and famille_art='A2' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A2' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&SSW-SH/GK' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A2' and gp_art='A219' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='A2' group by gp_art) and famille_art='A2' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A2' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&SAS-SB/B1-60' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A2' and gp_art='A206' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='A2' group by gp_art) and famille_art='A2' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A2' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&SAS-SB/W1-60' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A2' and gp_art='A206' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='A2' group by gp_art) and famille_art='A2' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A2' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&SAS-SB/B1-40' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A2' and gp_art='A206' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='A2' group by gp_art) and famille_art='A2' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A2' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&SAS-SB/A1-40' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A2' and gp_art='A206' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='A2' group by gp_art) and famille_art='A2' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A2' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&ASS-AG/X' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A2' and gp_art='A203' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='A2' group by gp_art) and famille_art='A2' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A2' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&ASS-KZ/H' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A2' and gp_art='A202' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='A2' group by gp_art) and famille_art='A2' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A2' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&BZF-RA/4' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A2' and gp_art='A200' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='A2' group by gp_art) and famille_art='A2' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A2' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CLO-MZB3' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A2' and gp_art='A200' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='A2' group by gp_art) and famille_art='A2' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A2' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CLO-MZB4' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A2' and gp_art='A200' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='A2' group by gp_art) and famille_art='A2' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A2' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='A2' group by gp_art) and famille_art='A2' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A2' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C3' group by gp_art) and famille_art='C3' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C3' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='A1' group by gp_art) and famille_art='A1' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) and famille_art='C1' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='A2' group by gp_art) and famille_art='A2' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A2' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C7') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C7' group by gp_art) and famille_art='C7' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C7' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'A1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='A1' group by gp_art) and famille_art='A1' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) and famille_art='C1' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) and famille_art='C1' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&KBA-S' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C100' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) and famille_art='C1' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&KBA-V' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C100' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) and famille_art='C1' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&KBA-V-K' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C100' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) and famille_art='C1' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&KBA-O' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C100' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) and famille_art='C1' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&KBA-V Z' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C100' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) and famille_art='C1' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&QDB' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C101' and isactive=1) group by id,article_group,article order by article_group,article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&QDB' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C101' and isactive=1) group by id,article_group,article order by article_group,article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&BWA-B-H17' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C102' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) and famille_art='C1' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) and famille_art='C1' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&BWA-I-H17' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C102' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) and famille_art='C1' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) and famille_art='C1' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&KBA-W' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C100' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) and famille_art='C1' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&BWA-S2G' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C106' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) and famille_art='C1' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&BWA-SK2' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C106' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C1' group by gp_art) and famille_art='C1' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) and famille_art='C2' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&EGB-F/B' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C213' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) and famille_art='C2' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&LOB-F/D2-270' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C213' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) and famille_art='C2' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&RSY-C/G' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C214' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) and famille_art='C2' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'de') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = ''; +QUERY: SELECT * FROM content WHERE (linkname = 'de') OR (linkname = '') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'gallerys') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'gallerys'; +QUERY: SELECT * FROM content WHERE (linkname = 'gallerys') OR (linkname = '') OR (linkname = 'data') +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'de') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = ''; +QUERY: SELECT * FROM content WHERE (linkname = 'de') OR (linkname = '') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'gallerys') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'gallerys'; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT * FROM content WHERE (linkname = 'gallerys') OR (linkname = '') OR (linkname = 'data') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'about'; +QUERYARRAY: SELECT * FROM main_menu WHERE parentid = '2'; +QUERYARRAY: SELECT * FROM content WHERE linkname = 'about' +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'about'; +QUERYARRAY: SELECT * FROM main_menu WHERE parentid = '2'; +QUERYARRAY: SELECT * FROM content WHERE linkname = 'about' +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'about'; +QUERYARRAY: SELECT * FROM main_menu WHERE parentid = '2'; +QUERYARRAY: SELECT * FROM content WHERE linkname = 'about' +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'about'; +QUERYARRAY: SELECT * FROM main_menu WHERE parentid = '2'; +QUERYARRAY: SELECT * FROM content WHERE linkname = 'about' +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'about'; +QUERYARRAY: SELECT * FROM main_menu WHERE parentid = '2'; +QUERYARRAY: SELECT * FROM content WHERE linkname = 'about' +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'about'; +QUERYARRAY: SELECT * FROM main_menu WHERE parentid = '2'; +QUERYARRAY: SELECT * FROM content WHERE linkname = 'about' +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_de,keywords_de,desc_de FROM content WHERE (linkname = '2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'about'; +QUERYARRAY: SELECT * FROM main_menu WHERE parentid = '2'; +QUERYARRAY: SELECT * FROM content WHERE linkname = 'about' +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_en,keywords_en,desc_en FROM content WHERE (linkname = '2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'about'; +QUERYARRAY: SELECT * FROM main_menu WHERE parentid = '2'; +QUERYARRAY: SELECT * FROM content WHERE linkname = 'about' +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'about'; +QUERYARRAY: SELECT * FROM main_menu WHERE parentid = '2'; +QUERYARRAY: SELECT * FROM content WHERE linkname = 'about' +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_de,keywords_de,desc_de FROM content WHERE (linkname = '2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'about'; +QUERYARRAY: SELECT * FROM main_menu WHERE parentid = '2'; +QUERYARRAY: SELECT * FROM content WHERE linkname = 'about' +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_de,keywords_de,desc_de FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_de,ag.titre_de) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_de, position(' | ' in ag.titre_de)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_de,ag.titre_de,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_de,titre_fr) as titre,coalesce(description_de,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CON-LC-D' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A102' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='img' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_de,titre_fr) as titre,coalesce(description_de,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CNT-S...I2.04' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A104' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='img' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_de,titre_fr) as titre,coalesce(description_de,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CNT-S...I2.07' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A104' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '3') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.gp_art='img' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_de,keywords_de,desc_de FROM content WHERE (linkname = 'D1') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='D1' group by gp_art) and famille_art='D1' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_de,ag.titre_de) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_de, position(' | ' in ag.titre_de)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='D1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_de,ag.titre_de,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_de,keywords_de,desc_de FROM content WHERE (linkname = 'C2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C2' group by gp_art) and famille_art='C2' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_de,ag.titre_de) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_de, position(' | ' in ag.titre_de)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_de,ag.titre_de,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_de,keywords_de,desc_de FROM content WHERE (linkname = 'D2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='D2' group by gp_art) and famille_art='D2' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_de,ag.titre_de) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_de, position(' | ' in ag.titre_de)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='D2' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_de,ag.titre_de,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'D2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='D2' group by gp_art) and famille_art='D2' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='D2' and ag.gp_art='D203' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat from article_groups + where gp_art='D203' and famille_art='D2' and isactive=1 order by titre,article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='D2' and gp_art='D203' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'D2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='D2' group by gp_art) and famille_art='D2' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='D2' and ag.gp_art='D203' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'D2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='D2' group by gp_art) and famille_art='D2' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='D2' and ag.gp_art='D201' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat from article_groups + where gp_art='D201' and famille_art='D2' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='D2' and gp_art='D201' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'D2') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'D2') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'D2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='D2' group by gp_art) and famille_art='D2' ORDER BY gp_art ASC; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='D2' group by gp_art) and famille_art='D2' ORDER BY gp_art ASC; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='D2' group by gp_art) and famille_art='D2' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='D2' and ag.gp_art='D201' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='D2' and ag.gp_art='D201' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'D2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='D2' group by gp_art) and famille_art='D2' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='D2' and ag.gp_art='D201' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat from article_groups + where gp_art='D201' and famille_art='D2' and isactive=1 order by titre,article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='D2' and gp_art='D201' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'D2') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'D2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='D2' group by gp_art) and famille_art='D2' ORDER BY gp_art ASC; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='D2' group by gp_art) and famille_art='D2' ORDER BY gp_art ASC; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='D2' group by gp_art) and famille_art='D2' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='D2' and ag.gp_art='D201' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='D2' and ag.gp_art='D201' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='D2' and ag.gp_art='D201' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'D2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='D2' group by gp_art) and famille_art='D2' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='D2' and ag.gp_art='D201' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat from article_groups + where gp_art='D201' and famille_art='D2' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='D2' and gp_art='D201' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'D2') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'D2') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'D2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='D2' group by gp_art) and famille_art='D2' ORDER BY gp_art ASC; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='D2' group by gp_art) and famille_art='D2' ORDER BY gp_art ASC; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='D2' group by gp_art) and famille_art='D2' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='D2' and ag.gp_art='D201' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='D2' and ag.gp_art='D201' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='D2' and ag.gp_art='D201' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'D2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='D2' group by gp_art) and famille_art='D2' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='D2' and ag.gp_art='D201' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat from article_groups + where gp_art='D201' and famille_art='D2' and isactive=1 order by titre,article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='D2' and gp_art='D201' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'D2') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'D2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='D2' group by gp_art) and famille_art='D2' ORDER BY gp_art ASC; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='D2' group by gp_art) and famille_art='D2' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='D2' and ag.gp_art='D201' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='D2' and ag.gp_art='D201' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'D2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='D2' group by gp_art) and famille_art='D2' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='D2' and ag.gp_art='D201' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat from article_groups + where gp_art='D201' and famille_art='D2' and isactive=1 order by titre,article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='D2' and gp_art='D201' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'D2') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'D2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='D2' group by gp_art) and famille_art='D2' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='D2' and ag.gp_art='D201' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='D2' and ag.gp_art='D201' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='D2' and ag.gp_art='D201' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_de,keywords_de,desc_de FROM content WHERE (linkname = 'D2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='D2' group by gp_art) and famille_art='D2' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_de,ag.titre_de) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_de, position(' | ' in ag.titre_de)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='D2' and ag.gp_art='D201' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_de,ag.titre_de,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_de,titre_fr) as titre,coalesce(description_de,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat from article_groups + where gp_art='D201' and famille_art='D2' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='D2' and gp_art='D201' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'D2') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'D2') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'D2') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='D2' group by gp_art) and famille_art='D2' ORDER BY gp_art ASC; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='D2' group by gp_art) and famille_art='D2' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='D2' and ag.gp_art='D201' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='D2' and ag.gp_art='D201' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_de,keywords_de,desc_de FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) and famille_art='C5' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_de,ag.titre_de) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_de, position(' | ' in ag.titre_de)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_de,ag.titre_de,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_de,titre_fr) as titre,coalesce(description_de,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&ABS-WI' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C5' and gp_art='C500' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_de,keywords_de,desc_de FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) and famille_art='C5' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_de,ag.titre_de) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_de, position(' | ' in ag.titre_de)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_de,ag.titre_de,ag.article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = '') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'home'; +QUERYARRAY: SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6 +QUERYARRAY: SELECT * FROM productnews ORDER BY date DESC LIMIT 6 +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate,ag.imgversion,ag.fichebim ,ag.certificat + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6 +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERY: SELECT name_de,keywords_de,desc_de FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) and famille_art='C5' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_de,ag.titre_de) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_de, position(' | ' in ag.titre_de)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_de,ag.titre_de,ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_de,titre_fr) as titre,coalesce(description_de,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&ABS-WI' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C5' and gp_art='C500' and isactive=1) group by id,article_group,article order by article_group,article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_de,titre_fr) as titre,coalesce(description_de,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&ABS-WI' and isactive=1 order by titre,article; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C5' and gp_art='C500' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_de,keywords_de,desc_de FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) and famille_art='C5' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_de,ag.titre_de) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_de, position(' | ' in ag.titre_de)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_de,ag.titre_de,ag.article; +QUERY: SELECT name_de,keywords_de,desc_de FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) and famille_art='C5' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_de,ag.titre_de) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_de, position(' | ' in ag.titre_de)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.gp_art='C524' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_de,ag.titre_de,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_de,titre_fr) as titre,coalesce(description_de,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat from article_groups + where gp_art='C524' and famille_art='C5' and isactive=1 order by titre,article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C5' and gp_art='C524' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) and famille_art='C5' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.gp_art='C524' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.gp_art='C524' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.gp_art='C524' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_de,keywords_de,desc_de FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) and famille_art='C5' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_de,ag.titre_de) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_de, position(' | ' in ag.titre_de)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.gp_art='C524' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_de,ag.titre_de,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_de,titre_fr) as titre,coalesce(description_de,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat from article_groups + where gp_art='C524' and famille_art='C5' and isactive=1 order by titre,article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C5' and gp_art='C524' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) and famille_art='C5' ORDER BY gp_art ASC; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) and famille_art='C5' ORDER BY gp_art ASC; +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) and famille_art='C5' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.gp_art='C524' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.gp_art='C524' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.gp_art='C524' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: SELECT name_de,keywords_de,desc_de FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) and famille_art='C5' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_de,ag.titre_de) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_de, position(' | ' in ag.titre_de)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.gp_art='C524' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_de,ag.titre_de,ag.article; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_de,titre_fr) as titre,coalesce(description_de,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink,fichebim ,certificat from article_groups + where gp_art='C524' and famille_art='C5' and isactive=1 order by titre,article; +QUERY: select count(*) as cnt from order_articles where id_user='a4598487-1503-4bc3-be52-2ba096a6cd0a' and id_order is null and code_document='DPS' +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C5' and gp_art='C524' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERY: SELECT name_fr,keywords_fr,desc_fr FROM content WHERE (linkname = 'C5') OR (linkname = '') +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT * FROM slider WHERE page = 'product'; +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT famille_art,titre_fr FROM familles where famille_art in (select famille_art from articles where isactive='1' group by famille_art) ORDER BY famille_art ASC +QUERYARRAY: SELECT gp_art,titre_fr as titre FROM groupes where gp_art in (select gp_art from articles where isactive='1' and famille_art='C5' group by gp_art) and famille_art='C5' ORDER BY gp_art ASC; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.gp_art='C524' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.gp_art='C524' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr,ag.fichetechnique,ag.brochure,ag.noticemontage,ag.videolink,ag.imgversion,ag.fichebim ,ag.certificat from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.gp_art='C524' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; diff --git a/public_html/pages/askprice.php b/public_html/pages/askprice.php index f5a5f12..af88d65 100644 --- a/public_html/pages/askprice.php +++ b/public_html/pages/askprice.php @@ -21,11 +21,11 @@
-
+
-
+
diff --git a/public_html/pages/product.php b/public_html/pages/product.php index 4212a57..9b59a6a 100644 --- a/public_html/pages/product.php +++ b/public_html/pages/product.php @@ -4,8 +4,8 @@ $ag = new ArticleGroups($db,$cfg); ?>
-
 
- -
-
 
-
- +
+
+
+ queryarray($grabfrage); - $col = ""; + $col = "odd"; foreach($grp as $g) { - - ?> + if ($col == "odd"){ $col = "even"; } else{ $col = "odd"; } + ?>
" > +
+ + +
-
 
-
- getArticleGroupsByFamille($selfamille,$lang); - } else { - $testx = 2; - $agroups = $ag->getArticleGroupsByFamilleAndGroup($selfamille,$pgrp,$lang); +// + getArticleGroupsByFamilleAndGroup($selfamille,$pgrp,$lang); + + ?> +
+ + +
+
+ +
+ + + + \ No newline at end of file diff --git a/public_html/pages/projects.php b/public_html/pages/projects.php index 727c07a..bccdedf 100644 --- a/public_html/pages/projects.php +++ b/public_html/pages/projects.php @@ -7,7 +7,7 @@ $content = $info['content_'.$lang.'']; echo '
- test + test

'.$info['title_'.$lang.''].'

'.$content.' . . .
diff --git a/public_html/pages/projects2.php b/public_html/pages/projects2.php new file mode 100644 index 0000000..7d84dbc --- /dev/null +++ b/public_html/pages/projects2.php @@ -0,0 +1,19 @@ +
+queryarray($abfrage); + foreach($result as $info) { + $content = $info['content_'.$lang.'']; + echo '
+
+ test +
+
+

'.$info['title_'.$lang.''].'

'.$content.' . . .
+
lire plus
+
'; + } + echo ''; + ?> +
\ No newline at end of file diff --git a/public_html/pages/sections/lastnews2.php b/public_html/pages/sections/lastnews2.php new file mode 100644 index 0000000..2fd8067 --- /dev/null +++ b/public_html/pages/sections/lastnews2.php @@ -0,0 +1,24 @@ +
+
+

Dernières nouvelles

+
+
+ queryarray("SELECT * FROM website_news ORDER BY publishdate DESC LIMIT 6"); + foreach($news as $n) { + $gallery = ((isset($info["catgallery"]))?$info["catgallery"]:null); + ?> +
+
+
+ " alt="" style="width: 100%;border:0;"> +
+
+

+ +
+
+
+ +
+
\ No newline at end of file diff --git a/public_html/pages/sections/lastprojects2.php b/public_html/pages/sections/lastprojects2.php new file mode 100644 index 0000000..996260a --- /dev/null +++ b/public_html/pages/sections/lastprojects2.php @@ -0,0 +1,28 @@ +
+
+

Derniers projets

+
+
+ + queryarray("SELECT * FROM website_projects ORDER BY publishdate DESC LIMIT 6"); + + foreach ($projects as $prj) { + ?> +
+ " style="100%;max-height: 150px; overflow-y: hidden;" alt=""> + +
+ +
diff --git a/public_html/pages/sections/mobileapps2.php b/public_html/pages/sections/mobileapps2.php new file mode 100644 index 0000000..c1c8e3b --- /dev/null +++ b/public_html/pages/sections/mobileapps2.php @@ -0,0 +1,13 @@ + diff --git a/public_html/pages/sections/newproducts2.php b/public_html/pages/sections/newproducts2.php new file mode 100644 index 0000000..d12f73b --- /dev/null +++ b/public_html/pages/sections/newproducts2.php @@ -0,0 +1,10 @@ +
+
+

Nouveaux produits

+
+
+ +
+
\ No newline at end of file diff --git a/public_html/pages/sections/productnews2.php b/public_html/pages/sections/productnews2.php new file mode 100644 index 0000000..9915d47 --- /dev/null +++ b/public_html/pages/sections/productnews2.php @@ -0,0 +1,29 @@ +
+
+

Product news

+
+
+queryarray("SELECT * FROM productnews ORDER BY date DESC LIMIT 6"); + foreach($result as $info) { + $gallery = ((isset($info["catgallery"]))?$info["catgallery"]:null); + + list($width, $height, $type, $attr) = getimagesize('data/gallerys/content/news/crop_'.$info['picture']); + ?> +
+
+
+ data/gallerys/content/news/crop_" style="width: 100%;" alt="" > + +
+
+

+ ...

+ ">Lire plus... +
+
+ +
+ +
+
\ No newline at end of file diff --git a/public_html/shop/.htaccess b/public_html/shop/.htaccess index daa286b..17d4256 100644 --- a/public_html/shop/.htaccess +++ b/public_html/shop/.htaccess @@ -8,6 +8,8 @@ php_value post_max_size 128M php_value upload_max_filesize 128M RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d + + RewriteRule "^(.*)$" "index.php" [NC,L,QSA] # AuthUserFile "/usr/www/users/qubewv/api/.htpasswd" # AuthName "Realm" diff --git a/public_html/shop/css/theme.css b/public_html/shop/css/theme.css index 99cb877..c2199ab 100644 --- a/public_html/shop/css/theme.css +++ b/public_html/shop/css/theme.css @@ -253,7 +253,7 @@ hr{border:0;border-top:1px solid #eee;margin:20px 0} .theme {color:#fff !important; background-color:#6a92d3 !important} .text-theme {color:#6a92d3 !important} .border-theme {border-color:#6a92d3 !important} -.color-qube {color: #245caa} +.color-qube {color: rgb(36, 92, 170)} .bg-qube {background-color: #245caa} .hover-theme:hover {color:#fff !important; background-color:#6a92d3 !important} .hover-text-theme:hover {color:#6a92d3 !important} @@ -910,32 +910,7 @@ span[class^="icon-inline"]::after { float: right; } -#loader { - position: absolute; - left: 50%; - top: 50%; - z-index: 1; - width: 150px; - height: 150px; - margin: -75px 0 0 -75px; - border: 16px solid #f3f3f3; - border-radius: 50%; - border-top: 16px solid #3498db; - width: 120px; - height: 120px; - -webkit-animation: spin 2s linear infinite; - animation: spin 2s linear infinite; -} -@-webkit-keyframes spin { - 0% { -webkit-transform: rotate(0deg); } - 100% { -webkit-transform: rotate(360deg); } -} - -@keyframes spin { - 0% { transform: rotate(0deg); } - 100% { transform: rotate(360deg); } -} .tlbicon { font-size: 16px; @@ -1006,3 +981,45 @@ button.blue-grey { @media(max-width:992px){ .artlbldata { width: 80px!important; }} @media(max-width:600px){ .sitelogo { height: 30px;} .artlbldata { width: 65px!important; }.rest { width: 80%;}} + +.loader, +.loader:after { + border-radius: 50%; + width: 10em; + height: 10em; +} +.loader { + margin: auto 60px ; + font-size: 10px; + position: relative; + text-indent: -9999em; + border-top: 1.1em solid rgba(119,117,234, 0.2); + border-right: 1.1em solid rgba(119,117,234, 0.2); + border-bottom: 1.1em solid rgba(119,117,234, 0.2); + border-left: 1.1em solid #7775ea; + -webkit-transform: translateZ(0); + -ms-transform: translateZ(0); + transform: translateZ(0); + -webkit-animation: load8 1.1s infinite linear; + animation: load8 1.1s infinite linear; +} +@-webkit-keyframes load8 { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); + } +} +@keyframes load8 { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); + } +} diff --git a/public_html/shop/lib/config.php b/public_html/shop/lib/config.php index 6b343b8..1e6a286 100644 --- a/public_html/shop/lib/config.php +++ b/public_html/shop/lib/config.php @@ -5,32 +5,14 @@ "cookie" => "qubeshop", "lang" => "fr", "debug" => 0, - // "db"=> array( - // "type" => "mysql", - // "host" => "dedi1781.your-server.de", - // "dbname" => "qubewv_db3", - // "user" => "qubewv_db3", - // "password" => "rhNpYMtXch1Lx6RQ", - // "prefix" => "wiges", - // ), - // "mail" => array( - // "from" => "newsletter@qube-concretec.eu", - // "server" => "mail.mbox.lu", - // "login" => "newsletter@qube-concretec.eu", - // "password" => "Bicrodunit721", - // "port" => 587, - // "encrpytion" => "tls", - // "debug" => 0 - // ), - "ordersemail" => "ksaffran@dks.lu", "mail" => array( - "from" => "webmaster@dks.lu", - "server" => "mail.your-server.de", - "login" => "ksaffran@dks.lu", - "password" => "FB1ia1ka", + "from" => "newsletter@qube-concretec.eu", + "server" => "mail.mbox.lu", + "login" => "newsletter@qube-concretec.eu", + "password" => "Bicrodunit721", "port" => 587, "encrpytion" => "tls", - "debug" => 1 + "debug" => 0 ), "db"=> array( "type" => "mysql", diff --git a/public_html/shop/lib/lang/en.php b/public_html/shop/lib/lang/en.php new file mode 100644 index 0000000..df3af6e --- /dev/null +++ b/public_html/shop/lib/lang/en.php @@ -0,0 +1,122 @@ + "Cette page n'existe pas!", + "search" => "rechercher", + "category" => "Catégorie", + "cancel" => "Abondonner", + "save" => "Sauvegarder", + "ok" => "OK", + "close" => "Fermer", + "groupname" => "Groupe", + "filter" => "filtrer...", + "clientaccess" => "Accès Shop", + "username" => "Login/E-Mail", + "password" => "mot de passe", + "forgotpassword" => "mot de passe oublié?", + "login" => "se connecter", + "newpassword" => "Nouveau mot de passe", + "newpwd" => "Mot de passe", + "retypepassword" => "Reperter mot de passe", + "norobot" => "je suis pas un robot!", + "asknewpassword" => "Demander nouveau mot de passe!", + "retypepwd" => "répéter mot de passe", + "fillcorrect" => "S.V.P! Entrez dans tous les champs des données valides!", + "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 adresse e-mail!", + "emailinvalid" => "inserez un email valide s.v.p.!", + "usernamechange" => "Changer adresse email / Login", + "newusername" => "adresse email", + "invoiceaddress" => "adresse de facturation", + "deliveryaddress" => "adresse de livraison", + "constructionsite_phone" => "Chantier GSM", + "constructionsite_contact" => "Chantier Nom Contact", + "constructionsite_note" => "Remarque Chantier", + "prefereddeliverydate" => "Date de livraison préférée", + "askpricetype" => "Demande de prix pour ...", + "message" => "message supplémentaire", + "clientaddress" => "Adresse client", + "numbondecommande" => "No. 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" => "Adresse", + "zip" => "Code postale", + "city" => "Ville", + "country" => "Pays", + "novat" => "Numero de TVA internationale", + "register" => "envoyer la demande", + "documents" => "Documents", + "unitprice" => "Prix unit.", + "quantity" => "Quantité", + "stock" => "Stock", + "doc_brpr" => "Brochure principale", + "doc_fite" => "Fiche technique", + "doc_nomo" => "Notice de montage", + "phone" => "Téléphone", + "msgpwd" => "Renforcer la sécurité du mot de passe ou changer votre mot de passe", + "lblchpwd" => "CHANGER MOT DE PASSE", + "msgccc" => "Contrat Cadre qui a été négociée individuellement pour votre entreprise", + "lblccc" => "VOIR LES PRODUITS", + "msgorders" => "Les commandes que vous avez envoyés via le shop en ligne

", + "lblorders" => "VOIR MES COMMANDES", + "video" => "Video", + "noarticles" => "produits sur demande", + "basket" => "Panier", + "shop" => "Shop", + "cleanbasket" => "vider", + "coodinates" => "Mes Coordonnées", + "seladdress" => "Sélection Adresse", + "simplepriceoffer" => "Simple Information Prix", + "forcc" => "Pour Contrat Cadre", + "articles" => "Articles", + "emptybasket" => "Panier vide", + "sendquestion" => "Envoyer la demande", + "sendorder" => "Envoyer la Commande", + "profile" => "Profile", + "ccadre" => "Contrat Cadre", + "selectcc" => "Selection Contrat Carde", + "deliveryorders" => "Commandes en livraison", + "favorites" => "Favorites", + "invoices" => "Factures", + "currentorders" => "Commandes en cours", + "privacy" => "Protection des données", + "account" => "Mon Compte", + "login" => "Login/Email", + "companies" => "Entreprise(s)", + "myorders" => "Mes Commandes", + "lblcatalogs" => "Brochures", + "lblnews" => "News - Info", + "msgprivacy" => "Voir comment vos données sont utilisées", + "msgnews" => "Dernières informations et actualités de Qube", + "msgcatalogs" => "Vous trouverez ici les catalogues et brochures actuels", + "linkcatlogs" => "VOIR LES CATALOGUES", + "linkprivacy" => "MONTRER LE DOCUMENT", + "linknews" => "MONTRER LES NOUVEAUTÉS", + "priceondemand" => "prix sur demande", + "newproducts" => "Nouveaux Produits", + "mnugroupes" => "Groupes", + "mnuhome" => "Home", + "mnulogout" => "Logout", + "mnuaccount" => "Compte", + "mnuccadre" => "C. Cadre", + "mnuaskprice" => "Prix ?", + "mnubasket" => "Panier", + "mnufav" => "Fav.", + "order" => "Commande", + "askprice" => "Demande de Prix", + "connect" => "Connecter", + "language" => "Langue", + "de" => "deutsch", + "fr" => "français" +); +?> \ No newline at end of file diff --git a/public_html/shop/lib/modules/Api.php b/public_html/shop/lib/modules/Api.php index 6611693..090f7bb 100644 --- a/public_html/shop/lib/modules/Api.php +++ b/public_html/shop/lib/modules/Api.php @@ -15,12 +15,19 @@ class Api{ private function exec_curl($table,$data,$fields=null,$search=true){ //echo $this->cfg["api"]["logpath"]."/".$this->cfg["cdate"]."_curl.log"."\n"; $result = array(); - file_put_contents($this->cfg["api"]["logpath"]."/".$this->cfg["cdate"]."_curl.log","send ".print_r($data,true)."\n",FILE_APPEND); + file_put_contents("log/".$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; + if ($search == true){ + $newdata = array("where"=> $data); + if ($fields){ + $newdata["fields"] = $fields; + } + }else { + $newdata = $data; } + + + file_put_contents("log/".$this->cfg["cdate"]."_curl.log","send newdata:\n".print_r($newdata,true)."\n---\n",FILE_APPEND); //error_log("sending to ".$this->cfg["htxurl"]." -> ".$data); try { $curlconn = curl_init(); @@ -39,20 +46,23 @@ class Api{ if ($search==false){ $url = str_replace("/search","",$url); } - + file_put_contents("log/".$this->cfg["cdate"]."_curl.log",json_encode( $newdata),FILE_APPEND); curl_setopt($curlconn, CURLOPT_URL, $url); curl_setopt($curlconn, CURLOPT_POSTFIELDS,json_encode( $newdata)); curl_setopt($curlconn, CURLOPT_VERBOSE, 0); //curl_setopt($curlconn, CURLOPT_STDERR, $fp); - $result = curl_exec($curlconn); - file_put_contents($this->cfg["api"]["logpath"]."/".$this->cfg["cdate"]."_curl.log","get: ".$result."\n",FILE_APPEND); + //if ($search == true){ + $result = curl_exec($curlconn); + //} + + file_put_contents("log/".$this->cfg["cdate"]."_curl.log","get: ".$result."\n",FILE_APPEND); if (curl_errno($curlconn)){ - file_put_contents($this->cfg["api"]["logpath"]."/".$this->cfg["cdate"]."_curl.log",'Curl Error:'.curl_error($curlconn)."\n",FILE_APPEND); + file_put_contents("log/".$this->cfg["cdate"]."_curl.log",'Curl Error:'.curl_error($curlconn)."\n",FILE_APPEND); return null; } } catch(Exception $e){ - file_put_contents($this->cfg["api"]["logpath"]."/".$this->cfg["cdate"]."_curl.log","CURL init Error : ".$e->getMessage()."\n",FILE_APPEND); + file_put_contents("log/".$this->cfg["cdate"]."_curl.log","CURL init Error : ".$e->getMessage()."\n",FILE_APPEND); return array("error" => "curl API-Error"); } return json_decode($result); @@ -145,22 +155,25 @@ class Api{ return $ret; } - public function createAskPrice($id_order,$idclient,$adr_liv,$comment){ + public function createAskPrice($id_order,$idclient,$adr_client,$adr_liv,$comment){ if (!isset($idclient)){ return array("error" => "no id_client");} if (!isset($id_order)){ return array("error" => "no id_order");} - $ret = $this->exec_curl("w_ventes",array("document" => 'DPS',"client" => $idclient,"adresse_livraison" => $adr_liv,"commentaire" => $comment), null,false); - if (isset($ret["no_document"])){ - $this->dbh->exec("UPDATE orders set wiges_no_document='".$ret["no_document"]."',status='transfered' where id='".$id_order."';"); - $this->dbh->exec("UPDATE orders_articles set wiges_no_document='".$ret["no_document"]."' where id_order='".$id_order."';"); + $ret = $this->exec_curl("w_ventes",array("document" => 'DPS',"client" => $idclient,"adresse_client" => $adr_client,"adresse_livraison" => $adr_liv,"commentaire" => $comment), null,false); + + if (isset($ret->no_document)){ + $this->dbh->exec("UPDATE orders set wiges_no_document='".$ret->no_document."',status='transfered' where id='".$id_order."' and id_client='".$idclient."';"); + $this->dbh->exec("UPDATE order_articles set wiges_no_document='".$ret->no_document."' where id_order='".$id_order."';"); } return $ret; } public function addAskPricePosition($id_articleorder,$nodocument,$article,$qte_unitaire,$comment){ - if ((!isset($idclient)) || (!isset($article)) || (!isset($qte_unitaire))){ return false;} - $ret = $this->exec_curl("w_ventes_pos",array("no_document" => $no_document,"article" => $article,"qte_unitaire" => $qte_unitaire,"commentaire_pos" => $comment), null,false); - if (isset($ret["no_position"])){ - $this->dbh->exec("UPDATE order_articles SET no_position='".$ret["no_position"]."' where id='".$id_articleorder."';"); + //if (!isset($article)){ return false;} + //file_put_contents("log/apireturn.log","in:"."$id_articleorder-:-$nodocument-:-$comment-:-$article"."\n",FILE_APPEND); + $ret = $this->exec_curl("w_ventes_pos",array("document"=>"DPS","no_document" => $nodocument,"article" => $article,"commentaire_pos" => $comment), null,false); + //file_put_contents("log/apireturn.log","ret:".print_r($ret,true)."\n",FILE_APPEND); + if (isset($ret->no_position)){ + $this->dbh->exec("UPDATE order_articles SET no_position='".$ret->no_position."' where id='".$id_articleorder."';"); } return $ret; } diff --git a/public_html/shop/lib/modules/ArticleGroups.php b/public_html/shop/lib/modules/ArticleGroups.php index 54f2beb..d7c0339 100644 --- a/public_html/shop/lib/modules/ArticleGroups.php +++ b/public_html/shop/lib/modules/ArticleGroups.php @@ -14,13 +14,16 @@ class ArticleGroups{ public function getPublishedGroups($lang){ if (!$lang){ $lang=$this->cfg["lang"];} - return $this->dbh->queryarray("select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_".$lang.",fm.titre_".$this->cfg["lang"].") as famille,ar.gp_art,coalesce(gr.titre_".$lang.",gr.titre_".$this->cfg["lang"].") as groupe - from article_groups ar - left join groupes gr on (ar.gp_art=gr.gp_art ) - left join familles fm on (ar.famille_art=fm.famille_art) - where ar.isactive=1 + $sql = "elect ar.gp_art as id,ar.famille_art,coalesce(fm.titre_".$lang.",fm.titre_".$this->cfg["lang"].") as famille,ar.gp_art,coalesce(gr.titre_".$lang.",gr.titre_".$this->cfg["lang"].") as groupe + from articles ar + join article_groups ag on (ar.article_group=ag.article) + join groupes gr on (ar.gp_art=gr.gp_art ) + join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 and ag.isactive =1 group by ar.famille_art,ar.gp_art - order by ar.famille_art,ar.gp_art ASC;"); + order by ar.famille_art,ar.gp_art ASC;"; + + return $this->dbh->queryarray($sql); } public function getArticleGroupsByFamille($famille,$lang){ diff --git a/public_html/shop/lib/modules/Orders.php b/public_html/shop/lib/modules/Orders.php index 9fbd83b..a5efe42 100644 --- a/public_html/shop/lib/modules/Orders.php +++ b/public_html/shop/lib/modules/Orders.php @@ -93,8 +93,7 @@ class Orders { public function publicSendAskPrice($id_user,$data){ $nid = $this->dbh->newuuid(); - error_log(print_r($data,true)); - + //error_log(print_r($data,true)); $adr = $this->dbh->securetext($data["name"]."\n".$data["address"]."\n".$data["zip"]." ".$data["city"]."\n".$data["country"]); $msg = $this->dbh->securetext("Contact:\n".$data["contact"].'\n'.$data["phone"].'\n'.$data["email"]."\n".$adr."\n\nMessage:\n\n".$data["message"]); @@ -102,45 +101,49 @@ class Orders { $this->dbh->exec($sql); $this->dbh->exec("update order_articles set id_order='".$nid."' where id_user='".$this->dbh->securetext($id_user)."' and id_order is null and code_document='DPS'"); - //$api = new Api($this->dbh,$this->cfg); - - $adrliv = $data["name"]."\n".$data["address"]."\n".$data["country"].'-'.$data["zip"]." ".$data["city"]; - $comment = "Adresse:\n".$adrliv."\n\nContact:\n".$data["contact"].'\n'.$data["phone"].'\n'.$data["email"]."\n\nMessage:\n".$data["message"]; - $cap = array("no_document" => "XX"); - //$cap = $api->createAskPrice($nid,'10000',$adrliv,$comment); + $api = new Api($this->dbh,$this->cfg); - $eml = new Email($this->dbh,$this->cfg); - $htmlbody = "Bonjour,
une nouvelle Demande de prix et à été chargé en Wiges:

"; - $htmlbody .= ""; - $htmlbody .= ""; - $htmlbody .= ""; - $htmlbody .= ""; - $htmlbody .= ""; - $htmlbody .= ""; - $htmlbody .= ""; - // $htmlbody .= ""; - $htmlbody .= "
Entreprise".$data["name"]."
Adresse".$data["address"]."
".$data["zip"]." ".$data["city"]."
".$data["country"]."
Contact".$data["contact"]."
Téléphone".$data["phone"]."
E-Mail".$data["email"]."
Message".$data["message"]."
Wiges No Document".$cap["no_document"]."
;"; - $htmlbody .= "

Produits

"; - $htmlbody .= ""; - - $prsql = "select oa.id,ar.article_group,ag.titre_fr ,ar.article,oa.comment from articles ar + $adrclient = $data["name"]."\n".$data["address"]."\n".$data["country"].'-'.$data["zip"]." ".$data["city"]; + $comment = $data["message"]; + $adrliv = $data["contact"].'\n'.$data["phone"].'\n'.$data["email"]; + // $cap = array(); + // $cap->no_document = "YY"; + // array("no_document" => "XX"); + $cap = $api->createAskPrice($nid,'10000',$adrclient,$adrliv,$comment); + file_put_contents("log/apireturn.log",print_r($cap,true),FILE_APPEND); + $prsql = "select oa.id,ar.article_group,ag.titre_fr,ar.article,oa.comment from articles ar join article_groups ag on (ar.article_group=ag.article) join order_articles oa on (ar.article=oa.article) where oa.id_order='".$nid."' group by ar.article_group,ar.article;"; + //file_put_contents("log/apireturn.log",$prsql."\n",FILE_APPEND); + $pdata = $this->dbh->queryarray($prsql); - $strartg = ""; - foreach ($pdata as $p){ - if ($p->article_group != $strartg){ - $htmlbody .= ""; - } - //$capos = $api->addAskPricePosition($cap["no_document"],$p->article,1,$p->comment); - //if ($capos["no_position"]){ - $htmlbody .= ""; - //} + file_put_contents("log/apireturn.log",print_r($pdata,true)."\n",FILE_APPEND); + $nodoc = $cap->no_document; + $xarts = ""; + for($i=0;$i".$nodoc."->ndoc:"."\n",FILE_APPEND); + file_put_contents("log/apireturn.log","i:$i->".print_r($pdata[$i],true)."\n",FILE_APPEND); + $xarts .= $pdata[$i]["article"].(($pdata[$i]["comment"]!=null)?":".$pdata[$i]["comment"]:"")."\n"; + $capos = $api->addAskPricePosition($pdata[$i]["id"],$nodoc,$pdata[$i]["article"],1,$pdata[$i]["comment"]); + file_put_contents("log/apireturn.log",print_r($capos,true)."\n",FILE_APPEND); } - $htmlbody .= "
#".$p->article_group."".$p->titre_fr."
".$capos["no_position"]."".$p->article."".$p->comment."
"; + $eml = new Email($this->dbh,$this->cfg); + $altbody = "Nouvelle Demande de Prix via Site! - $eml->sendEmail($this->cfg["mail"]["from"],$this->cfg["ordersemail"],null,null,"Qube-Shop Public - Demande de Prix - Document RSS ".$cap["no_document"],$htmlbody,null,null); + Document no: $nodoc + -- + $adrclient + -- + $adrliv + -- + Commentaire: $comment + -- + Articles: + $xarts + "; + $htmlbody = str_replace("\n","
",$altbody); + $eml->sendEmail($this->cfg["mail"]["from"],"team.qube@qube-group.eu",null,null,"Demande de Prix via Site - Document No ".$nodoc,$htmlbody,$altbody,null); return 1; } } diff --git a/public_html/shop/lib/modules/Site.php b/public_html/shop/lib/modules/Site.php index 0462d6f..3680366 100644 --- a/public_html/shop/lib/modules/Site.php +++ b/public_html/shop/lib/modules/Site.php @@ -34,38 +34,38 @@ class Site{