-- ----------------------------- -- Export de la base 123ventes au 2025-08-29 14:59 -- ----------------------------- -- Structure de la table `cacouleur` DROP TABLE IF EXISTS `cacouleur`; CREATE TABLE `cacouleur` ( `numCoul` int(3) NOT NULL AUTO_INCREMENT, `idCoul` int(3) NOT NULL, `idLg` varchar(3) NOT NULL, `libelle` varchar(100) NOT NULL, PRIMARY KEY (`numCoul`), KEY `id` (`idCoul`) ) ENGINE=MyISAM AUTO_INCREMENT=147 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; -- Données de la table `cacouleur` INSERT INTO `cacouleur` VALUES ('40', '0', 'FRA', 'Aucune'); INSERT INTO `cacouleur` VALUES ('41', '2', 'FRA', 'Bleu clair'); INSERT INTO `cacouleur` VALUES ('42', '3', 'FRA', 'Rouge clair'); INSERT INTO `cacouleur` VALUES ('43', '1', 'FRA', 'Vert foncé'); INSERT INTO `cacouleur` VALUES ('44', '4', 'FRA', 'Rouge ecarlate'); INSERT INTO `cacouleur` VALUES ('45', '5', 'FRA', 'Multi-couleur'); INSERT INTO `cacouleur` VALUES ('46', '6', 'FRA', 'Jaune'); INSERT INTO `cacouleur` VALUES ('47', '7', 'FRA', 'Orange'); INSERT INTO `cacouleur` VALUES ('48', '8', 'FRA', 'Blanc'); INSERT INTO `cacouleur` VALUES ('49', '9', 'FRA', 'Noir'); INSERT INTO `cacouleur` VALUES ('50', '10', 'FRA', 'Vert clair'); INSERT INTO `cacouleur` VALUES ('51', '11', 'FRA', 'Vert écarlate'); INSERT INTO `cacouleur` VALUES ('52', '13', 'FRA', 'Terre'); INSERT INTO `cacouleur` VALUES ('53', '14', 'FRA', 'Bleu'); INSERT INTO `cacouleur` VALUES ('54', '15', 'FRA', 'Chrome'); INSERT INTO `cacouleur` VALUES ('55', '16', 'FRA', 'Violet'); INSERT INTO `cacouleur` VALUES ('56', '17', 'FRA', 'Gris'); INSERT INTO `cacouleur` VALUES ('57', '0', 'ITA', 'Nessuno'); INSERT INTO `cacouleur` VALUES ('58', '2', 'ITA', 'Azzurro'); INSERT INTO `cacouleur` VALUES ('59', '3', 'ITA', 'Rosso chiaro'); INSERT INTO `cacouleur` VALUES ('60', '1', 'ITA', 'Verde scuro'); INSERT INTO `cacouleur` VALUES ('61', '4', 'ITA', 'Rosso scarlatto'); INSERT INTO `cacouleur` VALUES ('62', '5', 'ITA', 'Multicolore'); INSERT INTO `cacouleur` VALUES ('63', '6', 'ITA', 'Giallo'); INSERT INTO `cacouleur` VALUES ('64', '7', 'ITA', 'Arancione'); INSERT INTO `cacouleur` VALUES ('65', '8', 'ITA', 'Bianco'); INSERT INTO `cacouleur` VALUES ('66', '9', 'ITA', 'Nero'); INSERT INTO `cacouleur` VALUES ('67', '10', 'ITA', 'Verde chiaro'); INSERT INTO `cacouleur` VALUES ('68', '11', 'ITA', 'Verde scarlatto'); INSERT INTO `cacouleur` VALUES ('69', '13', 'ITA', 'Terra'); INSERT INTO `cacouleur` VALUES ('70', '14', 'ITA', 'Blu'); INSERT INTO `cacouleur` VALUES ('71', '15', 'ITA', 'Cromo'); INSERT INTO `cacouleur` VALUES ('72', '16', 'ITA', 'Viola'); INSERT INTO `cacouleur` VALUES ('73', '17', 'ITA', 'Grigio'); INSERT INTO `cacouleur` VALUES ('74', '0', 'ESP', 'Ninguno'); INSERT INTO `cacouleur` VALUES ('75', '2', 'ESP', 'Azul claro'); INSERT INTO `cacouleur` VALUES ('76', '3', 'ESP', 'Rojo claro'); INSERT INTO `cacouleur` VALUES ('77', '1', 'ESP', 'Verde oscuro'); INSERT INTO `cacouleur` VALUES ('78', '4', 'ESP', 'Rojo escarlata'); INSERT INTO `cacouleur` VALUES ('79', '5', 'ESP', 'Multicolor'); INSERT INTO `cacouleur` VALUES ('80', '6', 'ESP', 'Amarillo'); INSERT INTO `cacouleur` VALUES ('81', '7', 'ESP', 'Naranja'); INSERT INTO `cacouleur` VALUES ('82', '8', 'ESP', 'Blanco'); INSERT INTO `cacouleur` VALUES ('83', '9', 'ESP', 'Negro'); INSERT INTO `cacouleur` VALUES ('84', '10', 'ESP', 'Verde claro'); INSERT INTO `cacouleur` VALUES ('85', '11', 'ESP', 'Verde escarlata'); INSERT INTO `cacouleur` VALUES ('86', '13', 'ESP', 'Tierra'); INSERT INTO `cacouleur` VALUES ('87', '14', 'ESP', 'Azul'); INSERT INTO `cacouleur` VALUES ('88', '15', 'ESP', 'Cromo'); INSERT INTO `cacouleur` VALUES ('89', '16', 'ENG', 'Púrpura'); INSERT INTO `cacouleur` VALUES ('90', '17', 'ESP', 'Gris'); INSERT INTO `cacouleur` VALUES ('91', '0', 'DEU', 'Keine'); INSERT INTO `cacouleur` VALUES ('92', '2', 'DEU', 'Hellblau'); INSERT INTO `cacouleur` VALUES ('93', '3', 'DEU', 'Hellrot'); INSERT INTO `cacouleur` VALUES ('94', '1', 'DEU', 'Dunkelgrün'); INSERT INTO `cacouleur` VALUES ('95', '4', 'DEU', 'Scharlachrot'); INSERT INTO `cacouleur` VALUES ('96', '5', 'DEU', 'Mehrfarbig'); INSERT INTO `cacouleur` VALUES ('97', '6', 'DEU', 'Gelb'); INSERT INTO `cacouleur` VALUES ('98', '7', 'DEU', 'Orange'); INSERT INTO `cacouleur` VALUES ('99', '8', 'ENG', 'Weiß'); INSERT INTO `cacouleur` VALUES ('100', '9', 'ENG', 'Schwarz'); INSERT INTO `cacouleur` VALUES ('101', '10', 'DEU', 'Hellgrün'); INSERT INTO `cacouleur` VALUES ('102', '11', 'DEU', 'Scharlachrot'); INSERT INTO `cacouleur` VALUES ('103', '13', 'ENG', 'Erde'); INSERT INTO `cacouleur` VALUES ('104', '14', 'ENG', 'Blau'); INSERT INTO `cacouleur` VALUES ('105', '15', 'DEU', 'Chrom'); INSERT INTO `cacouleur` VALUES ('106', '16', 'ENG', 'Lila'); INSERT INTO `cacouleur` VALUES ('107', '17', 'DEU', 'Grau'); INSERT INTO `cacouleur` VALUES ('108', '0', 'ENG', 'None'); INSERT INTO `cacouleur` VALUES ('109', '2', 'ENG', 'Light Blue'); INSERT INTO `cacouleur` VALUES ('110', '3', 'ENG', 'Light red'); INSERT INTO `cacouleur` VALUES ('111', '1', 'ENG', 'Dark green'); INSERT INTO `cacouleur` VALUES ('112', '4', 'ENG', 'Scarlet Red'); INSERT INTO `cacouleur` VALUES ('113', '5', 'ENG', 'Multi-color'); INSERT INTO `cacouleur` VALUES ('114', '6', 'ENG', 'Yellow'); INSERT INTO `cacouleur` VALUES ('115', '7', 'ENG', 'Orange'); INSERT INTO `cacouleur` VALUES ('116', '8', 'ENG', 'White'); INSERT INTO `cacouleur` VALUES ('117', '9', 'ENG', 'Black'); INSERT INTO `cacouleur` VALUES ('118', '10', 'ENG', 'Light Green'); INSERT INTO `cacouleur` VALUES ('119', '11', 'ENG', 'Scarlet Green'); INSERT INTO `cacouleur` VALUES ('120', '13', 'ENG', 'Earth'); INSERT INTO `cacouleur` VALUES ('121', '14', 'ENG', 'Blue'); INSERT INTO `cacouleur` VALUES ('122', '15', 'ENG', 'Chrome'); INSERT INTO `cacouleur` VALUES ('123', '16', 'ENG', 'Purple'); INSERT INTO `cacouleur` VALUES ('124', '17', 'ENG', 'Gray'); INSERT INTO `cacouleur` VALUES ('125', '18', 'FRA', 'marron'); INSERT INTO `cacouleur` VALUES ('126', '18', 'ENG', 'brown'); INSERT INTO `cacouleur` VALUES ('127', '18', 'ITA', 'Marrone'); INSERT INTO `cacouleur` VALUES ('128', '18', 'ESP', 'Castaño'); INSERT INTO `cacouleur` VALUES ('129', '18', 'DEU', 'Castaño'); INSERT INTO `cacouleur` VALUES ('130', '19', 'FRA', 'vert fluo'); INSERT INTO `cacouleur` VALUES ('131', '19', 'ENG', 'green fluo'); INSERT INTO `cacouleur` VALUES ('132', '1', 'FRA', 'Beige clair'); INSERT INTO `cacouleur` VALUES ('133', '1', 'ENG', 'Beige clair'); INSERT INTO `cacouleur` VALUES ('134', '1', 'ITA', 'Beige clair'); INSERT INTO `cacouleur` VALUES ('135', '1', 'ESP', 'Beige clair'); INSERT INTO `cacouleur` VALUES ('136', '1', 'DEU', 'Beige clair'); INSERT INTO `cacouleur` VALUES ('137', '3', 'FRA', 'orange clair'); INSERT INTO `cacouleur` VALUES ('138', '3', 'ENG', 'orange clair'); INSERT INTO `cacouleur` VALUES ('139', '3', 'ITA', 'orange clair'); INSERT INTO `cacouleur` VALUES ('140', '3', 'ESP', 'orange clair'); INSERT INTO `cacouleur` VALUES ('141', '3', 'DEU', 'orange clair'); INSERT INTO `cacouleur` VALUES ('142', '3', 'FRA', 'abricot'); INSERT INTO `cacouleur` VALUES ('143', '3', 'ENG', 'abricot'); INSERT INTO `cacouleur` VALUES ('144', '3', 'ITA', 'abricot'); INSERT INTO `cacouleur` VALUES ('145', '3', 'ESP', 'abricot'); INSERT INTO `cacouleur` VALUES ('146', '3', 'DEU', 'abricot'); -- Structure de la table `cadates` DROP TABLE IF EXISTS `cadates`; CREATE TABLE `cadates` ( `numDate` int(3) NOT NULL AUTO_INCREMENT, `idDates` int(3) NOT NULL, `idLg` varchar(3) NOT NULL, `nomDate` varchar(75) NOT NULL, `dateDebut` varchar(12) NOT NULL, `dateFin` varchar(12) NOT NULL, `duree` varchar(55) NOT NULL, PRIMARY KEY (`numDate`) ) ENGINE=MyISAM AUTO_INCREMENT=69 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; -- Données de la table `cadates` INSERT INTO `cadates` VALUES ('1', '0', 'FRA', 'Aucune', '-', '-', '0'); INSERT INTO `cadates` VALUES ('2', '0', 'ENG', 'None', '-', '-', '0'); INSERT INTO `cadates` VALUES ('4', '1', 'FRA', 'Vacances', '01/03/2022', '15/03/2022', '14 jours'); INSERT INTO `cadates` VALUES ('5', '1', 'ENG', 'toussaint holidays', '19/10/2020', '02/11/2020', '14 days'); INSERT INTO `cadates` VALUES ('45', '1', 'ITA', 'vacanze di tutti i santi', '19/10/2020', '02/11/2020', '14 giorni'); INSERT INTO `cadates` VALUES ('7', '2', 'FRA', 'Exemple 2', '01/03/2022', '15/03/2022', '14 jours'); INSERT INTO `cadates` VALUES ('8', '2', 'ENG', 'Libellé pour la plage 2 en Anglais', '01/03/2022', '15/03/2022', '14 jours'); INSERT INTO `cadates` VALUES ('44', '0', 'ITA', 'Nessuno', '-', '-', '0'); INSERT INTO `cadates` VALUES ('46', '2', 'ITA', 'Etichetta per range 2 in italiano', '0', '0', '0'); INSERT INTO `cadates` VALUES ('47', '0', 'ESP', 'Ninguno', '-', '-', '0'); INSERT INTO `cadates` VALUES ('48', '1', 'ESP', 'festivos de todos los santos', '19/10/2020', '02/11/2020', '14 días'); INSERT INTO `cadates` VALUES ('49', '2', 'ESP', 'Etiqueta para rango 2 en italiano', '0', '0', '0'); INSERT INTO `cadates` VALUES ('50', '0', 'DEU', 'Keine', '-', '-', '0'); INSERT INTO `cadates` VALUES ('51', '1', 'DEU', 'Allerheiligen', '19.10.2020', '02.11.2020', '14 Tage'); INSERT INTO `cadates` VALUES ('52', '2', 'DEU', 'Label für Bereich 2 auf Italienisch', '0', '0', '0'); -- Structure de la table `cahauteur` DROP TABLE IF EXISTS `cahauteur`; CREATE TABLE `cahauteur` ( `id` int(2) NOT NULL, `idLg` varchar(3) NOT NULL, `nom` varchar(55) NOT NULL, `code1` varchar(55) NOT NULL, `code2` varchar(55) NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; -- Données de la table `cahauteur` INSERT INTO `cahauteur` VALUES ('1', 'FRA', 'hauteur1 - 1 m', '1 m', ''); INSERT INTO `cahauteur` VALUES ('1', 'ENG', 'height 1', '2,54 inchees', '1 pouce'); INSERT INTO `cahauteur` VALUES ('4', 'ITA', 'altezza 4', '10 cm', '10 cm'); INSERT INTO `cahauteur` VALUES ('2', 'FRA', 'hauteur2 - 1,5 m', '1,5 m', ''); INSERT INTO `cahauteur` VALUES ('2', 'ENG', 'height 2', '5,8 inchees', '2 pouces'); INSERT INTO `cahauteur` VALUES ('0', 'ITA', 'Nessuno', '-', '-'); INSERT INTO `cahauteur` VALUES ('3', 'FRA', 'hauteur3 - 2 m', '2 m', ''); INSERT INTO `cahauteur` VALUES ('3', 'ENG', 'height 3', '7,5 inchees', '3 pouces'); INSERT INTO `cahauteur` VALUES ('0', 'FRA', 'Aucune', '-', '-'); INSERT INTO `cahauteur` VALUES ('0', 'ENG', 'None', '-', '-'); INSERT INTO `cahauteur` VALUES ('3', 'ITA', 'altezza 3', '7,5 pollici', '3 pouces'); INSERT INTO `cahauteur` VALUES ('4', 'FRA', 'hauteur4 - 10 cm', '10 cm', ''); INSERT INTO `cahauteur` VALUES ('4', 'ENG', 'height 4', '10 cm', '10 cm'); INSERT INTO `cahauteur` VALUES ('5', 'FRA', 'hauteur5 - 20 cm', '20 cm', ''); INSERT INTO `cahauteur` VALUES ('5', 'ENG', 'height 5', '20 cm', '20 cm'); INSERT INTO `cahauteur` VALUES ('2', 'ITA', 'altezza 2', '5,8 pollici', '2 pouces'); INSERT INTO `cahauteur` VALUES ('6', 'FRA', 'hauteur6 - 30 cm', '30 cm', ''); INSERT INTO `cahauteur` VALUES ('6', 'ENG', 'height 6', '30 cm', '30 cm'); INSERT INTO `cahauteur` VALUES ('7', 'FRA', 'hauteur7 - 40 cm', '40 cm', ''); INSERT INTO `cahauteur` VALUES ('7', 'ENG', 'height 7', '40 cm', '40 cm'); INSERT INTO `cahauteur` VALUES ('1', 'ITA', 'altezza 1', '2,54 pollici', '1 pouce'); INSERT INTO `cahauteur` VALUES ('5', 'ITA', 'altezza 5', '20 cm', '20 cm'); INSERT INTO `cahauteur` VALUES ('6', 'ITA', 'altezza 6', '30 cm', '30 cm'); INSERT INTO `cahauteur` VALUES ('7', 'ITA', 'altezza 7', '40 cm', '40 cm'); INSERT INTO `cahauteur` VALUES ('1', 'ITA', 'altura 1', '2,54 pulgadas', '1 puce'); INSERT INTO `cahauteur` VALUES ('2', 'ITA', 'altura 2', '5,8 pulgadas', '2 pouces'); INSERT INTO `cahauteur` VALUES ('3', 'ITA', 'altura 3', '7,5 pulgadas', '3 pouces'); INSERT INTO `cahauteur` VALUES ('0', 'ITA', 'Ninguno', '-', '-'); INSERT INTO `cahauteur` VALUES ('4', 'ITA', 'altura 4', '10 cm', '10 cm'); INSERT INTO `cahauteur` VALUES ('5', 'ITA', 'altura 5', '20 cm', '20 cm'); INSERT INTO `cahauteur` VALUES ('6', 'ITA', 'altura 6', '30 cm', '30 cm'); INSERT INTO `cahauteur` VALUES ('7', 'ITA', 'altura 7', '40 cm', '40 cm'); INSERT INTO `cahauteur` VALUES ('1', 'DEU', 'Höhe 1', '2,54 Zoll', '1 Pouce'); INSERT INTO `cahauteur` VALUES ('2', 'DEU', 'Höhe 2', '5,8 Zoll', '2 Pouces'); INSERT INTO `cahauteur` VALUES ('3', 'DEU', 'Höhe 3', '7,5 Zoll', '3 Pouces'); INSERT INTO `cahauteur` VALUES ('0', 'DEU', 'Keine', '-', '-'); INSERT INTO `cahauteur` VALUES ('4', 'DEU', 'Höhe 4', '10 cm', '10 cm'); INSERT INTO `cahauteur` VALUES ('5', 'DEU', 'Höhe 5', '20 cm', '20 cm'); INSERT INTO `cahauteur` VALUES ('6', 'DEU', 'Höhe 6', '30 cm', '30 cm'); INSERT INTO `cahauteur` VALUES ('7', 'DEU', 'Höhe 7', '40 cm', '40 cm'); -- Structure de la table `caimages` DROP TABLE IF EXISTS `caimages`; CREATE TABLE `caimages` ( `idPrd` int(5) NOT NULL, `code1` varchar(75) NOT NULL, `code2` varchar(75) NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; -- Données de la table `caimages` -- Structure de la table `calargeur` DROP TABLE IF EXISTS `calargeur`; CREATE TABLE `calargeur` ( `id` int(2) NOT NULL, `idLg` varchar(3) NOT NULL, `nom` varchar(55) NOT NULL, `code1` varchar(55) NOT NULL, `code2` varchar(55) NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; -- Données de la table `calargeur` INSERT INTO `calargeur` VALUES ('0', 'FRA', 'Aucune', '-', '-'); INSERT INTO `calargeur` VALUES ('1', 'FRA', 'largeur1 - 10cm', '10cm', ''); INSERT INTO `calargeur` VALUES ('2', 'FRA', 'largeur2 - 1,2 cm', '1,2 cm', ''); INSERT INTO `calargeur` VALUES ('3', 'FRA', 'largeur3 - 5 cm', '5 cm', ''); INSERT INTO `calargeur` VALUES ('4', 'FRA', 'largeur4 - 10 cm', '10 cm', ''); INSERT INTO `calargeur` VALUES ('5', 'FRA', 'largeur5 - 15 cm', '15 cm', ''); INSERT INTO `calargeur` VALUES ('6', 'FRA', 'largeur5 - 20 cm', '20 cm', ''); INSERT INTO `calargeur` VALUES ('0', 'ENG', 'None', '-', '-'); INSERT INTO `calargeur` VALUES ('1', 'ENG', 'width1 - 10cm', '10cm', ''); INSERT INTO `calargeur` VALUES ('2', 'ENG', 'width2 - 1.2 cm', '1.2 cm', ''); INSERT INTO `calargeur` VALUES ('3', 'ENG', 'width3 - 5 cm', '5 cm', ''); INSERT INTO `calargeur` VALUES ('4', 'ENG', 'width4 - 10 cm', '10 cm', ''); INSERT INTO `calargeur` VALUES ('5', 'ENG', 'width5 - 15 cm', '15 cm', ''); INSERT INTO `calargeur` VALUES ('6', 'ENG', 'width5 - 20 cm', '20 cm', ''); INSERT INTO `calargeur` VALUES ('0', 'FRA', 'Aucune', '-', '-'); INSERT INTO `calargeur` VALUES ('1', 'FRA', 'largeur1 - 10cm', '10cm', ''); INSERT INTO `calargeur` VALUES ('2', 'FRA', 'largeur2 - 1,2 cm', '1,2 cm', ''); INSERT INTO `calargeur` VALUES ('3', 'FRA', 'largeur3 - 5 cm', '5 cm', ''); INSERT INTO `calargeur` VALUES ('4', 'FRA', 'largeur4 - 10 cm', '10 cm', ''); INSERT INTO `calargeur` VALUES ('5', 'FRA', 'largeur5 - 15 cm', '15 cm', ''); INSERT INTO `calargeur` VALUES ('6', 'FRA', 'largeur5 - 20 cm', '20 cm', ''); INSERT INTO `calargeur` VALUES ('0', 'ENG', 'None', '-', '-'); INSERT INTO `calargeur` VALUES ('1', 'ENG', 'width1 - 10cm', '10cm', ''); INSERT INTO `calargeur` VALUES ('2', 'ENG', 'width2 - 1.2 cm', '1.2 cm', ''); INSERT INTO `calargeur` VALUES ('3', 'ENG', 'width3 - 5 cm', '5 cm', ''); INSERT INTO `calargeur` VALUES ('4', 'ENG', 'width4 - 10 cm', '10 cm', ''); INSERT INTO `calargeur` VALUES ('5', 'ENG', 'width5 - 15 cm', '15 cm', ''); INSERT INTO `calargeur` VALUES ('6', 'ENG', 'width5 - 20 cm', '20 cm', ''); INSERT INTO `calargeur` VALUES ('0', 'ITA', 'Nessuno', '-', '-'); INSERT INTO `calargeur` VALUES ('1', 'ITA', 'larghezza1 - 10 cm', '10 cm', ''); INSERT INTO `calargeur` VALUES ('2', 'ITA', 'larghezza2 - 1,2 cm', '1,2 cm', ''); INSERT INTO `calargeur` VALUES ('3', 'ITA', 'larghezza3 - 5 cm', '5 cm', ''); INSERT INTO `calargeur` VALUES ('4', 'ITA', 'larghezza4 - 10 cm', '10 cm', ''); INSERT INTO `calargeur` VALUES ('5', 'ITA', 'larghezza5 - 15 cm', '15 cm', ''); INSERT INTO `calargeur` VALUES ('6', 'ITA', 'larghezza5 - 20 cm', '20 cm', ''); INSERT INTO `calargeur` VALUES ('0', 'ESP', 'Ninguno', '-', '-'); INSERT INTO `calargeur` VALUES ('1', 'ESP', 'ancho1 - 10 cm', '10 cm', ''); INSERT INTO `calargeur` VALUES ('2', 'ESP', 'ancho2 - 1,2 cm', '1,2 cm', ''); INSERT INTO `calargeur` VALUES ('3', 'ESP', 'ancho3 - 5 cm', '5 cm', ''); INSERT INTO `calargeur` VALUES ('4', 'ESP', 'ancho4 - 10 cm', '10 cm', ''); INSERT INTO `calargeur` VALUES ('5', 'ESP', 'ancho5 - 15 cm', '15 cm', ''); INSERT INTO `calargeur` VALUES ('6', 'ESP', 'ancho5 - 20 cm', '20 cm', ''); INSERT INTO `calargeur` VALUES ('0', 'DEU', 'Keine', '-', '-'); INSERT INTO `calargeur` VALUES ('1', 'DEU', 'Breite1 - 10cm', '10cm', ''); INSERT INTO `calargeur` VALUES ('2', 'DEU', 'Breite2 - 1,2 cm', '1,2 cm', ''); INSERT INTO `calargeur` VALUES ('3', 'DEU', 'Breite 3 - 5 cm', '5 cm', ''); INSERT INTO `calargeur` VALUES ('4', 'DEU', 'Breite4 - 10 cm', '10 cm', ''); INSERT INTO `calargeur` VALUES ('5', 'DEU', 'Breite 5 - 15 cm', '15 cm', ''); INSERT INTO `calargeur` VALUES ('6', 'DEU', 'Breite 5 - 20 cm', '20 cm', ''); -- Structure de la table `calibdyn` DROP TABLE IF EXISTS `calibdyn`; CREATE TABLE `calibdyn` ( `numLibCa` int(3) NOT NULL AUTO_INCREMENT, `idLibCa` int(3) NOT NULL, `libelleCaDyn` varchar(55) NOT NULL, `idlg` varchar(3) NOT NULL, `description` varchar(255) NOT NULL, PRIMARY KEY (`numLibCa`), KEY `id` (`idLibCa`) ) ENGINE=MyISAM AUTO_INCREMENT=116 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; -- Données de la table `calibdyn` INSERT INTO `calibdyn` VALUES ('1', '1', 'Carte', 'FRA', 'Carte cadeaux'); INSERT INTO `calibdyn` VALUES ('2', '1', 'Carte', 'ENG', 'Gift card'); INSERT INTO `calibdyn` VALUES ('3', '2', 'Option2', 'FRA', 'Option2'); INSERT INTO `calibdyn` VALUES ('4', '2', 'Option2', 'ENG', 'Option2'); INSERT INTO `calibdyn` VALUES ('5', '3', 'Option3', 'FRA', 'Option3'); INSERT INTO `calibdyn` VALUES ('6', '3', 'Option3', 'ENG', 'Option3'); INSERT INTO `calibdyn` VALUES ('7', '4', 'Option4', 'FRA', 'Option4'); INSERT INTO `calibdyn` VALUES ('8', '4', 'Option4', 'ENG', 'Option4'); INSERT INTO `calibdyn` VALUES ('9', '5', 'Option5', 'FRA', 'Option5'); INSERT INTO `calibdyn` VALUES ('10', '5', 'Option5', 'ENG', 'Option5'); INSERT INTO `calibdyn` VALUES ('11', '6', 'Option6', 'FRA', 'Liste des suppléments'); INSERT INTO `calibdyn` VALUES ('12', '6', 'Option6', 'ENG', 'Liste des suppléments'); INSERT INTO `calibdyn` VALUES ('13', '7', 'Option7', 'FRA', 'Liste des desserts'); INSERT INTO `calibdyn` VALUES ('14', '7', 'Option7', 'ENG', 'Liste des desserts'); INSERT INTO `calibdyn` VALUES ('15', '8', 'Option8', 'FRA', 'Type de pâte pizza'); INSERT INTO `calibdyn` VALUES ('16', '8', 'Option8', 'ENG', 'Type de pâte pizza'); INSERT INTO `calibdyn` VALUES ('17', '9', 'Option9', 'FRA', 'Base de pizza'); INSERT INTO `calibdyn` VALUES ('18', '9', 'Option9', 'ENG', 'Base de pizza'); INSERT INTO `calibdyn` VALUES ('19', '10', 'Option10', 'FRA', 'Tacos liste des viandes : 1 choix'); INSERT INTO `calibdyn` VALUES ('20', '10', 'Option10', 'ENG', 'Tacos liste des viandes : 1 choix'); INSERT INTO `calibdyn` VALUES ('21', '1', 'Carte', 'ITA', 'Carte'); INSERT INTO `calibdyn` VALUES ('22', '2', 'Option2', 'ITA', 'Option2'); INSERT INTO `calibdyn` VALUES ('23', '3', 'Option3', 'ITA', 'Option3'); INSERT INTO `calibdyn` VALUES ('24', '4', 'Option4', 'ITA', 'Option4'); INSERT INTO `calibdyn` VALUES ('25', '5', 'Option5', 'ITA', 'Option5'); INSERT INTO `calibdyn` VALUES ('26', '6', 'Option6', 'ITA', 'Liste des suppléments'); INSERT INTO `calibdyn` VALUES ('27', '7', 'Option7', 'ITA', 'Liste des desserts'); INSERT INTO `calibdyn` VALUES ('28', '8', 'Option8', 'ITA', 'Type de pâte pizza'); INSERT INTO `calibdyn` VALUES ('29', '9', 'Option9', 'ITA', 'Base de pizza'); INSERT INTO `calibdyn` VALUES ('30', '10', 'Option10', 'ITA', 'Tacos liste des viandes : 1 choix'); INSERT INTO `calibdyn` VALUES ('31', '1', 'Carte', 'DEU', 'Carte'); INSERT INTO `calibdyn` VALUES ('32', '2', 'Option2', 'DEU', 'Option2'); INSERT INTO `calibdyn` VALUES ('33', '3', 'Option3', 'DEU', 'Option3'); INSERT INTO `calibdyn` VALUES ('34', '4', 'Option4', 'DEU', 'Option4'); INSERT INTO `calibdyn` VALUES ('35', '5', 'Option5', 'DEU', 'Option5'); INSERT INTO `calibdyn` VALUES ('36', '6', 'Option6', 'DEU', 'Liste des suppléments'); INSERT INTO `calibdyn` VALUES ('37', '7', 'Option7', 'DEU', 'Liste des desserts'); INSERT INTO `calibdyn` VALUES ('38', '8', 'Option8', 'DEU', 'Type de pâte pizza'); INSERT INTO `calibdyn` VALUES ('39', '9', 'Option9', 'DEU', 'Base de pizza'); INSERT INTO `calibdyn` VALUES ('40', '10', 'Option10', 'DEU', 'Tacos liste des viandes : 1 choix'); INSERT INTO `calibdyn` VALUES ('41', '1', 'Carte', 'ESP', 'Carte'); INSERT INTO `calibdyn` VALUES ('42', '2', 'Option2', 'ESP', 'Option2'); INSERT INTO `calibdyn` VALUES ('43', '3', 'Option3', 'ESP', 'Option3'); INSERT INTO `calibdyn` VALUES ('44', '4', 'Option4', 'ESP', 'Option4'); INSERT INTO `calibdyn` VALUES ('45', '5', 'Option5', 'ESP', 'Option5'); INSERT INTO `calibdyn` VALUES ('46', '6', 'Option6', 'ESP', 'Liste des suppléments'); INSERT INTO `calibdyn` VALUES ('47', '7', 'Option7', 'ESP', 'Liste des desserts'); INSERT INTO `calibdyn` VALUES ('48', '8', 'Option8', 'ESP', 'Type de pâte pizza'); INSERT INTO `calibdyn` VALUES ('49', '9', 'Option9', 'ESP', 'Base de pizza'); INSERT INTO `calibdyn` VALUES ('50', '10', 'Option10', 'ESP', 'Tacos liste des viandes : 1 choix'); INSERT INTO `calibdyn` VALUES ('51', '11', 'Option11', 'FRA', 'Burger, tacos, assiette : salade | tomates | oignons'); INSERT INTO `calibdyn` VALUES ('52', '11', 'Option11', 'ENG', 'Burger, tacos, assiette : salade | tomates | oignons'); INSERT INTO `calibdyn` VALUES ('53', '11', 'Option11', 'ITA', 'Burger, tacos, assiette : salade | tomates | oignons'); INSERT INTO `calibdyn` VALUES ('54', '11', 'Option11', 'ESP', 'Burger, tacos, assiette : salade | tomates | oignons'); INSERT INTO `calibdyn` VALUES ('55', '11', 'Option11', 'DEU', 'Burger, tacos, assiette : salade | tomates | oignons'); INSERT INTO `calibdyn` VALUES ('56', '12', 'Option12', 'FRA', 'Tacos liste des viandes : 2 choix'); INSERT INTO `calibdyn` VALUES ('57', '12', 'Option12', 'ENG', 'Tacos liste des viandes : 2 choix'); INSERT INTO `calibdyn` VALUES ('58', '12', 'Option12', 'ITA', 'Tacos liste des viandes : 2 choix'); INSERT INTO `calibdyn` VALUES ('59', '12', 'Option12', 'DEU', 'Tacos liste des viandes : 2 choix'); INSERT INTO `calibdyn` VALUES ('60', '12', 'Option12', 'ESP', 'Tacos liste des viandes : 2 choix'); INSERT INTO `calibdyn` VALUES ('61', '13', 'Option13', 'FRA', 'Tacos liste des viandes : 3 choix'); INSERT INTO `calibdyn` VALUES ('62', '13', 'Option13', 'ENG', 'Tacos liste des viandes : 3 choix'); INSERT INTO `calibdyn` VALUES ('63', '13', 'Option13', 'ITA', 'Tacos liste des viandes : 3 choix'); INSERT INTO `calibdyn` VALUES ('64', '13', 'Option13', 'DEU', 'Tacos liste des viandes : 3 choix'); INSERT INTO `calibdyn` VALUES ('65', '13', 'Option13', 'ESP', 'Tacos liste des viandes : 3 choix'); INSERT INTO `calibdyn` VALUES ('66', '14', 'Option14', 'FRA', 'Menu pizzas supplément 5.50'); INSERT INTO `calibdyn` VALUES ('67', '14', 'Option14', 'ENG', 'Menu pizzas supplément 5.50'); INSERT INTO `calibdyn` VALUES ('68', '14', 'Option14', 'ITA', 'Menu pizzas supplément 5.50'); INSERT INTO `calibdyn` VALUES ('69', '14', 'Option14', 'DEU', 'Menu pizzas supplément 5.50'); INSERT INTO `calibdyn` VALUES ('70', '14', 'Option14', 'ESP', 'Menu pizzas supplément 5.50'); INSERT INTO `calibdyn` VALUES ('71', '15', 'Option15', 'FRA', 'Tacos liste des viandes : 4 choix'); INSERT INTO `calibdyn` VALUES ('72', '15', 'Option15', 'ENG', 'Tacos liste des viandes : 4 choix'); INSERT INTO `calibdyn` VALUES ('73', '15', 'Option15', 'ITA', 'Tacos liste des viandes : 4 choix'); INSERT INTO `calibdyn` VALUES ('74', '15', 'Option15', 'DEU', 'Tacos liste des viandes : 4 choix'); INSERT INTO `calibdyn` VALUES ('75', '15', 'Option15', 'ESP', 'Tacos liste des viandes : 4 choix'); INSERT INTO `calibdyn` VALUES ('76', '16', 'Option16', 'FRA', 'Choix de la viande pour americain'); INSERT INTO `calibdyn` VALUES ('77', '16', 'Option16', 'ENG', 'Choix de la viande pour americain'); INSERT INTO `calibdyn` VALUES ('78', '16', 'Option16', 'ITA', 'Choix de la viande pour americain'); INSERT INTO `calibdyn` VALUES ('79', '16', 'Option16', 'DEU', 'Choix de la viande pour americain'); INSERT INTO `calibdyn` VALUES ('80', '16', 'Option16', 'ESP', 'Choix de la viande pour americain'); INSERT INTO `calibdyn` VALUES ('81', '17', 'Option17', 'FRA', 'Assiette : choix 1 viande'); INSERT INTO `calibdyn` VALUES ('82', '17', 'Option17', 'ENG', 'Assiette : choix 1 viande'); INSERT INTO `calibdyn` VALUES ('83', '17', 'Option17', 'ITA', 'Assiette : choix 1 viande'); INSERT INTO `calibdyn` VALUES ('84', '17', 'Option17', 'DEU', 'Assiette : choix 1 viande'); INSERT INTO `calibdyn` VALUES ('85', '17', 'Option17', 'ESP', 'Assiette : choix 1 viande'); INSERT INTO `calibdyn` VALUES ('86', '18', 'Option18', 'FRA', 'Menu box'); INSERT INTO `calibdyn` VALUES ('87', '18', 'Option18', 'ENG', 'Menu box'); INSERT INTO `calibdyn` VALUES ('88', '18', 'Option18', 'ITA', 'Menu box'); INSERT INTO `calibdyn` VALUES ('89', '18', 'Option18', 'DEU', 'Menu box'); INSERT INTO `calibdyn` VALUES ('90', '18', 'Option18', 'ESP', 'Menu box'); INSERT INTO `calibdyn` VALUES ('91', '19', 'Option19', 'FRA', 'Type de pain sandwich américain'); INSERT INTO `calibdyn` VALUES ('92', '19', 'Option19', 'ENG', 'Type de pain sandwich américain'); INSERT INTO `calibdyn` VALUES ('93', '19', 'Option19', 'ITA', 'Type de pain sandwich américain'); INSERT INTO `calibdyn` VALUES ('94', '19', 'Option19', 'DEU', 'Type de pain sandwich américain'); INSERT INTO `calibdyn` VALUES ('95', '19', 'Option19', 'ESP', 'Type de pain sandwich américain'); INSERT INTO `calibdyn` VALUES ('96', '20', 'Option20', 'FRA', 'Assiette : choix 2 viandes'); INSERT INTO `calibdyn` VALUES ('97', '20', 'Option20', 'ENG', 'Assiette : choix 2 viandes'); INSERT INTO `calibdyn` VALUES ('98', '20', 'Option20', 'ITA', 'Assiette : choix 2 viandes'); INSERT INTO `calibdyn` VALUES ('99', '20', 'Option20', 'DEU', 'Assiette : choix 2 viandes'); INSERT INTO `calibdyn` VALUES ('100', '20', 'Option20', 'ESP', 'Assiette : choix 2 viandes'); INSERT INTO `calibdyn` VALUES ('101', '21', 'Option21', 'FRA', 'Assiette : choix 3 viandes'); INSERT INTO `calibdyn` VALUES ('102', '21', 'Option21', 'ENG', 'Assiette : choix 3 viandes'); INSERT INTO `calibdyn` VALUES ('103', '21', 'Option21', 'ITA', 'Assiette : choix 3 viandes'); INSERT INTO `calibdyn` VALUES ('104', '21', 'Option21', 'DEU', 'Assiette : choix 3 viandes'); INSERT INTO `calibdyn` VALUES ('105', '21', 'Option21', 'ESP', 'Assiette : choix 3 viandes'); INSERT INTO `calibdyn` VALUES ('106', '22', 'Option22', 'FRA', 'Frites'); INSERT INTO `calibdyn` VALUES ('107', '22', 'Option22', 'ENG', 'Frites'); INSERT INTO `calibdyn` VALUES ('108', '22', 'Option22', 'ITA', 'Frites'); INSERT INTO `calibdyn` VALUES ('109', '22', 'Option22', 'DEU', 'Frites'); INSERT INTO `calibdyn` VALUES ('110', '22', 'Option22', 'ESP', 'Frites'); INSERT INTO `calibdyn` VALUES ('111', '23', 'Option23', 'FRA', 'Sauce tacos'); INSERT INTO `calibdyn` VALUES ('112', '23', 'Option23', 'ENG', 'Libre'); INSERT INTO `calibdyn` VALUES ('113', '23', 'Option23', 'ITA', 'Tacos salsa'); INSERT INTO `calibdyn` VALUES ('114', '23', 'Option23', 'DEU', 'Tacos Soße'); INSERT INTO `calibdyn` VALUES ('115', '23', 'Option23', 'ESP', 'Tacos salsa'); -- Structure de la table `calongueur` DROP TABLE IF EXISTS `calongueur`; CREATE TABLE `calongueur` ( `id` int(2) NOT NULL, `idLg` varchar(3) NOT NULL, `nom` varchar(55) NOT NULL, `code1` varchar(55) NOT NULL, `code2` varchar(55) NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; -- Données de la table `calongueur` INSERT INTO `calongueur` VALUES ('1', 'FRA', 'longueur 1 - 1 m', '1 m', '-'); INSERT INTO `calongueur` VALUES ('1', 'ENG', 'length 1', '2,54 inchees', '1 pouce'); INSERT INTO `calongueur` VALUES ('6', 'ITA', 'lunghezza 4 - 40 cm', '40 cm', '-'); INSERT INTO `calongueur` VALUES ('2', 'ENG', 'lenght 2', '5,08 inchees', '2 pouces'); INSERT INTO `calongueur` VALUES ('2', 'FRA', 'longueur 2 - 1,5 m', '1,5 m', '-'); INSERT INTO `calongueur` VALUES ('0', 'FRA', 'Aucune', '-', '-'); INSERT INTO `calongueur` VALUES ('0', 'ENG', 'None', '-', '-'); INSERT INTO `calongueur` VALUES ('5', 'ITA', 'lunghezza 3 -30 cm', '30 cm', '-'); INSERT INTO `calongueur` VALUES ('3', 'FRA', 'longueur 3 - 10 cm', '10 cm', '-'); INSERT INTO `calongueur` VALUES ('3', 'ENG', 'lenght 3 - 10 cm', '10 cm', '-'); INSERT INTO `calongueur` VALUES ('4', 'ITA', 'lunghezza 4 - 20 cm', '20 cm', '-'); INSERT INTO `calongueur` VALUES ('4', 'FRA', 'longueur 4 - 20 cm', '20 cm', '-'); INSERT INTO `calongueur` VALUES ('4', 'ENG', 'lenght 4 - 20 cm', '20 cm', '-'); INSERT INTO `calongueur` VALUES ('3', 'ITA', 'lunghezza 3 - 10 cm', '10 cm', '-'); INSERT INTO `calongueur` VALUES ('5', 'FRA', 'longueur 3 - 30 cm', '30 cm', '-'); INSERT INTO `calongueur` VALUES ('5', 'ENG', 'lenght 3 -30 cm', '30 cm', '-'); INSERT INTO `calongueur` VALUES ('0', 'ITA', 'Nessuno', '-', '-'); INSERT INTO `calongueur` VALUES ('6', 'FRA', 'longueur 4 - 40 cm', '40 cm', '-'); INSERT INTO `calongueur` VALUES ('6', 'ENG', 'lenght 4 - 40 cm', '40 cm', '-'); INSERT INTO `calongueur` VALUES ('2', 'ITA', 'longueur 2 - 1,5 m', '1,5 m', '-'); INSERT INTO `calongueur` VALUES ('7', 'FRA', 'longueur 5 - 50 cm', '50 cm', '-'); INSERT INTO `calongueur` VALUES ('7', 'ENG', 'lenght 5 - 50 cm', '50 cm', '-'); INSERT INTO `calongueur` VALUES ('8', 'FRA', 'longueur 6 - 60 cm', '60 cm', '-'); INSERT INTO `calongueur` VALUES ('8', 'ENG', 'lenght 6 - 60 cm', '60 cm', '-'); INSERT INTO `calongueur` VALUES ('1', 'ITA', 'lunghezza 1', '2,54 pollici', '1 pouce'); INSERT INTO `calongueur` VALUES ('7', 'ITA', 'lunghezza 5 - 50 cm', '50 cm', '-'); INSERT INTO `calongueur` VALUES ('8', 'ITA', 'lunghezza 6 - 60 cm', '60 cm', '-'); INSERT INTO `calongueur` VALUES ('1', 'ESP', 'longitud 1', '2,54 pulgadas', '1 puce'); INSERT INTO `calongueur` VALUES ('2', 'ESP', 'longitud 2 - 1,5 m', '1,5 m', '-'); INSERT INTO `calongueur` VALUES ('0', 'ESP', 'Ninguno', '-', '-'); INSERT INTO `calongueur` VALUES ('3', 'ESP', 'longitud 3 - 10 cm', '10 cm', '-'); INSERT INTO `calongueur` VALUES ('4', 'ESP', 'longitud 4 - 20 cm', '20 cm', '-'); INSERT INTO `calongueur` VALUES ('5', 'ESP', 'longitud 3 -30 cm', '30 cm', '-'); INSERT INTO `calongueur` VALUES ('6', 'ESP', 'longitud 4 - 40 cm', '40 cm', '-'); INSERT INTO `calongueur` VALUES ('7', 'ESP', 'longitud 5 - 50 cm', '50 cm', '-'); INSERT INTO `calongueur` VALUES ('8', 'ESP', 'longitud 6 - 60 cm', '60 cm', '-'); INSERT INTO `calongueur` VALUES ('1', 'DEU', 'Länge 1', '2,54 Zoll', '1 Pouce'); INSERT INTO `calongueur` VALUES ('2', 'DEU', 'Länge 2 - 1,5 m', '1,5 m', '-'); INSERT INTO `calongueur` VALUES ('0', 'DEU', 'Keine', '-', '-'); INSERT INTO `calongueur` VALUES ('3', 'DEU', 'Länge 3 - 10 cm', '10 cm', '-'); INSERT INTO `calongueur` VALUES ('4', 'DEU', 'Länge 4 - 20 cm', '20 cm', '-'); INSERT INTO `calongueur` VALUES ('5', 'DEU', 'Länge 3 -30 cm', '30 cm', '-'); INSERT INTO `calongueur` VALUES ('6', 'DEU', 'Länge 4 - 40 cm', '40 cm', '-'); INSERT INTO `calongueur` VALUES ('7', 'DEU', 'Länge 5 - 50 cm', '50 cm', '-'); INSERT INTO `calongueur` VALUES ('8', 'DEU', 'Länge 6 - 60 cm', '60 cm', '-'); -- Structure de la table `casexe` DROP TABLE IF EXISTS `casexe`; CREATE TABLE `casexe` ( `id` int(2) NOT NULL, `idLg` varchar(3) NOT NULL, `nom` varchar(55) NOT NULL, `code1` varchar(55) NOT NULL, `code2` varchar(55) NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; -- Données de la table `casexe` INSERT INTO `casexe` VALUES ('1', 'FRA', 'Masculin', 'Homme', '-'); INSERT INTO `casexe` VALUES ('1', 'ENG', 'Man', 'Man', 'M'); INSERT INTO `casexe` VALUES ('2', 'FRA', 'Feminin', 'F', ''); INSERT INTO `casexe` VALUES ('1', 'ITA', 'Maschio', 'Maschio', '-'); INSERT INTO `casexe` VALUES ('2', 'ENG', 'Woman', 'W', 'W'); INSERT INTO `casexe` VALUES ('0', 'FRA', 'Aucune', '-', '-'); INSERT INTO `casexe` VALUES ('0', 'ITA', 'Nessuno', '-', '-'); INSERT INTO `casexe` VALUES ('0', 'ENG', 'None', '-', '-'); INSERT INTO `casexe` VALUES ('2', 'ITA', 'Femmina', 'F', ''); INSERT INTO `casexe` VALUES ('0', 'ESP', 'Ninguno', '-', '-'); INSERT INTO `casexe` VALUES ('1', 'ESP', 'Masculino', 'Masculino', '-'); INSERT INTO `casexe` VALUES ('2', 'ESP', 'Mujer', 'F', ''); INSERT INTO `casexe` VALUES ('0', 'DEU', 'Keine', '-', '-'); INSERT INTO `casexe` VALUES ('1', 'DEU', 'Männlich', 'Männlich', '-'); INSERT INTO `casexe` VALUES ('2', 'DEU', 'Weiblich', 'F', ''); -- Structure de la table `cataille` DROP TABLE IF EXISTS `cataille`; CREATE TABLE `cataille` ( `id` int(2) NOT NULL, `idLg` varchar(3) NOT NULL, `nom` varchar(55) NOT NULL, `code1` varchar(55) NOT NULL, `code2` varchar(55) NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; -- Données de la table `cataille` INSERT INTO `cataille` VALUES ('1', 'FRA', 'taille enfant 0-5', '0-5', ''); INSERT INTO `cataille` VALUES ('3', 'ITA', 'taglia adulto 38', 'taglia adulto 38', ''); INSERT INTO `cataille` VALUES ('1', 'ENG', 'children 0-5', '0-5', ''); INSERT INTO `cataille` VALUES ('2', 'FRA', 'taille enfant 5-10', '5-10', '-'); INSERT INTO `cataille` VALUES ('2', 'ENG', 'children 5-10', '5-10', 'Adult medium'); INSERT INTO `cataille` VALUES ('0', 'FRA', 'Aucune', '-', ''); INSERT INTO `cataille` VALUES ('2', 'ITA', 'taglia bambino 5-10', '5-10', '-'); INSERT INTO `cataille` VALUES ('0', 'ENG', 'Aucune', 'Adult 38', '-Small'); INSERT INTO `cataille` VALUES ('3', 'FRA', 'taille adulte 38', 'taille adulte 38', ''); INSERT INTO `cataille` VALUES ('1', 'ITA', 'taglia bambino 0-5', '0-5', ''); INSERT INTO `cataille` VALUES ('3', 'ENG', 'Adult 38', '-38', '-10'); INSERT INTO `cataille` VALUES ('4', 'FRA', 'Taille 10-15', '10', ''); INSERT INTO `cataille` VALUES ('0', 'ITA', 'Nessuno', '-', ''); INSERT INTO `cataille` VALUES ('4', 'ENG', 'young 10-15', '-10', ''); INSERT INTO `cataille` VALUES ('4', 'ITA', 'Taglia 10-15', '10', ''); INSERT INTO `cataille` VALUES ('0', 'ESP', 'Aucune', '-', ''); INSERT INTO `cataille` VALUES ('1', 'ESP', 'taille niño 0-5', '0-5', ''); INSERT INTO `cataille` VALUES ('2', 'ESP', 'taille niño 5-10', '5-10', '-'); INSERT INTO `cataille` VALUES ('3', 'ESP', 'taille adulte 38', 'taille adulte 38', ''); INSERT INTO `cataille` VALUES ('4', 'ESP', 'Taille 10-15', '10', ''); INSERT INTO `cataille` VALUES ('0', 'DEU', 'Keine', '-', ''); INSERT INTO `cataille` VALUES ('1', 'DEU', 'Kind Größe 0-5', '0-5', ''); INSERT INTO `cataille` VALUES ('2', 'DEU', 'Kind Größe 5-10', '5-10', '-'); INSERT INTO `cataille` VALUES ('3', 'DEU', 'Erwachsenengröße 38', 'Erwachsenengröße 38', ''); INSERT INTO `cataille` VALUES ('4', 'DEU', 'Größe 10-15', '10', ''); -- Structure de la table `categories` DROP TABLE IF EXISTS `categories`; CREATE TABLE `categories` ( `idCat` int(3) NOT NULL DEFAULT 0, `description` varchar(100) NOT NULL DEFAULT 'description sous catégorie', `idFam` int(3) NOT NULL, `lienImageWeb` varchar(255) DEFAULT '-', `statusGenre` int(1) NOT NULL DEFAULT 0, PRIMARY KEY (`idCat`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; -- Données de la table `categories` INSERT INTO `categories` VALUES ('1', 'Sous-catégorie 11', '1', './Catalogue/_parDefaut/imageViolette.jpeg', '1'); INSERT INTO `categories` VALUES ('2', 'Sous-catégorie 12', '1', './Catalogue/_parDefaut/imageViolette.jpeg', '1'); INSERT INTO `categories` VALUES ('3', 'Sous-catégorie 23', '2', './/Catalogue/_images_sousCategories/defautPetite.svg', '1'); INSERT INTO `categories` VALUES ('4', 'Sous-catégorie 24', '2', './Catalogue/_images_sousCategories/defautPetite.svg', '1'); INSERT INTO `categories` VALUES ('5', 'Sous-catégorie 13', '1', './Catalogue/_parDefaut/imageViolette.jpeg', '1'); INSERT INTO `categories` VALUES ('6', 'Sous-catégorie 25', '2', './Catalogue/_parDefaut/Picture_icon_BLACK.svg', '1'); INSERT INTO `categories` VALUES ('8', 'Sous-catégorie 31', '3', './Catalogue/_parDefaut/symbole.png', '1'); INSERT INTO `categories` VALUES ('9', 'eric : cat 4', '4', './Catalogue/_parDefaut/defautPetiteCat.jpeg', '1'); -- Structure de la table `categorieslibelle` DROP TABLE IF EXISTS `categorieslibelle`; CREATE TABLE `categorieslibelle` ( `num` smallint(3) NOT NULL AUTO_INCREMENT, `idCat` int(3) NOT NULL DEFAULT 0, `idLg` char(3) NOT NULL, `libelleCat` varchar(255) NOT NULL DEFAULT '', `idFam` int(3) NOT NULL, PRIMARY KEY (`num`) ) ENGINE=InnoDB AUTO_INCREMENT=213 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; -- Données de la table `categorieslibelle` INSERT INTO `categorieslibelle` VALUES ('134', '1', 'FRA', 'Sous-catégorie 11', '1'); INSERT INTO `categorieslibelle` VALUES ('135', '1', 'ENG', 'Sub-category 1', '1'); INSERT INTO `categorieslibelle` VALUES ('136', '1', 'ITA', 'Sotto-categoria 1', '1'); INSERT INTO `categorieslibelle` VALUES ('137', '1', 'ESP', 'Nombre de la categoría 1', '1'); INSERT INTO `categorieslibelle` VALUES ('138', '1', 'DEU', 'Unter-kategorie 1', '1'); INSERT INTO `categorieslibelle` VALUES ('168', '2', 'FRA', 'Sous-catégorie 12', '1'); INSERT INTO `categorieslibelle` VALUES ('169', '2', 'ENG', 'Sub-category 2 de la langue Anglais', '1'); INSERT INTO `categorieslibelle` VALUES ('170', '2', 'ITA', 'Sotto-categoria 2 de la langue Italien', '1'); INSERT INTO `categorieslibelle` VALUES ('171', '2', 'ESP', 'Nombre de la categoría 2 de la langue Espagnol', '1'); INSERT INTO `categorieslibelle` VALUES ('172', '2', 'DEU', 'Unter-kategorie2 de la langue Allemand', '1'); INSERT INTO `categorieslibelle` VALUES ('173', '3', 'FRA', 'Sous-catégorie 21', '2'); INSERT INTO `categorieslibelle` VALUES ('174', '3', 'ENG', 'Sub-category 3 de la langue Anglais', '2'); INSERT INTO `categorieslibelle` VALUES ('175', '3', 'ITA', 'Sotto-categoria 3 de la langue Italien', '2'); INSERT INTO `categorieslibelle` VALUES ('176', '3', 'ESP', 'Nombre de la categoría 3 de la langue Espagnol', '2'); INSERT INTO `categorieslibelle` VALUES ('177', '3', 'DEU', 'Unterkategorie 3 de la langue Allemand', '2'); INSERT INTO `categorieslibelle` VALUES ('178', '4', 'FRA', 'Sous-catégorie 22', '2'); INSERT INTO `categorieslibelle` VALUES ('179', '4', 'ENG', 'Sub-category 4 de la langue Anglais', '2'); INSERT INTO `categorieslibelle` VALUES ('180', '4', 'ITA', 'Sotto-categoria 4 de la langue Italien', '2'); INSERT INTO `categorieslibelle` VALUES ('181', '4', 'ESP', 'Nombre de la categoría 4 de la langue Espagnol', '2'); INSERT INTO `categorieslibelle` VALUES ('182', '4', 'DEU', 'Unterkategorie 4 de la langue Allemand', '2'); INSERT INTO `categorieslibelle` VALUES ('183', '5', 'FRA', 'Sous-catégorie 13', '1'); INSERT INTO `categorieslibelle` VALUES ('184', '5', 'ENG', 'Sub-category 5 de la langue Anglais', '1'); INSERT INTO `categorieslibelle` VALUES ('185', '5', 'ITA', 'Sotto-categoria 5 de la langue Italien', '1'); INSERT INTO `categorieslibelle` VALUES ('186', '5', 'ESP', 'Nombre de la categoría 5 de la langue Espagnol', '1'); INSERT INTO `categorieslibelle` VALUES ('187', '5', 'DEU', 'Unterkategorie 5 de la langue Allemand', '1'); INSERT INTO `categorieslibelle` VALUES ('188', '6', 'FRA', 'Sous-catégorie 23', '2'); INSERT INTO `categorieslibelle` VALUES ('189', '6', 'ENG', 'Nom de la catégorie6 de la langue Anglais', '2'); INSERT INTO `categorieslibelle` VALUES ('190', '6', 'ITA', 'Sotto-categoria 6 de la langue Italien', '2'); INSERT INTO `categorieslibelle` VALUES ('191', '6', 'ESP', 'Nombre de la categoría 6 de la langue Espagnol', '2'); INSERT INTO `categorieslibelle` VALUES ('192', '6', 'DEU', 'Unterkategorie 6 de la langue Allemand', '2'); INSERT INTO `categorieslibelle` VALUES ('198', '8', 'FRA', 'Sous-catégorie 31', '3'); INSERT INTO `categorieslibelle` VALUES ('199', '8', 'ENG', 'Sub-category 31', '3'); INSERT INTO `categorieslibelle` VALUES ('200', '8', 'ITA', 'Sotto-categoria 31', '3'); INSERT INTO `categorieslibelle` VALUES ('201', '8', 'ESP', 'Nombre de la categoría 31', '3'); INSERT INTO `categorieslibelle` VALUES ('202', '8', 'DEU', 'Unterkategorie 31', '3'); INSERT INTO `categorieslibelle` VALUES ('208', '9', 'FRA', 'eric : cat 4', '4'); INSERT INTO `categorieslibelle` VALUES ('209', '9', 'ENG', 'eric', '4'); INSERT INTO `categorieslibelle` VALUES ('210', '9', 'ITA', 'Eric', '4'); INSERT INTO `categorieslibelle` VALUES ('211', '9', 'ESP', 'Eric', '4'); INSERT INTO `categorieslibelle` VALUES ('212', '9', 'DEU', 'Eric', '4'); -- Structure de la table `catype1` DROP TABLE IF EXISTS `catype1`; CREATE TABLE `catype1` ( `numCA1` int(3) NOT NULL AUTO_INCREMENT, `id` int(2) NOT NULL, `idLg` varchar(3) NOT NULL, `ordre` varchar(2) DEFAULT NULL, `nom` varchar(55) NOT NULL, `code1` varchar(255) NOT NULL, `code2` varchar(255) NOT NULL, `code3` varchar(255) DEFAULT NULL, `prixHT` decimal(10,2) NOT NULL, `prixTTC` decimal(10,2) NOT NULL, `imageCA` varchar(255) NOT NULL, `tvaTaux` int(1) NOT NULL, PRIMARY KEY (`numCA1`) ) ENGINE=MyISAM AUTO_INCREMENT=103 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; -- Données de la table `catype1` INSERT INTO `catype1` VALUES ('48', '0', 'FRA', '1', 'Ne pas afficher', 'N\'affichera rien', '-', NULL, '0.00', '0.00', '-', '2'); INSERT INTO `catype1` VALUES ('49', '1', 'FRA', '1', 'Afficher', 'Menu avec plusieurs listes', 'OU', '0.00', '0.00', '0.00', '-', '2'); INSERT INTO `catype1` VALUES ('51', '3', 'FRA', '1', 'Carte avec message personnalisé', '-', '-', '-', '0.91', '1.00', 'fa-duotone fa-message-smile', '2'); INSERT INTO `catype1` VALUES ('52', '2', 'FRA', '1', 'Sans carte', '-', '-', NULL, '0.00', '0.00', 'fa-duotone fa-message-smile', '2'); INSERT INTO `catype1` VALUES ('58', '0', 'ENG', '1', 'Ne pas afficher', 'N\'affichera rien', '-', NULL, '0.00', '0.00', '-', '2'); INSERT INTO `catype1` VALUES ('59', '1', 'ENG', '1', 'Display', 'Menu avec plusieurs listes', 'OU', '0.00', '0.00', '0.00', '-', '2'); INSERT INTO `catype1` VALUES ('61', '3', 'ENG', '1', 'Without menu', '-', '-', '-', '0.91', '1.00', 'fa-duotone fa-message-smile', '2'); INSERT INTO `catype1` VALUES ('62', '2', 'ENG', '1', 'Menu with drinks', '-', '-', NULL, '0.00', '0.00', 'fa-duotone fa-message-smile', '2'); INSERT INTO `catype1` VALUES ('68', '0', 'ITA', '1', 'Ne pas afficher', 'N\'affichera rien', '-', NULL, '0.00', '0.00', '-', '2'); INSERT INTO `catype1` VALUES ('69', '1', 'ITA', '1', 'affiggere', 'Menu avec plusieurs listes', 'OU', '0.00', '0.00', '0.00', '-', '2'); INSERT INTO `catype1` VALUES ('71', '3', 'ITA', '1', 'Senza menù', '-', '-', '-', '0.91', '1.00', 'fa-duotone fa-message-smile', '2'); INSERT INTO `catype1` VALUES ('72', '2', 'ITA', '1', 'Menu con bevande', '-', '-', NULL, '0.00', '0.00', 'fa-duotone fa-message-smile', '2'); INSERT INTO `catype1` VALUES ('78', '0', 'ESP', '1', 'Ne pas afficher', 'N\'affichera rien', '-', NULL, '0.00', '0.00', '-', '2'); INSERT INTO `catype1` VALUES ('79', '1', 'ESP', '1', 'mostrar', 'Menu avec plusieurs listes', 'OU', '0.00', '0.00', '0.00', '-', '2'); INSERT INTO `catype1` VALUES ('81', '3', 'ESP', '1', 'Sin menú', '-', '-', '-', '0.91', '1.00', 'fa-duotone fa-message-smile', '2'); INSERT INTO `catype1` VALUES ('82', '2', 'ESP', '1', 'Menú con bebidas', '-', '-', NULL, '0.00', '0.00', 'fa-duotone fa-message-smile', '2'); INSERT INTO `catype1` VALUES ('88', '0', 'DEU', '1', 'Ne pas afficher', 'N\'affichera rien', '-', NULL, '0.00', '0.00', '-', '2'); INSERT INTO `catype1` VALUES ('89', '1', 'DEU', '1', 'anzuzeigen', 'Menu avec plusieurs listes', 'OU', '0.00', '0.00', '0.00', '-', '2'); INSERT INTO `catype1` VALUES ('91', '3', 'DEU', '1', 'Ohne Menü', '-', '-', '-', '0.91', '1.00', 'fa-duotone fa-message-smile', '2'); INSERT INTO `catype1` VALUES ('92', '2', 'DEU', '1', 'Menü mit Getränken', '-', '-', NULL, '0.00', '0.00', 'fa-duotone fa-message-smile', '2'); INSERT INTO `catype1` VALUES ('98', '4', 'FRA', NULL, 'Tag pour la caractéristique en Français', 'min 1', '1 inclus', 'max 1', '0.00', '0.00', '', '1'); INSERT INTO `catype1` VALUES ('99', '4', 'ENG', NULL, 'Tag pour la caractéristique en Français', 'min 1', '1 inclus', 'max 1', '0.00', '0.00', '', '1'); INSERT INTO `catype1` VALUES ('100', '4', 'ITA', NULL, 'Tag pour la caractéristique en Français', 'min 1', '1 inclus', 'max 1', '0.00', '0.00', '', '1'); INSERT INTO `catype1` VALUES ('101', '4', 'ESP', NULL, 'Tag pour la caractéristique en Français', 'min 1', '1 inclus', 'max 1', '0.00', '0.00', '', '1'); INSERT INTO `catype1` VALUES ('102', '4', 'DEU', NULL, 'Tag pour la caractéristique en Français', 'min 1', '1 inclus', 'max 1', '0.00', '0.00', '', '1'); -- Structure de la table `catype2` DROP TABLE IF EXISTS `catype2`; CREATE TABLE `catype2` ( `numCA2` int(3) NOT NULL AUTO_INCREMENT, `id` int(2) NOT NULL, `idLg` varchar(3) NOT NULL, `ordre` varchar(2) DEFAULT NULL, `nom` varchar(55) NOT NULL, `code1` varchar(255) NOT NULL, `code2` varchar(255) NOT NULL, `code3` varchar(255) DEFAULT NULL, `prixHT` decimal(10,2) NOT NULL, `prixTTC` decimal(10,2) NOT NULL, `imageCA` varchar(255) NOT NULL, `tvaTaux` int(1) NOT NULL, PRIMARY KEY (`numCA2`) ) ENGINE=MyISAM AUTO_INCREMENT=136 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; -- Données de la table `catype2` INSERT INTO `catype2` VALUES ('36', '0', 'FRA', '2', 'Ne pas afficher', 'N\'affichera rien', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype2` VALUES ('37', '1', 'FRA', '2', 'Afficher', 'Liste indépendante', 'OU', '0.00', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype2` VALUES ('38', '2', 'FRA', '2', 'Option 2', 'aucun', '1 inclus', 'max 1', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype2` VALUES ('39', '3', 'FRA', '2', 'Option21', '1', '1 inclus', 'max 1', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype2` VALUES ('42', '0', 'ITA', '2', 'Non visualizzare', 'Non visualizzerà nulla', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype2` VALUES ('43', '1', 'ITA', '2', 'Display', 'Liste indépendante', 'OU', '0.00', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype2` VALUES ('44', '2', 'ITA', '2', 'Option 2', 'aucun', '1 inclus', 'max 1', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype2` VALUES ('45', '3', 'ITA', '2', 'Fanta', '1', '1 inclus', 'max 1', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype2` VALUES ('48', '0', 'ENG', '2', 'Do not display', 'Will display nothing', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype2` VALUES ('49', '1', 'ENG', '2', 'Display', 'Liste indépendante', 'OU', '0.00', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype2` VALUES ('50', '2', 'ENG', '2', 'Option 2', 'aucun', '1 inclus', 'max 1', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype2` VALUES ('51', '3', 'ENG', '2', 'Fanta', '1', '1 inclus', 'max 1', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype2` VALUES ('54', '0', 'ESP', '2', 'No mostrar', 'No mostrará nada', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype2` VALUES ('55', '1', 'ESP', '2', 'Display', 'Liste indépendante', 'OU', '0.00', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype2` VALUES ('56', '2', 'ESP', '2', 'Option 2', 'aucun', '1 inclus', 'max 1', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype2` VALUES ('57', '3', 'ESP', '2', 'Fanta', '1', '1 inclus', 'max 1', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype2` VALUES ('60', '0', 'DEU', '2', 'Nicht anzeigen', 'Wird nichts anzeigen', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype2` VALUES ('61', '1', 'DEU', '2', 'Display', 'Liste indépendante', 'OU', '0.00', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype2` VALUES ('62', '2', 'DEU', '2', 'Option 2', 'aucun', '1 inclus', 'max 1', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype2` VALUES ('63', '3', 'DEU', '2', 'Fanta', '1', '1 inclus', 'max 1', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); -- Structure de la table `catype3` DROP TABLE IF EXISTS `catype3`; CREATE TABLE `catype3` ( `numCA3` int(3) NOT NULL AUTO_INCREMENT, `id` int(2) NOT NULL, `idLg` varchar(3) NOT NULL, `ordre` varchar(2) DEFAULT NULL, `nom` varchar(55) NOT NULL, `code1` varchar(255) NOT NULL, `code2` varchar(255) NOT NULL, `code3` varchar(255) DEFAULT NULL, `prixHT` decimal(10,2) NOT NULL, `prixTTC` decimal(10,2) NOT NULL, `imageCA` varchar(255) NOT NULL, `tvaTaux` int(1) NOT NULL, PRIMARY KEY (`numCA3`) ) ENGINE=MyISAM AUTO_INCREMENT=93 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; -- Données de la table `catype3` INSERT INTO `catype3` VALUES ('33', '0', 'FRA', '3', 'Ne pas afficher', 'N\'affichera rien', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype3` VALUES ('34', '1', 'FRA', '3', 'Afficher', 'Liste indépendante', 'ET', '2.00', '2.00', '2.00', '2', '2'); INSERT INTO `catype3` VALUES ('35', '2', 'FRA', '3', 'Option 3', 'aucun', '1 inclus', 'max 2', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype3` VALUES ('36', '3', 'FRA', '3', 'Option3', '1', '1 inclus', 'max 2', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype3` VALUES ('41', '0', 'ENG', '3', 'Do not display', 'Will display nothing', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype3` VALUES ('42', '1', 'ENG', '3', 'Show', 'Liste indépendante', 'ET', '2.00', '2.00', '2.00', '2', '2'); INSERT INTO `catype3` VALUES ('43', '2', 'ENG', '3', 'Option 3', 'aucun', '1 inclus', 'max 2', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype3` VALUES ('44', '3', 'ENG', '3', 'Option3', '1', '1 inclus', 'max 2', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype3` VALUES ('49', '0', 'ITA', '3', 'Non visualizzare', 'Non visualizzerà nulla', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype3` VALUES ('50', '1', 'ITA', '3', 'Option3', 'Liste indépendante', 'ET', '2.00', '2.00', '2.00', '2', '2'); INSERT INTO `catype3` VALUES ('51', '2', 'ITA', '3', 'Option 3', 'aucun', '1 inclus', 'max 2', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype3` VALUES ('52', '3', 'ITA', '3', 'Option3', '1', '1 inclus', 'max 2', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype3` VALUES ('57', '0', 'ESP', '3', 'No mostrar', 'No mostrará nada', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype3` VALUES ('58', '1', 'ESP', '3', 'Mostrar', 'Liste indépendante', 'ET', '2.00', '2.00', '2.00', '2', '2'); INSERT INTO `catype3` VALUES ('59', '2', 'ESP', '3', 'Option 3', 'aucun', '1 inclus', 'max 2', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype3` VALUES ('60', '3', 'ESP', '3', 'Option3', '1', '1 inclus', 'max 2', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype3` VALUES ('65', '0', 'DEU', '3', 'Nicht anzeigen', 'Wird nichts anzeigen', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype3` VALUES ('66', '1', 'DEU', '3', 'Zeigen', 'Liste indépendante', 'ET', '2.00', '2.00', '2.00', '2', '2'); INSERT INTO `catype3` VALUES ('67', '2', 'DEU', '3', 'Option 3', 'aucun', '1 inclus', 'max 2', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype3` VALUES ('68', '3', 'DEU', '3', 'Option3', '1', '1 inclus', 'max 2', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); -- Structure de la table `catype4` DROP TABLE IF EXISTS `catype4`; CREATE TABLE `catype4` ( `numCA4` int(3) NOT NULL AUTO_INCREMENT, `id` int(2) NOT NULL, `idLg` varchar(3) NOT NULL, `ordre` varchar(2) DEFAULT NULL, `nom` varchar(55) NOT NULL, `code1` varchar(255) NOT NULL, `code2` varchar(255) NOT NULL, `code3` varchar(255) DEFAULT NULL, `prixHT` decimal(10,2) NOT NULL, `prixTTC` decimal(10,2) NOT NULL, `imageCA` varchar(255) NOT NULL, `tvaTaux` int(1) NOT NULL, PRIMARY KEY (`numCA4`) ) ENGINE=MyISAM AUTO_INCREMENT=53 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; -- Données de la table `catype4` INSERT INTO `catype4` VALUES ('33', '3', 'FRA', '4', 'Option42', '1', 'pas de quantité', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype4` VALUES ('34', '1', 'FRA', '4', 'Afficher', 'Liste indépendante', 'OU', '2.00', '2.00', '2.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype4` VALUES ('35', '2', 'FRA', '4', 'Option 4', 'aucun', 'pas de quantité', NULL, '4.74', '5.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype4` VALUES ('36', '0', 'FRA', '4', 'Ne pas afficher', 'N\'affichera rien', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype4` VALUES ('37', '3', 'ENG', '4', 'Small: 33 cm', '1', 'pas de quantité', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype4` VALUES ('38', '1', 'ENG', '4', 'Show', 'Liste indépendante', 'OU', '2.00', '2.00', '2.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype4` VALUES ('39', '2', 'ENG', '4', 'Option 4', 'aucun', 'pas de quantité', NULL, '4.74', '5.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype4` VALUES ('40', '0', 'ENG', '4', 'Do not display', 'Will display nothing', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype4` VALUES ('41', '3', 'ITA', '4', 'Piccolo: 33 cm', '1', 'pas de quantité', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype4` VALUES ('42', '1', 'ITA', '4', 'Mostra', 'Liste indépendante', 'OU', '2.00', '2.00', '2.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype4` VALUES ('43', '2', 'ITA', '4', 'Option 4', 'aucun', 'pas de quantité', NULL, '4.74', '5.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype4` VALUES ('44', '0', 'ITA', '4', 'Non visualizzare', 'Non visualizzerà nulla', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype4` VALUES ('45', '3', 'ESP', '4', 'Pequeño: 33 cm', '1', 'pas de quantité', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype4` VALUES ('46', '1', 'ESP', '4', 'Mostrar', 'Liste indépendante', 'OU', '2.00', '2.00', '2.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype4` VALUES ('47', '2', 'ESP', '4', 'Option 4', 'aucun', 'pas de quantité', NULL, '4.74', '5.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype4` VALUES ('48', '0', 'ESP', '4', 'No mostrar', 'No mostrar nada', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype4` VALUES ('49', '3', 'DEU', '4', 'Klein: 33 cm', '1', 'pas de quantité', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype4` VALUES ('50', '1', 'DEU', '4', 'Show', 'Liste indépendante', 'OU', '2.00', '2.00', '2.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype4` VALUES ('51', '2', 'DEU', '4', 'Option 4', 'aucun', 'pas de quantité', NULL, '4.74', '5.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype4` VALUES ('52', '0', 'DEU', '4', 'Nicht anzeigen', 'Wird nichts anzeigen', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); -- Structure de la table `catype5` DROP TABLE IF EXISTS `catype5`; CREATE TABLE `catype5` ( `numCA5` int(3) NOT NULL AUTO_INCREMENT, `id` int(2) NOT NULL, `idLg` varchar(3) NOT NULL, `ordre` varchar(2) DEFAULT NULL, `nom` varchar(55) NOT NULL, `code1` varchar(255) NOT NULL, `code2` varchar(255) NOT NULL, `code3` varchar(255) DEFAULT NULL, `prixHT` decimal(10,2) NOT NULL, `prixTTC` decimal(10,2) NOT NULL, `imageCA` varchar(255) NOT NULL, `tvaTaux` int(1) NOT NULL, PRIMARY KEY (`numCA5`) ) ENGINE=MyISAM AUTO_INCREMENT=67 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; -- Données de la table `catype5` INSERT INTO `catype5` VALUES ('28', '1', 'FRA', '5', 'Afficher', 'Liste indépendante', 'ET', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype5` VALUES ('29', '2', 'FRA', '5', 'Option 5', '-', '-', NULL, '3.64', '4.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype5` VALUES ('30', '0', 'FRA', '5', 'Ne pas afficher', 'N\'affichera rien', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype5` VALUES ('32', '1', 'ENG', '5', 'Show', 'Liste incluse dans un menu', 'ET', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype5` VALUES ('33', '2', 'ENG', '5', 'Option 5', '-', '-', NULL, '3.64', '4.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype5` VALUES ('34', '0', 'ENG', '5', 'Do not display', 'Will display nothing', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype5` VALUES ('36', '1', 'ITA', '5', 'Mostra', 'Liste incluse dans un menu', 'ET', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype5` VALUES ('37', '2', 'ITA', '5', 'Option 5', '-', '-', NULL, '3.64', '4.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype5` VALUES ('38', '0', 'ITA', '5', 'Non visualizzare', 'Non visualizzerà nulla', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype5` VALUES ('40', '1', 'ESP', '5', 'Mostrar', 'Liste incluse dans un menu', 'ET', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype5` VALUES ('41', '2', 'ESP', '5', 'Option 5', '-', '-', NULL, '3.64', '4.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype5` VALUES ('42', '0', 'ESP', '5', 'No mostrar', 'No mostrar nada', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype5` VALUES ('44', '1', 'DEU', '5', 'Zeigen', 'Liste incluse dans un menu', 'ET', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype5` VALUES ('45', '2', 'DEU', '5', 'Option 5', '-', '-', NULL, '3.64', '4.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype5` VALUES ('46', '0', 'DEU', '5', 'Nicht anzeigen', 'Wird nichts anzeigen', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); -- Structure de la table `catype6` DROP TABLE IF EXISTS `catype6`; CREATE TABLE `catype6` ( `numCA6` int(3) NOT NULL AUTO_INCREMENT, `id` int(2) NOT NULL, `idLg` varchar(3) NOT NULL, `ordre` varchar(2) DEFAULT NULL, `nom` varchar(55) NOT NULL, `code1` varchar(255) NOT NULL, `code2` varchar(255) NOT NULL, `code3` varchar(255) DEFAULT NULL, `prixHT` decimal(10,2) NOT NULL, `prixTTC` decimal(10,2) NOT NULL, `imageCA` varchar(255) NOT NULL, `tvaTaux` int(1) NOT NULL, PRIMARY KEY (`numCA6`) ) ENGINE=MyISAM AUTO_INCREMENT=100 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; -- Données de la table `catype6` INSERT INTO `catype6` VALUES ('30', '1', 'FRA', '6', 'Afficher', 'Liste indépendante', 'ET', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype6` VALUES ('31', '2', 'FRA', '6', 'Option 6', '-', '-', NULL, '0.95', '1.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype6` VALUES ('32', '0', 'FRA', '6', 'Ne pas afficher', 'N\'affichera rien', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype6` VALUES ('35', '1', 'ENG', '6', 'Show', 'Liste indépendante', 'ET', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype6` VALUES ('36', '2', 'ENG', '6', 'Option 6', '-', '-', NULL, '0.95', '1.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype6` VALUES ('37', '0', 'ENG', '6', 'Do not display', 'Will display nothing', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype6` VALUES ('40', '1', 'ITA', '6', 'Mostra', 'Liste indépendante', 'ET', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype6` VALUES ('41', '2', 'ITA', '6', 'Option 6', '-', '-', NULL, '0.95', '1.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype6` VALUES ('42', '0', 'ITA', '6', 'Non visualizzare', 'Non visualizzerà nulla', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype6` VALUES ('45', '1', 'ESP', '6', 'Mostrar', 'Liste indépendante', 'ET', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype6` VALUES ('46', '2', 'ESP', '6', 'Option 6', '-', '-', NULL, '0.95', '1.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype6` VALUES ('47', '0', 'ESP', '6', 'No mostrar', 'No mostrará nada', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype6` VALUES ('50', '1', 'DEU', '6', 'Zeigen', 'Liste indépendante', 'ET', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype6` VALUES ('51', '2', 'DEU', '6', 'Option 6', '-', '-', NULL, '0.95', '1.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype6` VALUES ('52', '0', 'DEU', '6', 'Nicht anzeigen', 'Wird nichts anzeigen', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); -- Structure de la table `catype7` DROP TABLE IF EXISTS `catype7`; CREATE TABLE `catype7` ( `numCA7` int(3) NOT NULL AUTO_INCREMENT, `id` int(2) NOT NULL, `idLg` varchar(3) NOT NULL, `ordre` varchar(2) DEFAULT NULL, `nom` varchar(55) NOT NULL, `code1` varchar(255) NOT NULL, `code2` varchar(255) NOT NULL, `code3` varchar(255) DEFAULT NULL, `prixHT` decimal(10,2) NOT NULL, `prixTTC` decimal(10,2) NOT NULL, `imageCA` varchar(255) NOT NULL, `tvaTaux` int(1) NOT NULL, PRIMARY KEY (`numCA7`) ) ENGINE=MyISAM AUTO_INCREMENT=105 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; -- Données de la table `catype7` INSERT INTO `catype7` VALUES ('31', '1', 'FRA', '7', 'Afficher', 'Liste indépendante', 'ET', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype7` VALUES ('33', '0', 'FRA', '7', 'Ne pas afficher', 'N\'affichera rien', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype7` VALUES ('37', '1', 'ENG', '7', 'Display', 'Liste incluse dans un menu', 'ET', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype7` VALUES ('39', '0', 'ENG', '7', 'Do not display', 'Will display nothing', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype7` VALUES ('43', '1', 'ITA', '7', 'Display', 'Liste incluse dans un menu', 'ET', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype7` VALUES ('45', '0', 'ITA', '7', 'Non visualizzare', 'Non visualizzerà nulla', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype7` VALUES ('49', '1', 'ESP', '7', 'Display', 'Liste incluse dans un menu', 'ET', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype7` VALUES ('51', '0', 'ESP', '7', 'No mostrar', 'No mostrará nada', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype7` VALUES ('55', '1', 'DEU', '7', 'Display', 'Liste incluse dans un menu', 'ET', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype7` VALUES ('57', '0', 'DEU', '7', 'Nicht anzeigen', 'Wird nichts anzeigen', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype7` VALUES ('104', '2', 'DEU', '7', 'Tag pour la caractéristique en Français', 'min 1', '1 inclus', 'max 1', '10.00', '11.00', 'fa-duotone fa-user-check', '1'); INSERT INTO `catype7` VALUES ('103', '2', 'ESP', '7', 'Tag pour la caractéristique en Français', 'min 1', '1 inclus', 'max 1', '10.00', '11.00', 'fa-duotone fa-user-check', '1'); INSERT INTO `catype7` VALUES ('102', '2', 'ITA', '7', 'Tag pour la caractéristique en Français', 'min 1', '1 inclus', 'max 1', '10.00', '11.00', 'fa-duotone fa-user-check', '1'); INSERT INTO `catype7` VALUES ('101', '2', 'ENG', '7', 'Tag pour la caractéristique en Français', 'min 1', '1 inclus', 'max 1', '10.00', '11.00', 'fa-duotone fa-user-check', '1'); INSERT INTO `catype7` VALUES ('100', '2', 'FRA', '7', 'Tag pour la caractéristique en Français', 'min 1', '1 inclus', 'max 1', '10.00', '11.00', 'fa-duotone fa-user-check', '1'); -- Structure de la table `catype8` DROP TABLE IF EXISTS `catype8`; CREATE TABLE `catype8` ( `numCA8` int(3) NOT NULL AUTO_INCREMENT, `id` int(2) NOT NULL, `idLg` varchar(3) NOT NULL, `ordre` varchar(2) DEFAULT NULL, `nom` varchar(55) NOT NULL, `code1` varchar(255) NOT NULL, `code2` varchar(255) NOT NULL, `code3` varchar(255) DEFAULT NULL, `prixHT` decimal(10,2) NOT NULL, `prixTTC` decimal(10,2) NOT NULL, `imageCA` varchar(255) NOT NULL, `tvaTaux` int(1) NOT NULL, PRIMARY KEY (`numCA8`) ) ENGINE=MyISAM AUTO_INCREMENT=75 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; -- Données de la table `catype8` INSERT INTO `catype8` VALUES ('28', '1', 'FRA', '8', 'Afficher', 'Liste indépendante', 'OU', '0.00', '0.00', '0.00', '2', '2'); INSERT INTO `catype8` VALUES ('30', '0', 'FRA', '8', 'Ne pas afficher', 'N\'affichera rien', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype8` VALUES ('32', '1', 'ENG', '8', 'Display', 'Liste indépendante', 'OU', '0.00', '0.00', '0.00', '2', '2'); INSERT INTO `catype8` VALUES ('34', '0', 'ENG', '8', 'Do not display', 'Will display nothing', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype8` VALUES ('36', '1', 'ITA', '8', 'Affiggere', 'Liste indépendante', 'OU', '0.00', '0.00', '0.00', '2', '2'); INSERT INTO `catype8` VALUES ('38', '0', 'ITA', '8', 'Non visualizzare', 'Non visualizzerà nulla', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype8` VALUES ('40', '1', 'ESP', '8', 'Fijar', 'Liste indépendante', 'OU', '0.00', '0.00', '0.00', '2', '2'); INSERT INTO `catype8` VALUES ('42', '0', 'ESP', '8', 'No mostrar', 'No mostrar nada', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype8` VALUES ('44', '1', 'DEU', '8', 'Aufstecken', 'Liste indépendante', 'OU', '0.00', '0.00', '0.00', '2', '2'); INSERT INTO `catype8` VALUES ('46', '0', 'DEU', '8', 'Nicht anzeigen', 'Wird nichts anzeigen', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype8` VALUES ('69', '2', 'DEU', '8', 'Option 8', '-', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype8` VALUES ('68', '2', 'ESP', '8', 'Option 8', '-', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype8` VALUES ('67', '2', 'ITA', '8', 'Option 8', '-', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype8` VALUES ('66', '2', 'ENG', '8', 'Option 8', '-', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype8` VALUES ('65', '2', 'FRA', '8', 'Option 8', 'defaut 1', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); -- Structure de la table `catype9` DROP TABLE IF EXISTS `catype9`; CREATE TABLE `catype9` ( `numCA9` int(3) NOT NULL AUTO_INCREMENT, `id` int(2) NOT NULL, `idLg` varchar(3) NOT NULL, `ordre` varchar(2) DEFAULT NULL, `nom` varchar(55) NOT NULL, `code1` varchar(255) NOT NULL, `code2` varchar(255) NOT NULL, `code3` varchar(255) DEFAULT NULL, `prixHT` decimal(10,2) NOT NULL, `prixTTC` decimal(10,2) NOT NULL, `imageCA` varchar(255) NOT NULL, `tvaTaux` int(1) NOT NULL, PRIMARY KEY (`numCA9`) ) ENGINE=MyISAM AUTO_INCREMENT=47 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; -- Données de la table `catype9` INSERT INTO `catype9` VALUES ('27', '0', 'FRA', '9', 'Ne pas afficher', 'N\'affichera rien', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype9` VALUES ('29', '1', 'FRA', '9', 'Afficher', 'Liste indépendante', 'OU', '0.00', '0.00', '0.00', '2', '2'); INSERT INTO `catype9` VALUES ('30', '2', 'FRA', '9', 'Option 9', 'defaut 1', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype9` VALUES ('31', '0', 'ENG', '9', 'Do not display', 'Will display nothing', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype9` VALUES ('33', '1', 'ENG', '9', 'Display', 'Liste indépendante', 'OU', '0.00', '0.00', '0.00', '2', '2'); INSERT INTO `catype9` VALUES ('34', '2', 'ENG', '9', 'Option 9', 'defaut 1', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype9` VALUES ('35', '0', 'ITA', '9', 'Non visualizzare', 'Non visualizzerà nulla', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype9` VALUES ('37', '1', 'ITA', '9', 'Affiggere', 'Liste indépendante', 'OU', '0.00', '0.00', '0.00', '2', '2'); INSERT INTO `catype9` VALUES ('38', '2', 'ITA', '9', 'Option 9', 'defaut 1', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype9` VALUES ('39', '0', 'ESP', '9', 'No mostrar', 'No mostrará nada', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype9` VALUES ('41', '1', 'ESP', '9', 'Fijar', 'Liste indépendante', 'OU', '0.00', '0.00', '0.00', '2', '2'); INSERT INTO `catype9` VALUES ('42', '2', 'ESP', '9', 'Option 9', 'defaut 1', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype9` VALUES ('43', '0', 'DEU', '9', 'Nicht anzeigen', 'Wird nichts anzeigen', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype9` VALUES ('45', '1', 'DEU', '9', 'Aufstecken', 'Liste indépendante', 'OU', '0.00', '0.00', '0.00', '2', '2'); INSERT INTO `catype9` VALUES ('46', '2', 'DEU', '9', 'Option 9', 'defaut 1', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); -- Structure de la table `catype10` DROP TABLE IF EXISTS `catype10`; CREATE TABLE `catype10` ( `numCA10` int(3) NOT NULL AUTO_INCREMENT, `id` int(2) NOT NULL, `idLg` varchar(3) NOT NULL, `ordre` varchar(2) DEFAULT NULL, `nom` varchar(55) NOT NULL, `code1` varchar(255) NOT NULL, `code2` varchar(255) NOT NULL, `code3` varchar(255) DEFAULT NULL, `prixHT` decimal(10,2) NOT NULL, `prixTTC` decimal(10,2) NOT NULL, `imageCA` varchar(255) NOT NULL, `tvaTaux` int(1) NOT NULL, PRIMARY KEY (`numCA10`) ) ENGINE=MyISAM AUTO_INCREMENT=70 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; -- Données de la table `catype10` INSERT INTO `catype10` VALUES ('29', '0', 'FRA', '10', 'Ne pas afficher', 'N\'affichera rien', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype10` VALUES ('30', '1', 'FRA', '10', 'Afficher', 'Liste indépendante', 'ET', NULL, '0.00', '1.50', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype10` VALUES ('31', '2', 'FRA', '10', 'Option 10', '-', '1 inclus', 'max 3', '1.36', '1.50', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype10` VALUES ('34', '0', 'ENG', '10', 'Do not display', 'Will display nothing', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype10` VALUES ('35', '1', 'ENG', '10', 'Show', 'Liste indépendante', 'OU', NULL, '0.00', '1.50', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype10` VALUES ('36', '2', 'ENG', '10', 'Option 10', '-', '1 inclus', 'max 3', '1.36', '1.50', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype10` VALUES ('39', '0', 'ITA', '10', 'Non visualizzare', 'Non verrà visualizzato nulla', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype10` VALUES ('40', '1', 'ITA', '10', 'Mostra', 'Liste indépendante', 'OU', NULL, '0.00', '1.50', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype10` VALUES ('41', '2', 'ITA', '10', 'Option 10', '-', '1 inclus', 'max 3', '1.36', '1.50', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype10` VALUES ('44', '0', 'ESP', '10', 'No mostrar', 'No mostrará nada', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype10` VALUES ('45', '1', 'ESP', '10', 'Mostrar', 'Liste indépendante', 'OU', NULL, '0.00', '1.50', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype10` VALUES ('46', '2', 'ESP', '10', 'Option 10', '-', '1 inclus', 'max 3', '1.36', '1.50', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype10` VALUES ('49', '0', 'DEU', '10', 'Nicht anzeigen', 'Wird nichts anzeigen', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype10` VALUES ('50', '1', 'DEU', '10', 'Show', 'Liste indépendante', 'OU', NULL, '0.00', '1.50', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype10` VALUES ('51', '2', 'DEU', '10', 'Option 10', '-', '1 inclus', 'max 3', '1.36', '1.50', 'fa-duotone fa-user-check', '2'); -- Structure de la table `catype11` DROP TABLE IF EXISTS `catype11`; CREATE TABLE `catype11` ( `numCA11` int(3) NOT NULL AUTO_INCREMENT, `id` int(2) NOT NULL, `idLg` varchar(3) NOT NULL, `ordre` varchar(2) DEFAULT NULL, `nom` varchar(55) NOT NULL, `code1` varchar(255) NOT NULL, `code2` varchar(255) NOT NULL, `code3` varchar(255) DEFAULT NULL, `prixHT` decimal(10,2) NOT NULL, `prixTTC` decimal(10,2) NOT NULL, `imageCA` varchar(255) NOT NULL, `tvaTaux` int(1) NOT NULL, PRIMARY KEY (`numCA11`) ) ENGINE=MyISAM AUTO_INCREMENT=26 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; -- Données de la table `catype11` INSERT INTO `catype11` VALUES ('1', '0', 'FRA', '11', 'Ne pas afficher', 'N\'affichera rien', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype11` VALUES ('2', '1', 'FRA', '11', 'Afficher', 'Liste indépendante', 'ET', NULL, '0.00', '1.50', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype11` VALUES ('3', '2', 'FRA', '11', 'Option 11', '-', '-', '-', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype11` VALUES ('5', '0', 'ENG', '11', 'Do not display', 'Will display nothing', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype11` VALUES ('6', '1', 'ENG', '11', 'Show', 'Liste indépendante', 'OU', NULL, '0.00', '1.50', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype11` VALUES ('7', '2', 'ENG', '11', 'Option 11', '-', '-', '-', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype11` VALUES ('9', '0', 'ITA', '11', 'Non visualizzare', 'Non verrà visualizzato nulla', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype11` VALUES ('10', '1', 'ITA', '11', 'Mostra', 'Liste indépendante', 'OU', NULL, '0.00', '1.50', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype11` VALUES ('11', '2', 'ITA', '11', 'Option 11', '-', '-', '-', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype11` VALUES ('13', '0', 'ESP', '11', 'No mostrar', 'No mostrará nada', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype11` VALUES ('14', '1', 'ESP', '11', 'Mostrar', 'Liste indépendante', 'OU', NULL, '0.00', '1.50', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype11` VALUES ('15', '2', 'ESP', '11', 'Option 11', '-', '-', '-', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype11` VALUES ('17', '0', 'DEU', '11', 'Nicht anzeigen', 'Wird nichts anzeigen', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype11` VALUES ('18', '1', 'DEU', '11', 'Show', 'Liste indépendante', 'OU', NULL, '0.00', '1.50', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype11` VALUES ('19', '2', 'DEU', '11', 'Option 11', '-', '-', '-', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); -- Structure de la table `catype12` DROP TABLE IF EXISTS `catype12`; CREATE TABLE `catype12` ( `numCA12` int(3) NOT NULL AUTO_INCREMENT, `id` int(2) NOT NULL, `idLg` varchar(3) NOT NULL, `ordre` varchar(2) DEFAULT NULL, `nom` varchar(55) NOT NULL, `code1` varchar(255) NOT NULL, `code2` varchar(255) NOT NULL, `code3` varchar(255) DEFAULT NULL, `prixHT` decimal(10,2) NOT NULL, `prixTTC` decimal(10,2) NOT NULL, `imageCA` varchar(255) NOT NULL, `tvaTaux` int(1) NOT NULL, PRIMARY KEY (`numCA12`) ) ENGINE=MyISAM AUTO_INCREMENT=18 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; -- Données de la table `catype12` INSERT INTO `catype12` VALUES ('1', '0', 'FRA', '12', 'Ne pas afficher', 'N\'affichera rien', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype12` VALUES ('2', '1', 'FRA', '12', 'Afficher', 'Liste indépendante', 'ET', '1.50', '0.00', '0.00', '2', '2'); INSERT INTO `catype12` VALUES ('3', '2', 'FRA', '12', 'Option 12', 'defaut 1', '1 inclus', 'sans', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype12` VALUES ('5', '0', 'ENG', '12', 'Do not display', 'Will display nothing', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype12` VALUES ('6', '1', 'ENG', '12', 'Show', 'Liste indépendante', 'ET', '1.50', '0.00', '0.00', '2', '2'); INSERT INTO `catype12` VALUES ('7', '2', 'ENG', '12', 'Option 12', 'defaut 1', '-', '-', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype12` VALUES ('9', '0', 'ITA', '12', 'Non visualizzare', 'Non verrà visualizzato nulla', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype12` VALUES ('10', '1', 'ITA', '12', 'Mostra', 'Liste indépendante', 'ET', '1.50', '0.00', '0.00', '2', '2'); INSERT INTO `catype12` VALUES ('12', '2', 'ITA', '12', 'Option 12', 'defaut 1', '-', '-', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype12` VALUES ('13', '0', 'ESP', '12', 'No mostrar', 'No mostrará nada', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype12` VALUES ('14', '1', 'ESP', '12', 'Mostrar', 'Liste indépendante', 'ET', '1.50', '0.00', '0.00', '2', '2'); INSERT INTO `catype12` VALUES ('15', '2', 'ESP', '12', 'Option 12', 'defaut 1', '-', '-', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype12` VALUES ('17', '0', 'DEU', '12', 'Nicht anzeigen', 'Wird nichts anzeigen', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype12` VALUES ('16', '1', 'DEU', '12', 'Show', 'Liste indépendante', 'ET', '1.50', '0.00', '0.00', '2', '2'); INSERT INTO `catype12` VALUES ('11', '2', 'DEU', '12', 'Option 12', 'defaut 1', '-', '-', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); -- Structure de la table `catype13` DROP TABLE IF EXISTS `catype13`; CREATE TABLE `catype13` ( `numCA13` int(3) NOT NULL AUTO_INCREMENT, `id` int(2) NOT NULL, `idLg` varchar(3) NOT NULL, `ordre` varchar(2) DEFAULT NULL, `nom` varchar(55) NOT NULL, `code1` varchar(255) NOT NULL, `code2` varchar(255) NOT NULL, `code3` varchar(255) DEFAULT NULL, `prixHT` decimal(10,2) NOT NULL, `prixTTC` decimal(10,2) NOT NULL, `imageCA` varchar(255) NOT NULL, `tvaTaux` int(1) NOT NULL, PRIMARY KEY (`numCA13`) ) ENGINE=MyISAM AUTO_INCREMENT=18 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; -- Données de la table `catype13` INSERT INTO `catype13` VALUES ('1', '0', 'FRA', '13', 'Ne pas afficher', 'N\'affichera rien', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype13` VALUES ('2', '1', 'FRA', '13', 'Afficher', 'Liste indépendante', 'ET', '1.50', '0.00', '0.00', '2', '2'); INSERT INTO `catype13` VALUES ('3', '2', 'FRA', '13', 'Option 13', 'defaut 1', '1 inclus', 'sans', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype13` VALUES ('5', '0', 'ENG', '13', 'Do not display', 'Will display nothing', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype13` VALUES ('6', '1', 'ENG', '13', 'Show', 'Liste indépendante', 'ET', '1.50', '0.00', '0.00', '2', '2'); INSERT INTO `catype13` VALUES ('7', '2', 'ENG', '13', 'Option 13', 'defaut 1', '-', '-', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype13` VALUES ('9', '0', 'ITA', '13', 'Non visualizzare', 'Non verrà visualizzato nulla', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype13` VALUES ('10', '1', 'ITA', '13', 'Mostra', 'Liste indépendante', 'ET', '1.50', '0.00', '0.00', '2', '2'); INSERT INTO `catype13` VALUES ('12', '2', 'ITA', '13', 'Option 13', 'defaut 1', '-', '-', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype13` VALUES ('13', '0', 'ESP', '13', 'No mostrar', 'No mostrará nada', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype13` VALUES ('14', '1', 'ESP', '13', 'Mostrar', 'Liste indépendante', 'ET', '1.50', '0.00', '0.00', '2', '2'); INSERT INTO `catype13` VALUES ('15', '2', 'ESP', '13', 'Option 13', 'defaut 1', '-', '-', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype13` VALUES ('17', '0', 'DEU', '13', 'Nicht anzeigen', 'Wird nichts anzeigen', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype13` VALUES ('16', '1', 'DEU', '13', 'Show', 'Liste indépendante', 'ET', '1.50', '0.00', '0.00', '2', '2'); INSERT INTO `catype13` VALUES ('11', '2', 'DEU', '13', 'Option 13', 'defaut 1', '-', '-', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); -- Structure de la table `catype14` DROP TABLE IF EXISTS `catype14`; CREATE TABLE `catype14` ( `numCA14` int(3) NOT NULL AUTO_INCREMENT, `id` int(2) NOT NULL, `idLg` varchar(3) NOT NULL, `ordre` varchar(2) DEFAULT NULL, `nom` varchar(55) NOT NULL, `code1` varchar(255) NOT NULL, `code2` varchar(255) NOT NULL, `code3` varchar(255) DEFAULT NULL, `prixHT` decimal(10,2) NOT NULL, `prixTTC` decimal(10,2) NOT NULL, `imageCA` varchar(255) NOT NULL, `tvaTaux` int(1) NOT NULL, PRIMARY KEY (`numCA14`) ) ENGINE=MyISAM AUTO_INCREMENT=18 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; -- Données de la table `catype14` INSERT INTO `catype14` VALUES ('1', '0', 'FRA', '14', 'Ne pas afficher', 'N\'affichera rien', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype14` VALUES ('2', '1', 'FRA', '14', 'Afficher', 'Liste indépendante', 'ET', '1.50', '0.00', '0.00', '2', '2'); INSERT INTO `catype14` VALUES ('3', '2', 'FRA', '14', 'Option 14', 'defaut 1', '1 inclus', 'sans', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype14` VALUES ('5', '0', 'ENG', '14', 'Do not display', 'Will display nothing', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype14` VALUES ('6', '1', 'ENG', '14', 'Show', 'Liste indépendante', 'ET', '1.50', '0.00', '0.00', '2', '2'); INSERT INTO `catype14` VALUES ('7', '2', 'ENG', '14', 'Option 14', 'defaut 1', '-', '-', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype14` VALUES ('9', '0', 'ITA', '14', 'Non visualizzare', 'Non verrà visualizzato nulla', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype14` VALUES ('10', '1', 'ITA', '14', 'Mostra', 'Liste indépendante', 'ET', '1.50', '0.00', '0.00', '2', '2'); INSERT INTO `catype14` VALUES ('12', '2', 'ITA', '14', 'Option 14', 'defaut 1', '-', '-', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype14` VALUES ('13', '0', 'ESP', '14', 'No mostrar', 'No mostrará nada', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype14` VALUES ('14', '1', 'ESP', '14', 'Mostrar', 'Liste indépendante', 'ET', '1.50', '0.00', '0.00', '2', '2'); INSERT INTO `catype14` VALUES ('15', '2', 'ESP', '14', 'Option 14', 'defaut 1', '-', '-', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype14` VALUES ('17', '0', 'DEU', '14', 'Nicht anzeigen', 'Wird nichts anzeigen', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype14` VALUES ('16', '1', 'DEU', '14', 'Show', 'Liste indépendante', 'ET', '1.50', '0.00', '0.00', '2', '2'); INSERT INTO `catype14` VALUES ('11', '2', 'DEU', '14', 'Option 14', 'defaut 1', '-', '-', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); -- Structure de la table `catype15` DROP TABLE IF EXISTS `catype15`; CREATE TABLE `catype15` ( `numCA15` int(3) NOT NULL AUTO_INCREMENT, `id` int(2) NOT NULL, `idLg` varchar(3) NOT NULL, `ordre` varchar(2) DEFAULT NULL, `nom` varchar(55) NOT NULL, `code1` varchar(255) NOT NULL, `code2` varchar(255) NOT NULL, `code3` varchar(255) DEFAULT NULL, `prixHT` decimal(10,2) NOT NULL, `prixTTC` decimal(10,2) NOT NULL, `imageCA` varchar(255) NOT NULL, `tvaTaux` int(1) NOT NULL, PRIMARY KEY (`numCA15`) ) ENGINE=MyISAM AUTO_INCREMENT=18 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; -- Données de la table `catype15` INSERT INTO `catype15` VALUES ('1', '0', 'FRA', '15', 'Ne pas afficher', 'N\'affichera rien', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype15` VALUES ('2', '1', 'FRA', '15', 'Afficher', 'Liste indépendante', 'ET', '1.50', '0.00', '0.00', '2', '2'); INSERT INTO `catype15` VALUES ('3', '2', 'FRA', '15', 'Option 15', 'defaut 1', '1 inclus', 'sans', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype15` VALUES ('5', '0', 'ENG', '15', 'Do not display', 'Will display nothing', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype15` VALUES ('6', '1', 'ENG', '15', 'Show', 'Liste indépendante', 'ET', '1.50', '0.00', '0.00', '2', '2'); INSERT INTO `catype15` VALUES ('7', '2', 'ENG', '15', 'Option 15', 'defaut 1', '-', '-', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype15` VALUES ('9', '0', 'ITA', '15', 'Non visualizzare', 'Non verrà visualizzato nulla', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype15` VALUES ('10', '1', 'ITA', '15', 'Mostra', 'Liste indépendante', 'ET', '1.50', '0.00', '0.00', '2', '2'); INSERT INTO `catype15` VALUES ('12', '2', 'ITA', '15', 'Option 15', 'defaut 1', '-', '-', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype15` VALUES ('13', '0', 'ESP', '15', 'No mostrar', 'No mostrará nada', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype15` VALUES ('14', '1', 'ESP', '15', 'Mostrar', 'Liste indépendante', 'ET', '1.50', '0.00', '0.00', '2', '2'); INSERT INTO `catype15` VALUES ('15', '2', 'ESP', '15', 'Option 15', 'defaut 1', '-', '-', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype15` VALUES ('17', '0', 'DEU', '15', 'Nicht anzeigen', 'Wird nichts anzeigen', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype15` VALUES ('16', '1', 'DEU', '15', 'Show', 'Liste indépendante', 'ET', '1.50', '0.00', '0.00', '2', '2'); INSERT INTO `catype15` VALUES ('11', '2', 'DEU', '15', 'Option 15', 'defaut 1', '-', '-', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); -- Structure de la table `catype16` DROP TABLE IF EXISTS `catype16`; CREATE TABLE `catype16` ( `numCA16` int(3) NOT NULL AUTO_INCREMENT, `id` int(2) NOT NULL, `idLg` varchar(3) NOT NULL, `ordre` varchar(2) DEFAULT NULL, `nom` varchar(55) NOT NULL, `code1` varchar(255) NOT NULL, `code2` varchar(255) NOT NULL, `code3` varchar(255) DEFAULT NULL, `prixHT` decimal(10,2) NOT NULL, `prixTTC` decimal(10,2) NOT NULL, `imageCA` varchar(255) NOT NULL, `tvaTaux` int(1) NOT NULL, PRIMARY KEY (`numCA16`) ) ENGINE=MyISAM AUTO_INCREMENT=18 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; -- Données de la table `catype16` INSERT INTO `catype16` VALUES ('1', '0', 'FRA', '16', 'Ne pas afficher', 'N\'affichera rien', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype16` VALUES ('2', '1', 'FRA', '16', 'Afficher', 'Liste indépendante', 'ET', '1.50', '0.00', '0.00', '2', '2'); INSERT INTO `catype16` VALUES ('3', '2', 'FRA', '16', 'Option 16', 'defaut 1', '1 inclus', 'sans', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype16` VALUES ('5', '0', 'ENG', '16', 'Do not display', 'Will display nothing', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype16` VALUES ('6', '1', 'ENG', '16', 'Show', 'Liste indépendante', 'ET', '1.50', '0.00', '0.00', '2', '2'); INSERT INTO `catype16` VALUES ('7', '2', 'ENG', '16', 'Option 16', 'defaut 1', '-', '-', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype16` VALUES ('9', '0', 'ITA', '16', 'Non visualizzare', 'Non verrà visualizzato nulla', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype16` VALUES ('10', '1', 'ITA', '16', 'Mostra', 'Liste indépendante', 'ET', '1.50', '0.00', '0.00', '2', '2'); INSERT INTO `catype16` VALUES ('12', '2', 'ITA', '16', 'Option 16', 'defaut 1', '-', '-', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype16` VALUES ('13', '0', 'ESP', '16', 'No mostrar', 'No mostrará nada', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype16` VALUES ('14', '1', 'ESP', '16', 'Mostrar', 'Liste indépendante', 'ET', '1.50', '0.00', '0.00', '2', '2'); INSERT INTO `catype16` VALUES ('15', '2', 'ESP', '16', 'Option 16', 'defaut 1', '-', '-', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype16` VALUES ('17', '0', 'DEU', '16', 'Nicht anzeigen', 'Wird nichts anzeigen', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype16` VALUES ('16', '1', 'DEU', '16', 'Show', 'Liste indépendante', 'ET', '1.50', '0.00', '0.00', '2', '2'); INSERT INTO `catype16` VALUES ('11', '2', 'DEU', '16', 'Option 16', 'defaut 1', '-', '-', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); -- Structure de la table `catype17` DROP TABLE IF EXISTS `catype17`; CREATE TABLE `catype17` ( `numCA17` int(3) NOT NULL AUTO_INCREMENT, `id` int(2) NOT NULL, `idLg` varchar(3) NOT NULL, `ordre` varchar(2) DEFAULT NULL, `nom` varchar(55) NOT NULL, `code1` varchar(255) NOT NULL, `code2` varchar(255) NOT NULL, `code3` varchar(255) DEFAULT NULL, `prixHT` decimal(10,2) NOT NULL, `prixTTC` decimal(10,2) NOT NULL, `imageCA` varchar(255) NOT NULL, `tvaTaux` int(1) NOT NULL, PRIMARY KEY (`numCA17`) ) ENGINE=MyISAM AUTO_INCREMENT=18 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; -- Données de la table `catype17` INSERT INTO `catype17` VALUES ('1', '0', 'FRA', '17', 'Ne pas afficher', 'N\'affichera rien', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype17` VALUES ('2', '1', 'FRA', '17', 'Afficher', 'Liste indépendante', 'ET', '1.50', '0.00', '0.00', '2', '2'); INSERT INTO `catype17` VALUES ('3', '2', 'FRA', '17', 'Option 17', 'defaut 1', '1 inclus', 'sans', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype17` VALUES ('5', '0', 'ENG', '17', 'Do not display', 'Will display nothing', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype17` VALUES ('6', '1', 'ENG', '17', 'Show', 'Liste indépendante', 'ET', '1.50', '0.00', '0.00', '2', '2'); INSERT INTO `catype17` VALUES ('7', '2', 'ENG', '17', 'Option 17', 'defaut 1', '-', '-', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype17` VALUES ('9', '0', 'ITA', '17', 'Non visualizzare', 'Non verrà visualizzato nulla', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype17` VALUES ('10', '1', 'ITA', '17', 'Mostra', 'Liste indépendante', 'ET', '1.50', '0.00', '0.00', '2', '2'); INSERT INTO `catype17` VALUES ('12', '2', 'ITA', '17', 'Option 17', 'defaut 1', '-', '-', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype17` VALUES ('13', '0', 'ESP', '17', 'No mostrar', 'No mostrará nada', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype17` VALUES ('14', '1', 'ESP', '17', 'Mostrar', 'Liste indépendante', 'ET', '1.50', '0.00', '0.00', '2', '2'); INSERT INTO `catype17` VALUES ('15', '2', 'ESP', '17', 'Option 17', 'defaut 1', '-', '-', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype17` VALUES ('17', '0', 'DEU', '17', 'Nicht anzeigen', 'Wird nichts anzeigen', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype17` VALUES ('16', '1', 'DEU', '17', 'Show', 'Liste indépendante', 'ET', '1.50', '0.00', '0.00', '2', '2'); INSERT INTO `catype17` VALUES ('11', '2', 'DEU', '17', 'Option 17', 'defaut 1', '-', '-', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); -- Structure de la table `catype18` DROP TABLE IF EXISTS `catype18`; CREATE TABLE `catype18` ( `numCA18` int(3) NOT NULL AUTO_INCREMENT, `id` int(2) NOT NULL, `idLg` varchar(3) NOT NULL, `ordre` varchar(2) DEFAULT NULL, `nom` varchar(55) NOT NULL, `code1` varchar(255) NOT NULL, `code2` varchar(255) NOT NULL, `code3` varchar(255) DEFAULT NULL, `prixHT` decimal(10,2) NOT NULL, `prixTTC` decimal(10,2) NOT NULL, `imageCA` varchar(255) NOT NULL, `tvaTaux` int(1) NOT NULL, PRIMARY KEY (`numCA18`) ) ENGINE=MyISAM AUTO_INCREMENT=18 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; -- Données de la table `catype18` INSERT INTO `catype18` VALUES ('1', '0', 'FRA', '18', 'Ne pas afficher', 'N\'affichera rien', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype18` VALUES ('2', '1', 'FRA', '18', 'Afficher', 'Liste indépendante', 'ET', '1.50', '0.00', '0.00', '2', '2'); INSERT INTO `catype18` VALUES ('3', '2', 'FRA', '18', 'Option 18', 'defaut 1', '1 inclus', 'sans', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype18` VALUES ('5', '0', 'ENG', '18', 'Do not display', 'Will display nothing', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype18` VALUES ('6', '1', 'ENG', '18', 'Show', 'Liste indépendante', 'ET', '1.50', '0.00', '0.00', '2', '2'); INSERT INTO `catype18` VALUES ('7', '2', 'ENG', '18', 'Option 18', 'defaut 1', '-', '-', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype18` VALUES ('9', '0', 'ITA', '18', 'Non visualizzare', 'Non verrà visualizzato nulla', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype18` VALUES ('10', '1', 'ITA', '18', 'Mostra', 'Liste indépendante', 'ET', '1.50', '0.00', '0.00', '2', '2'); INSERT INTO `catype18` VALUES ('12', '2', 'ITA', '18', 'Option 18', 'defaut 1', '-', '-', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype18` VALUES ('13', '0', 'ESP', '18', 'No mostrar', 'No mostrará nada', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype18` VALUES ('14', '1', 'ESP', '18', 'Mostrar', 'Liste indépendante', 'ET', '1.50', '0.00', '0.00', '2', '2'); INSERT INTO `catype18` VALUES ('15', '2', 'ESP', '18', 'Option 18', 'defaut 1', '-', '-', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype18` VALUES ('17', '0', 'DEU', '18', 'Nicht anzeigen', 'Wird nichts anzeigen', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype18` VALUES ('16', '1', 'DEU', '18', 'Show', 'Liste indépendante', 'ET', '1.50', '0.00', '0.00', '2', '2'); INSERT INTO `catype18` VALUES ('11', '2', 'DEU', '18', 'Option 18', 'defaut 1', '-', '-', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); -- Structure de la table `catype19` DROP TABLE IF EXISTS `catype19`; CREATE TABLE `catype19` ( `numCA19` int(3) NOT NULL AUTO_INCREMENT, `id` int(2) NOT NULL, `idLg` varchar(3) NOT NULL, `ordre` varchar(2) DEFAULT NULL, `nom` varchar(55) NOT NULL, `code1` varchar(255) NOT NULL, `code2` varchar(255) NOT NULL, `code3` varchar(255) DEFAULT NULL, `prixHT` decimal(10,2) NOT NULL, `prixTTC` decimal(10,2) NOT NULL, `imageCA` varchar(255) NOT NULL, `tvaTaux` int(1) NOT NULL, PRIMARY KEY (`numCA19`) ) ENGINE=MyISAM AUTO_INCREMENT=18 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; -- Données de la table `catype19` INSERT INTO `catype19` VALUES ('1', '0', 'FRA', '19', 'Ne pas afficher', 'N\'affichera rien', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype19` VALUES ('2', '1', 'FRA', '19', 'Afficher', 'Liste indépendante', 'ET', '1.50', '0.00', '0.00', '2', '2'); INSERT INTO `catype19` VALUES ('3', '2', 'FRA', '19', 'Option 19', 'defaut 1', '1 inclus', 'sans', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype19` VALUES ('5', '0', 'ENG', '19', 'Do not display', 'Will display nothing', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype19` VALUES ('6', '1', 'ENG', '19', 'Show', 'Liste indépendante', 'ET', '1.50', '0.00', '0.00', '2', '2'); INSERT INTO `catype19` VALUES ('7', '2', 'ENG', '19', 'Option 19', 'defaut 1', '-', '-', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype19` VALUES ('9', '0', 'ITA', '19', 'Non visualizzare', 'Non verrà visualizzato nulla', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype19` VALUES ('10', '1', 'ITA', '19', 'Mostra', 'Liste indépendante', 'ET', '1.50', '0.00', '0.00', '2', '2'); INSERT INTO `catype19` VALUES ('12', '2', 'ITA', '19', 'Option 19', 'defaut 1', '-', '-', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype19` VALUES ('13', '0', 'ESP', '19', 'No mostrar', 'No mostrará nada', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype19` VALUES ('14', '1', 'ESP', '19', 'Mostrar', 'Liste indépendante', 'ET', '1.50', '0.00', '0.00', '2', '2'); INSERT INTO `catype19` VALUES ('15', '2', 'ESP', '19', 'Option 19', 'defaut 1', '-', '-', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype19` VALUES ('17', '0', 'DEU', '19', 'Nicht anzeigen', 'Wird nichts anzeigen', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype19` VALUES ('16', '1', 'DEU', '19', 'Show', 'Liste indépendante', 'ET', '1.50', '0.00', '0.00', '2', '2'); INSERT INTO `catype19` VALUES ('11', '2', 'DEU', '19', 'Option 19', 'defaut 1', '-', '-', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); -- Structure de la table `catype20` DROP TABLE IF EXISTS `catype20`; CREATE TABLE `catype20` ( `numCA20` int(3) NOT NULL AUTO_INCREMENT, `id` int(2) NOT NULL, `idLg` varchar(3) NOT NULL, `ordre` varchar(2) DEFAULT NULL, `nom` varchar(55) NOT NULL, `code1` varchar(255) NOT NULL, `code2` varchar(255) NOT NULL, `code3` varchar(255) DEFAULT NULL, `prixHT` decimal(10,2) NOT NULL, `prixTTC` decimal(10,2) NOT NULL, `imageCA` varchar(255) NOT NULL, `tvaTaux` int(1) NOT NULL, PRIMARY KEY (`numCA20`) ) ENGINE=MyISAM AUTO_INCREMENT=18 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; -- Données de la table `catype20` INSERT INTO `catype20` VALUES ('1', '0', 'FRA', '20', 'Ne pas afficher', 'N\'affichera rien', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype20` VALUES ('2', '1', 'FRA', '20', 'Afficher', 'Liste indépendante', 'ET', '1.50', '0.00', '0.00', '2', '2'); INSERT INTO `catype20` VALUES ('3', '2', 'FRA', '20', 'Option 20', 'defaut 1', '1 inclus', 'sans', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype20` VALUES ('5', '0', 'ENG', '20', 'Do not display', 'Will display nothing', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype20` VALUES ('6', '1', 'ENG', '20', 'Show', 'Liste indépendante', 'ET', '1.50', '0.00', '0.00', '2', '2'); INSERT INTO `catype20` VALUES ('7', '2', 'ENG', '20', 'Option 20', 'defaut 1', '-', '-', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype20` VALUES ('9', '0', 'ITA', '20', 'Non visualizzare', 'Non verrà visualizzato nulla', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype20` VALUES ('10', '1', 'ITA', '20', 'Mostra', 'Liste indépendante', 'ET', '1.50', '0.00', '0.00', '2', '2'); INSERT INTO `catype20` VALUES ('12', '2', 'ITA', '20', 'Option 20', 'defaut 1', '-', '-', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype20` VALUES ('13', '0', 'ESP', '20', 'No mostrar', 'No mostrará nada', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype20` VALUES ('14', '1', 'ESP', '20', 'Mostrar', 'Liste indépendante', 'ET', '1.50', '0.00', '0.00', '2', '2'); INSERT INTO `catype20` VALUES ('15', '2', 'ESP', '20', 'Option 20', 'defaut 1', '-', '-', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype20` VALUES ('17', '0', 'DEU', '20', 'Nicht anzeigen', 'Wird nichts anzeigen', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype20` VALUES ('16', '1', 'DEU', '20', 'Show', 'Liste indépendante', 'ET', '1.50', '0.00', '0.00', '2', '2'); INSERT INTO `catype20` VALUES ('11', '2', 'DEU', '20', 'Option 20', 'defaut 1', '-', '-', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); -- Structure de la table `catype21` DROP TABLE IF EXISTS `catype21`; CREATE TABLE `catype21` ( `numCA21` int(3) NOT NULL AUTO_INCREMENT, `id` int(2) NOT NULL, `idLg` varchar(3) NOT NULL, `ordre` varchar(2) DEFAULT NULL, `nom` varchar(55) NOT NULL, `code1` varchar(255) NOT NULL, `code2` varchar(255) NOT NULL, `code3` varchar(255) DEFAULT NULL, `prixHT` decimal(10,2) NOT NULL, `prixTTC` decimal(10,2) NOT NULL, `imageCA` varchar(255) NOT NULL, `tvaTaux` int(1) NOT NULL, PRIMARY KEY (`numCA21`) ) ENGINE=MyISAM AUTO_INCREMENT=18 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; -- Données de la table `catype21` INSERT INTO `catype21` VALUES ('1', '0', 'FRA', '21', 'Ne pas afficher', 'N\'affichera rien', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype21` VALUES ('2', '1', 'FRA', '21', 'Afficher', 'Liste indépendante', 'ET', '1.50', '0.00', '0.00', '2', '2'); INSERT INTO `catype21` VALUES ('3', '2', 'FRA', '21', 'Option 21', 'defaut 1', '1 inclus', 'sans', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype21` VALUES ('5', '0', 'ENG', '21', 'Do not display', 'Will display nothing', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype21` VALUES ('6', '1', 'ENG', '21', 'Show', 'Liste indépendante', 'ET', '1.50', '0.00', '0.00', '2', '2'); INSERT INTO `catype21` VALUES ('7', '2', 'ENG', '21', 'Option 21', 'defaut 1', '-', '-', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype21` VALUES ('9', '0', 'ITA', '21', 'Non visualizzare', 'Non verrà visualizzato nulla', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype21` VALUES ('10', '1', 'ITA', '21', 'Mostra', 'Liste indépendante', 'ET', '1.50', '0.00', '0.00', '2', '2'); INSERT INTO `catype21` VALUES ('12', '2', 'ITA', '21', 'Option 21', 'defaut 1', '-', '-', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype21` VALUES ('13', '0', 'ESP', '21', 'No mostrar', 'No mostrará nada', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype21` VALUES ('14', '1', 'ESP', '21', 'Mostrar', 'Liste indépendante', 'ET', '1.50', '0.00', '0.00', '2', '2'); INSERT INTO `catype21` VALUES ('15', '2', 'ESP', '21', 'Option 21', 'defaut 1', '-', '-', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype21` VALUES ('17', '0', 'DEU', '21', 'Nicht anzeigen', 'Wird nichts anzeigen', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype21` VALUES ('16', '1', 'DEU', '21', 'Show', 'Liste indépendante', 'ET', '1.50', '0.00', '0.00', '2', '2'); INSERT INTO `catype21` VALUES ('11', '2', 'DEU', '21', 'Option 21', 'defaut 1', '-', '-', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); -- Structure de la table `catype22` DROP TABLE IF EXISTS `catype22`; CREATE TABLE `catype22` ( `numCA22` int(3) NOT NULL AUTO_INCREMENT, `id` int(2) NOT NULL, `idLg` varchar(3) NOT NULL, `ordre` varchar(2) DEFAULT NULL, `nom` varchar(55) NOT NULL, `code1` varchar(255) NOT NULL, `code2` varchar(255) NOT NULL, `code3` varchar(255) DEFAULT NULL, `prixHT` decimal(10,2) NOT NULL, `prixTTC` decimal(10,2) NOT NULL, `imageCA` varchar(255) NOT NULL, `tvaTaux` int(1) NOT NULL, PRIMARY KEY (`numCA22`) ) ENGINE=MyISAM AUTO_INCREMENT=18 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; -- Données de la table `catype22` INSERT INTO `catype22` VALUES ('1', '0', 'FRA', '22', 'Ne pas afficher', 'N\'affichera rien', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype22` VALUES ('2', '1', 'FRA', '22', 'Afficher', 'Liste indépendante', 'ET', '1.50', '0.00', '0.00', '2', '2'); INSERT INTO `catype22` VALUES ('3', '2', 'FRA', '22', 'Option 22', 'defaut 1', '1 inclus', 'sans', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype22` VALUES ('5', '0', 'ENG', '22', 'Do not display', 'Will display nothing', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype22` VALUES ('6', '1', 'ENG', '22', 'Show', 'Liste indépendante', 'ET', '1.50', '0.00', '0.00', '2', '2'); INSERT INTO `catype22` VALUES ('7', '2', 'ENG', '22', 'Option 22', 'defaut 1', '-', '-', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype22` VALUES ('9', '0', 'ITA', '22', 'Non visualizzare', 'Non verrà visualizzato nulla', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype22` VALUES ('10', '1', 'ITA', '22', 'Mostra', 'Liste indépendante', 'ET', '1.50', '0.00', '0.00', '2', '2'); INSERT INTO `catype22` VALUES ('12', '2', 'ITA', '22', 'Option 22', 'defaut 1', '-', '-', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype22` VALUES ('13', '0', 'ESP', '22', 'No mostrar', 'No mostrará nada', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype22` VALUES ('14', '1', 'ESP', '22', 'Mostrar', 'Liste indépendante', 'ET', '1.50', '0.00', '0.00', '2', '2'); INSERT INTO `catype22` VALUES ('15', '2', 'ESP', '22', 'Option 22', 'defaut 1', '-', '-', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype22` VALUES ('17', '0', 'DEU', '22', 'Nicht anzeigen', 'Wird nichts anzeigen', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype22` VALUES ('16', '1', 'DEU', '22', 'Show', 'Liste indépendante', 'ET', '1.50', '0.00', '0.00', '2', '2'); INSERT INTO `catype22` VALUES ('11', '2', 'DEU', '22', 'Option 22', 'defaut 1', '-', '-', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); -- Structure de la table `catype23` DROP TABLE IF EXISTS `catype23`; CREATE TABLE `catype23` ( `numCA23` int(3) NOT NULL AUTO_INCREMENT, `id` int(2) NOT NULL, `idLg` varchar(3) NOT NULL, `ordre` varchar(2) DEFAULT NULL, `nom` varchar(55) NOT NULL, `code1` varchar(255) NOT NULL, `code2` varchar(255) NOT NULL, `code3` varchar(255) DEFAULT NULL, `prixHT` decimal(10,2) NOT NULL, `prixTTC` decimal(10,2) NOT NULL, `imageCA` varchar(255) NOT NULL, `tvaTaux` int(1) NOT NULL, PRIMARY KEY (`numCA23`) ) ENGINE=MyISAM AUTO_INCREMENT=18 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; -- Données de la table `catype23` INSERT INTO `catype23` VALUES ('1', '0', 'FRA', '23', 'Ne pas afficher', 'N\'affichera rien', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype23` VALUES ('2', '1', 'FRA', '23', 'Afficher', 'Liste indépendante', 'ET', '1.50', '0.00', '0.00', '2', '2'); INSERT INTO `catype23` VALUES ('3', '2', 'FRA', '23', 'Option 23', 'defaut 1', '1 inclus', 'sans', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype23` VALUES ('5', '0', 'ENG', '23', 'Do not display', 'Will display nothing', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype23` VALUES ('6', '1', 'ENG', '23', 'Show', 'Liste indépendante', 'ET', '1.50', '0.00', '0.00', '2', '2'); INSERT INTO `catype23` VALUES ('7', '2', 'ENG', '23', 'Option 23', 'defaut 1', '-', '-', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype23` VALUES ('9', '0', 'ITA', '23', 'Non visualizzare', 'Non verrà visualizzato nulla', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype23` VALUES ('10', '1', 'ITA', '23', 'Mostra', 'Liste indépendante', 'ET', '1.50', '0.00', '0.00', '2', '2'); INSERT INTO `catype23` VALUES ('12', '2', 'ITA', '23', 'Option 23', 'defaut 1', '-', '-', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype23` VALUES ('13', '0', 'ESP', '23', 'No mostrar', 'No mostrará nada', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype23` VALUES ('14', '1', 'ESP', '23', 'Mostrar', 'Liste indépendante', 'ET', '1.50', '0.00', '0.00', '2', '2'); INSERT INTO `catype23` VALUES ('15', '2', 'ESP', '23', 'Option 23', 'defaut 1', '-', '-', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype23` VALUES ('17', '0', 'DEU', '23', 'Nicht anzeigen', 'Wird nichts anzeigen', '-', NULL, '0.00', '0.00', 'fa-duotone fa-user-check', '2'); INSERT INTO `catype23` VALUES ('16', '1', 'DEU', '23', 'Show', 'Liste indépendante', 'ET', '1.50', '0.00', '0.00', '2', '2'); INSERT INTO `catype23` VALUES ('11', '2', 'DEU', '23', 'Option 23', 'defaut 1', '-', '-', '0.00', '0.00', 'fa-duotone fa-user-check', '2'); -- Structure de la table `familles` DROP TABLE IF EXISTS `familles`; CREATE TABLE `familles` ( `idFam` int(3) NOT NULL DEFAULT 0, `description` varchar(100) NOT NULL DEFAULT '', `lienImageWeb` varchar(255) NOT NULL DEFAULT '', `grandeImage` varchar(250) NOT NULL DEFAULT '-', `status` int(1) NOT NULL, `afficher` tinyint(1) NOT NULL DEFAULT 1, PRIMARY KEY (`idFam`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; -- Données de la table `familles` INSERT INTO `familles` VALUES ('1', 'Description', './Catalogue/_images_categories/petites/imageComming.jpeg', './Catalogue/_images_categories/grandes/imageComming.jpeg', '1', '1'); INSERT INTO `familles` VALUES ('2', 'Description de la catégorie', './Catalogue/_images_categories/petites/catGrandeDefaut.png', './Catalogue/_images_categories/grandes/catGrandeDefaut.png', '1', '1'); INSERT INTO `familles` VALUES ('3', 'Description de la catégorie', './Catalogue/_parDefaut/symbole.png', './Catalogue/_images_categories/grandes/symbole.png', '1', '1'); INSERT INTO `familles` VALUES ('4', 'Catégorie 4', './Catalogue/_parDefaut/catGrandeDefaut.png', './Catalogue/_images_categories/grandes/catGrandeDefaut.png', '1', '1'); -- Structure de la table `familleslibelle` DROP TABLE IF EXISTS `familleslibelle`; CREATE TABLE `familleslibelle` ( `num` smallint(3) NOT NULL AUTO_INCREMENT, `idFam` int(3) NOT NULL DEFAULT 0, `idLg` char(50) NOT NULL, `libelle` varchar(100) NOT NULL, PRIMARY KEY (`num`), KEY `num` (`num`) ) ENGINE=MyISAM AUTO_INCREMENT=337 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; -- Données de la table `familleslibelle` INSERT INTO `familleslibelle` VALUES ('160', '1', 'ENG', 'Category 1'); INSERT INTO `familleslibelle` VALUES ('161', '1', 'ITA', 'Digita 1'); INSERT INTO `familleslibelle` VALUES ('162', '1', 'ESP', 'Categoría 1'); INSERT INTO `familleslibelle` VALUES ('163', '1', 'DEU', 'Kategorie 1'); INSERT INTO `familleslibelle` VALUES ('164', '2', 'FRA', 'Catégorie 2'); INSERT INTO `familleslibelle` VALUES ('165', '2', 'ENG', 'Nom de la catégorie'); INSERT INTO `familleslibelle` VALUES ('166', '2', 'ITA', 'Nom de la catégorie'); INSERT INTO `familleslibelle` VALUES ('167', '2', 'ESP', 'Nom de la catégorie'); INSERT INTO `familleslibelle` VALUES ('168', '2', 'DEU', 'Nom de la catégorie'); INSERT INTO `familleslibelle` VALUES ('169', '3', 'FRA', 'Catégorie 3'); INSERT INTO `familleslibelle` VALUES ('170', '3', 'ENG', 'Catégorie 3'); INSERT INTO `familleslibelle` VALUES ('171', '3', 'ITA', 'Catégorie 3'); INSERT INTO `familleslibelle` VALUES ('172', '3', 'ESP', 'Catégorie 3'); INSERT INTO `familleslibelle` VALUES ('173', '3', 'DEU', 'Catégorie 3'); INSERT INTO `familleslibelle` VALUES ('284', '1', 'FRA', 'Catégorie 1'); INSERT INTO `familleslibelle` VALUES ('336', '4', 'DEU', 'Kategoriename eric2'); INSERT INTO `familleslibelle` VALUES ('335', '4', 'ESP', 'Nombre de la categoría eric2'); INSERT INTO `familleslibelle` VALUES ('334', '4', 'ITA', 'Nome della categoria eric2'); INSERT INTO `familleslibelle` VALUES ('333', '4', 'ENG', 'Category name eric2'); INSERT INTO `familleslibelle` VALUES ('332', '4', 'FRA', 'Catégorie 4'); -- Structure de la table `libelleetatsprd` DROP TABLE IF EXISTS `libelleetatsprd`; CREATE TABLE `libelleetatsprd` ( `numEtat` int(3) NOT NULL AUTO_INCREMENT, `idEtat` int(3) NOT NULL, `idLg` char(3) NOT NULL, `libelle` varchar(50) NOT NULL, PRIMARY KEY (`numEtat`) ) ENGINE=MyISAM AUTO_INCREMENT=110 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; -- Données de la table `libelleetatsprd` INSERT INTO `libelleetatsprd` VALUES ('1', '3', 'ENG', 'Light defaults'); INSERT INTO `libelleetatsprd` VALUES ('2', '4', 'FRA', 'Occasion, légers défauts'); INSERT INTO `libelleetatsprd` VALUES ('99', '4', 'DEU', 'leichte Mängel'); INSERT INTO `libelleetatsprd` VALUES ('6', '2', 'FRA', 'Neuf'); INSERT INTO `libelleetatsprd` VALUES ('7', '2', 'ENG', 'New'); INSERT INTO `libelleetatsprd` VALUES ('11', '3', 'FRA', 'Occasion'); INSERT INTO `libelleetatsprd` VALUES ('98', '3', 'DEU', 'Gebraucht'); INSERT INTO `libelleetatsprd` VALUES ('97', '2', 'DEU', 'Neu'); INSERT INTO `libelleetatsprd` VALUES ('96', '1', 'DEU', 'Keine'); INSERT INTO `libelleetatsprd` VALUES ('89', '2', 'ITA', 'Nuovo'); INSERT INTO `libelleetatsprd` VALUES ('90', '3', 'ITA', 'Usato'); INSERT INTO `libelleetatsprd` VALUES ('91', '4', 'ITA', 'lievi difetti'); INSERT INTO `libelleetatsprd` VALUES ('94', '3', 'ESP', 'Usado'); INSERT INTO `libelleetatsprd` VALUES ('95', '4', 'ESP', 'defectos leves'); INSERT INTO `libelleetatsprd` VALUES ('88', '1', 'ITA', 'Nessuno'); INSERT INTO `libelleetatsprd` VALUES ('92', '1', 'ESP', 'Ninguno'); INSERT INTO `libelleetatsprd` VALUES ('93', '2', 'ESP', 'Nuevo'); INSERT INTO `libelleetatsprd` VALUES ('85', '4', 'ENG', 'Some damage'); INSERT INTO `libelleetatsprd` VALUES ('83', '1', 'FRA', 'Aucun'); INSERT INTO `libelleetatsprd` VALUES ('84', '1', 'ENG', 'None'); INSERT INTO `libelleetatsprd` VALUES ('100', '5', 'FRA', 'Reconditionné'); INSERT INTO `libelleetatsprd` VALUES ('101', '5', 'ENG', 'Refurbished'); INSERT INTO `libelleetatsprd` VALUES ('102', '5', 'ITA', 'RISTRUTTURATO'); INSERT INTO `libelleetatsprd` VALUES ('103', '5', 'ESP', 'Renovado'); INSERT INTO `libelleetatsprd` VALUES ('104', '5', 'DEU', 'Renoviert'); -- Structure de la table `prdOptions` DROP TABLE IF EXISTS `prdOptions`; CREATE TABLE `prdOptions` ( `idOpt` int(4) NOT NULL AUTO_INCREMENT, `numListe` int(1) NOT NULL DEFAULT 0, `idLigne` int(4) NOT NULL, `itemNumber` int(1) DEFAULT 0, `idClient` varchar(254) NOT NULL, `idCde` int(4) NOT NULL, `idLgCde` int(4) NOT NULL, `idPrd` int(3) NOT NULL, `prixHT` decimal(12,4) NOT NULL, `prixTTC` decimal(12,4) NOT NULL, `quantite` int(1) NOT NULL, `libTraduit` varchar(254) NOT NULL, `tvaTaux` int(1) NOT NULL, `tvaMontant` decimal(12,4) NOT NULL, `prixTotHT` decimal(12,4) NOT NULL, `prixTotTTC` decimal(12,4) NOT NULL, PRIMARY KEY (`idOpt`) ) ENGINE=InnoDB AUTO_INCREMENT=7584 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='formulaire option panier'; -- Données de la table `prdOptions` INSERT INTO `prdOptions` VALUES ('7582', '0', '6', '2', '', '8', '2', '1', '0.0000', '0.0000', '1', 'Sans carte', '10', '0.0000', '0.0000', '0.0000'); -- Structure de la table `produits` DROP TABLE IF EXISTS `produits`; CREATE TABLE `produits` ( `idPrd` int(4) NOT NULL, `refPrd` varchar(50) NOT NULL DEFAULT '-', `idFam` int(3) DEFAULT 1, `idCat` int(3) DEFAULT 1, `lienImagePt` varchar(255) NOT NULL DEFAULT './Catalogue/_images_produits/prdDefaut.png', `lienImageGd` varchar(255) NOT NULL DEFAULT './Catalogue/_images_produits/grandes/prdDefaut.png', `promo` decimal(10,2) DEFAULT 0.00, `gondole` int(1) DEFAULT 0, `new` int(1) NOT NULL DEFAULT 0, `afficheGond` int(3) DEFAULT 0, `prixHt` decimal(12,4) DEFAULT 0.0000, `prixTtc` decimal(12,4) DEFAULT 0.0000, `tva` int(1) DEFAULT 0, `idEtat` int(3) DEFAULT 1, `delais` int(3) NOT NULL DEFAULT 1, `uniteDelais` int(1) DEFAULT 0, `poids` decimal(5,2) DEFAULT 0.00, `unitePoids` int(1) DEFAULT 0, `annee` varchar(4) NOT NULL DEFAULT '-', `stock` int(3) DEFAULT 1, `idPaysPrd` int(3) NOT NULL DEFAULT 0, `idMailPrd` varchar(255) NOT NULL DEFAULT '-', `couleur1` int(3) NOT NULL DEFAULT 0, `couleur2` int(3) NOT NULL DEFAULT 0, `couleur3` int(3) NOT NULL DEFAULT 0, `idLargeur` decimal(9,2) NOT NULL DEFAULT 0.00, `uniteLarg` int(2) NOT NULL DEFAULT 1, `idHauteur` decimal(9,2) NOT NULL DEFAULT 0.00, `uniteHaut` int(2) NOT NULL DEFAULT 1, `idLongueur` decimal(9,2) NOT NULL DEFAULT 0.00, `uniteLong` int(2) NOT NULL DEFAULT 1, `idDates` int(3) NOT NULL DEFAULT 0, `idType1` int(3) NOT NULL DEFAULT 0, `idType2` int(3) NOT NULL DEFAULT 0, `idType3` int(3) NOT NULL DEFAULT 0, `idType4` int(3) NOT NULL DEFAULT 0, `idType5` int(3) NOT NULL DEFAULT 0, `idType6` int(3) NOT NULL DEFAULT 0, `idType7` int(3) NOT NULL DEFAULT 0, `idType8` int(3) NOT NULL DEFAULT 0, `idType9` int(3) NOT NULL DEFAULT 0, `idType10` int(3) NOT NULL DEFAULT 0, `idType11` int(1) NOT NULL DEFAULT 0, `idType12` int(1) NOT NULL DEFAULT 0, `idType13` int(1) NOT NULL DEFAULT 0, `idType14` int(1) NOT NULL DEFAULT 0, `idType15` int(1) NOT NULL DEFAULT 0, `idType16` int(1) NOT NULL DEFAULT 0, `idType17` int(1) NOT NULL DEFAULT 0, `idType18` int(1) NOT NULL DEFAULT 0, `idType19` int(1) NOT NULL DEFAULT 0, `idType20` int(1) NOT NULL DEFAULT 0, `idType21` int(1) NOT NULL DEFAULT 0, `idType22` int(1) NOT NULL DEFAULT 0, `idType23` int(1) NOT NULL DEFAULT 0, `lienImgGauche` varchar(200) NOT NULL DEFAULT '-', `lienImgDroite` varchar(200) NOT NULL DEFAULT '-', `lienImgDessus` varchar(200) NOT NULL DEFAULT '-', `lienImgDessous` varchar(200) NOT NULL DEFAULT '-', `lienVideo` varchar(200) NOT NULL DEFAULT '-', `lienNotice` varchar(200) NOT NULL DEFAULT '-', `statusPrd` int(1) NOT NULL DEFAULT 1, PRIMARY KEY (`idPrd`) ) ENGINE=MyISAM AUTO_INCREMENT=32 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; -- Données de la table `produits` INSERT INTO `produits` VALUES ('1', 'ref-010', '1', '1', './Catalogue/_parDefaut/symbole.png', './Catalogue/_images_produits/grandes/symbole.png', '14.00', '1', '0', '1', '300.0000', '316.5000', '1', '3', '5', '1', '1.00', '1', '2023', '540', '0', 'testeur@123ventes.com', '1', '2', '5', '10.00', '2', '20.00', '2', '300.00', '2', '1', '1', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', './Catalogue/_images_produits/gauches/symbole.png', './Catalogue/_images_produits/droites/symbole.png', './Catalogue/_images_produits/dessus/symbole.png', './Catalogue/_images_produits/dessous/symbole.png', './Catalogue/_images_produits/videos/video.jpg', './Catalogue/_notices/noticeDefaut.pdf', '1'); INSERT INTO `produits` VALUES ('2', 'ref-020', '1', '1', './Catalogue/_parDefaut/imageBleu.png', './Catalogue/_images_produits/grandes/prdDefaut.png', '3.00', '1', '0', '1', '18.1500', '20.0000', '2', '2', '12', '1', '2.68', '1', '-', '0', '84', '-', '1', '4', '7', '1.20', '1', '3.60', '1', '4.80', '1', '0', '0', '1', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', './Catalogue/_images_produits/gauches/prdDefaut.png', './Catalogue/_images_produits/droites/prdDefaut.png', './Catalogue/_images_produits/dessus/prdDefaut.png', './Catalogue/_images_produits/dessous/prdDefaut.png', './Catalogue/_images_produits/videos/video.jpg', '', '1'); INSERT INTO `produits` VALUES ('3', 'ref-030', '1', '2', './Catalogue/_parDefaut/imageViolette.jpeg', './Catalogue/_images_produits/grandes/prdDefaut.png', '5.00', '0', '0', '0', '27.2200', '30.0000', '2', '2', '1', '1', '600.00', '1', '-', '4', '0', '-', '0', '0', '0', '0.00', '1', '0.00', '1', '0.00', '1', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', './Catalogue/_images_produits/gauches/prdDefaut.png', './Catalogue/_images_produits/droites/prdDefaut.png', './Catalogue/_images_produits/dessus/prdDefaut.png', './Catalogue/_images_produits/dessous/prdDefaut.png', './Catalogue/_images_produits/videos/video.jpg', '', '1'); INSERT INTO `produits` VALUES ('5', 'ref-050', '1', '2', './Catalogue/_parDefaut/imageViolette.jpeg', './Catalogue/_parDefaut/grandes/prdGrandeDefaut.png', '0.00', '1', '1', '3', '47.3900', '50.0000', '1', '2', '1', '1', '4.00', '1', '-', '8', '0', '-', '0', '0', '0', '0.00', '1', '0.00', '1', '0.00', '1', '0', '0', '0', '0', '0', '0', '1', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-', '-', '-', '-', '-', '-', '1'); INSERT INTO `produits` VALUES ('6', 'ref-060', '1', '5', './Catalogue/_parDefaut/symbole.png', './Catalogue/_parDefaut/symbole.png', '0.00', '1', '0', '2', '56.8700', '60.0000', '1', '1', '1', '1', '4.00', '1', '-', '40', '0', '-', '0', '0', '0', '0.00', '1', '0.00', '1', '0.00', '1', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', './Catalogue/_parDefaut/symbole.png', './Catalogue/_parDefaut/symbole.png', './Catalogue/_parDefaut/symbole.png', './Catalogue/_parDefaut/symbole.png', './Catalogue/_images_produits/videos/video.jpg', '-', '1'); INSERT INTO `produits` VALUES ('7', '700', '2', '3', './Catalogue/_parDefaut/prdDefaut.png', './Catalogue/_parDefaut/prdDefaut.png', '100.00', '1', '0', '4', '1100.0000', '1160.5000', '1', '1', '1', '1', '0.00', '1', '-', '5', '0', '-', '0', '0', '0', '0.00', '1', '0.00', '1', '0.00', '1', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', './Catalogue/_parDefaut/prdDefaut.png', './Catalogue/_parDefaut/prdDefaut.png', './Catalogue/_parDefaut/prdDefaut.png', './Catalogue/_parDefaut/prdDefaut.png', './Catalogue/_images_produits/videos/video.jpg', '-', '1'); INSERT INTO `produits` VALUES ('8', '800', '2', '4', './Catalogue/_parDefaut/prdDefaut.png', './Catalogue/_parDefaut/prdDefaut.png', '0.00', '1', '0', '5', '2500000.0000', '2987500.0000', '3', '1', '1', '1', '0.00', '1', '-', '8', '0', '-', '0', '0', '0', '0.00', '1', '0.00', '1', '0.00', '1', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', './Catalogue/_parDefaut/prdDefaut.png', './Catalogue/_parDefaut/prdDefaut.png', './Catalogue/_parDefaut/prdDefaut.png', './Catalogue/_parDefaut/prdDefaut.png', './Catalogue/_images_produits/videos/video.jpg', '-', '1'); INSERT INTO `produits` VALUES ('9', '900', '2', '6', './Catalogue/_images_produits/petites/imageRose.jpeg', './Catalogue/_images_produits/petites/imageRose.jpeg', '0.00', '0', '0', '0', '0.0000', '0.0000', '0', '1', '1', '0', '0.00', '0', '-', '1', '0', '-', '0', '0', '0', '0.00', '1', '0.00', '1', '0.00', '1', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', './Catalogue/_images_produits/petites/imageRose.jpeg', './Catalogue/_images_produits/petites/imageRose.jpeg', './Catalogue/_images_produits/petites/imageRose.jpeg', './Catalogue/_images_produits/petites/imageRose.jpeg', './Catalogue/_images_produits/videos/video.jpg', '-', '1'); INSERT INTO `produits` VALUES ('10', '-', '4', '9', './Catalogue/_images_produits/grandes/imageDefaut.png', './Catalogue/_images_produits/grandes/imageDefaut.png', '0.00', '0', '0', '0', '0.0000', '0.0000', '2', '1', '1', '0', '0.00', '0', '-', '1', '0', '-', '0', '0', '0', '0.00', '1', '0.00', '1', '0.00', '1', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', './Catalogue/_images_produits/grandes/imageDefaut.png', './Catalogue/_images_produits/grandes/imageDefaut.png', './Catalogue/_images_produits/grandes/imageDefaut.png', './Catalogue/_images_produits/grandes/imageDefaut.png', './Catalogue/_images_produits/videos/video.jpg', '-', '1'); -- Structure de la table `produitslibelle` DROP TABLE IF EXISTS `produitslibelle`; CREATE TABLE `produitslibelle` ( `numPrd` int(3) NOT NULL AUTO_INCREMENT, `idPrd` int(4) NOT NULL DEFAULT 0, `idLg` char(3) NOT NULL DEFAULT '', `nomPrd` varchar(115) NOT NULL DEFAULT '', `descCourt` text NOT NULL, `descLong` text NOT NULL DEFAULT '-', PRIMARY KEY (`numPrd`) ) ENGINE=MyISAM AUTO_INCREMENT=190 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; -- Données de la table `produitslibelle` INSERT INTO `produitslibelle` VALUES ('78', '1', 'FRA', 'Canapé - 1', 'Description courte de l\'article 10 Français', '123ventes.com'); INSERT INTO `produitslibelle` VALUES ('79', '1', 'ENG', 'Product name', 'Short description', 'Long description'); INSERT INTO `produitslibelle` VALUES ('80', '2', 'FRA', 'Article 2', 'Description courte de l\\\'article Français ', 'Utilisez ces formidables décorations pour Noël'); INSERT INTO `produitslibelle` VALUES ('81', '2', 'ENG', 'Product name', 'Short description', 'Long description'); INSERT INTO `produitslibelle` VALUES ('96', '3', 'ENG', 'Boules de pétanques', 'Short description', 'Long description'); INSERT INTO `produitslibelle` VALUES ('95', '3', 'FRA', 'Article 3', 'Description courte de l\'article 10 Français', 'Boules de pétanques'); INSERT INTO `produitslibelle` VALUES ('136', '7', 'DEU', 'Nom de l\'article', 'Description courte article 7', '-'); INSERT INTO `produitslibelle` VALUES ('135', '7', 'ESP', 'Nom de l\'article', 'Description courte article 7', '-'); INSERT INTO `produitslibelle` VALUES ('100', '5', 'FRA', 'Article 5', 'Description courte de l\\\'article Français ', 'Description article 5'); INSERT INTO `produitslibelle` VALUES ('101', '5', 'ENG', 'Product name', 'Short description', 'Long description'); INSERT INTO `produitslibelle` VALUES ('102', '6', 'FRA', 'Article 6', 'Description courte de l\'article 10 Français', 'Description'); INSERT INTO `produitslibelle` VALUES ('103', '6', 'ENG', 'Product name', 'Short description', 'Long description'); INSERT INTO `produitslibelle` VALUES ('104', '1', 'ITA', 'Nome del prodotto', 'Descrizione breve', 'Descrizione lunga'); INSERT INTO `produitslibelle` VALUES ('105', '2', 'ITA', 'Nome del prodotto', 'Descrizione', 'Descrizione lunga'); INSERT INTO `produitslibelle` VALUES ('106', '3', 'ITA', 'Nome del prodotto', 'Descrizione', 'Descrizione lunga'); INSERT INTO `produitslibelle` VALUES ('134', '7', 'ITA', 'Nom de l\'article', 'Description courte article 7', '-'); INSERT INTO `produitslibelle` VALUES ('108', '5', 'ITA', 'Nome del prodotto', 'Descrizione courte article 5', 'Descrizione lunga'); INSERT INTO `produitslibelle` VALUES ('109', '6', 'ITA', 'Nome del prodotto', 'Descrizione courte article 6', 'Descrizione lunga'); INSERT INTO `produitslibelle` VALUES ('110', '1', 'ESP', 'Artículo1', 'Descripción corta', 'Descripción larga'); INSERT INTO `produitslibelle` VALUES ('111', '2', 'ESP', 'Artículo2', 'Decoración navideña', 'Usa estas increíbles decoraciones para Navidad'); INSERT INTO `produitslibelle` VALUES ('112', '3', 'ESP', 'Artículo3', 'Bolas de petanca', 'Bolas de petanca'); INSERT INTO `produitslibelle` VALUES ('133', '7', 'ENG', 'Nom de l\'article', 'Description courte article 7', '-'); INSERT INTO `produitslibelle` VALUES ('114', '5', 'ESP', 'Artículo 5', 'Descripción breve del artículo 5', 'Descripción del artículo 5'); INSERT INTO `produitslibelle` VALUES ('115', '6', 'ESP', 'Elemento 6', 'Descripción breve del elemento 6', 'Descripción larga'); INSERT INTO `produitslibelle` VALUES ('116', '1', 'DEU', 'Artikel1', 'Kurzbeschreibung', 'Langbeschreibung'); INSERT INTO `produitslibelle` VALUES ('117', '2', 'DEU', 'Artikel2', 'Weihnachtsdekoration', 'Verwenden Sie diese tollen Dekorationen für Weihnachten'); INSERT INTO `produitslibelle` VALUES ('118', '3', 'DEU', 'Artikel3', 'Petanque-Kugeln', 'Petanque-Kugeln'); INSERT INTO `produitslibelle` VALUES ('132', '7', 'FRA', 'Article 7', 'Description courte article 7', '-'); INSERT INTO `produitslibelle` VALUES ('120', '5', 'DEU', 'Artikel 5', 'Artikelkurzbezeichnung 5', 'Artikelbezeichnung 5'); INSERT INTO `produitslibelle` VALUES ('121', '6', 'DEU', 'Item 6', 'Item 6 Short Description', 'Artikelbezeichnung'); INSERT INTO `produitslibelle` VALUES ('146', '8', 'FRA', 'Article 8', 'Description courte de l\'article 10 Français', 'Description longue de l\'article 8 Français'); INSERT INTO `produitslibelle` VALUES ('147', '8', 'ENG', 'Nom de l\'article Anglais ', 'Description courte de l\'article Anglais ', 'Description longue de l\'article 8 Anglais'); INSERT INTO `produitslibelle` VALUES ('148', '8', 'ITA', 'Nom de l\'article Italien ', 'Description courte de l\'article Italien ', 'Description longue de l\'article 8 Italien'); INSERT INTO `produitslibelle` VALUES ('149', '8', 'ESP', 'Nom de l\'article Espagnol ', 'Description courte de l\'article Espagnol ', 'Description longue de l\'article 8 Espagnol'); INSERT INTO `produitslibelle` VALUES ('150', '8', 'DEU', 'Nom de l\'article Allemand ', 'Description courte de l\'article Allemand ', 'Description longue de l\'article 8 Allemand'); INSERT INTO `produitslibelle` VALUES ('183', '9', 'ESP', 'Nom de l\'article Espagnol ', 'Description courte de l\'article Espagnol ', 'Description longue de l\'article 9 Espagnol'); INSERT INTO `produitslibelle` VALUES ('188', '10', 'ESP', 'pizza 10 ', 'Una muestra del artículo 10 francés', 'Descripción larga del artículo 10 en francés'); INSERT INTO `produitslibelle` VALUES ('187', '10', 'ITA', 'pizza 10 francese', 'assaggio dell\'articolo 10 francese', 'Descrizione lunga dell\'articolo 10 francese'); INSERT INTO `produitslibelle` VALUES ('186', '10', 'ENG', 'Article Name 10 French', 'taste of article 10 French', 'Long description of article 10 French'); INSERT INTO `produitslibelle` VALUES ('185', '10', 'FRA', 'Nom de l\'article 10 Français', 'Description courte de l\'article 10 Français', 'Description longue de l\'article 10 Français'); INSERT INTO `produitslibelle` VALUES ('184', '9', 'DEU', 'Nom de l\'article Allemand ', 'Description courte de l\'article Allemand ', 'Description longue de l\'article 9 Allemand'); INSERT INTO `produitslibelle` VALUES ('182', '9', 'ITA', 'Nom de l\'article Italien ', 'Description courte de l\'article Italien ', 'Description longue de l\'article 9 Italien'); INSERT INTO `produitslibelle` VALUES ('180', '9', 'FRA', 'Nom de l\'article Français eric', 'Description courte de l\'article 10 Français', 'Description longue de l\'article 9 Français'); INSERT INTO `produitslibelle` VALUES ('181', '9', 'ENG', 'Nom de l\'article Anglais ', 'Description courte de l\'article Anglais ', 'Description longue de l\'article 9 Anglais'); INSERT INTO `produitslibelle` VALUES ('189', '10', 'DEU', 'Pizza 10 ', 'Ein Beispiel für den französischen Artikel 10', 'Lange Beschreibung von Artikel 10 auf Französisch'); -- Structure de la table `rAvantages` DROP TABLE IF EXISTS `rAvantages`; CREATE TABLE `rAvantages` ( `numA` int(1) NOT NULL AUTO_INCREMENT, `descA` varchar(255) NOT NULL, `codeA` varchar(255) NOT NULL, `avantage` varchar(55) NOT NULL, PRIMARY KEY (`numA`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Données de la table `rAvantages` INSERT INTO `rAvantages` VALUES ('1', 'Livraison offerte', 'livOfferte', 'livraison offerte'); INSERT INTO `rAvantages` VALUES ('2', 'Réduction 18,75%', 'rem=18.75', 'Remise 18.75%'); INSERT INTO `rAvantages` VALUES ('3', '1 article offert', 'artOffert', 'article offert'); INSERT INTO `rAvantages` VALUES ('4', '10 points offerts', 'point=10', '10 points'); -- Structure de la table `rConditions` DROP TABLE IF EXISTS `rConditions`; CREATE TABLE `rConditions` ( `numR` int(1) NOT NULL AUTO_INCREMENT, `descR` varchar(255) NOT NULL, `condR` varchar(100) NOT NULL, `codeR` varchar(255) NOT NULL, `operateurR` varchar(55) NOT NULL, `seuilR` varchar(55) NOT NULL, PRIMARY KEY (`numR`), UNIQUE KEY `numR` (`numR`) ) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Données de la table `rConditions` INSERT INTO `rConditions` VALUES ('1', 'Nbre art > 5', 'quantite', '$qte', '>', '5'); INSERT INTO `rConditions` VALUES ('2', 'Montant > 10', 'montant', 'totalTtcCde', '>', '10'); INSERT INTO `rConditions` VALUES ('3', 'Nbre cdes = 20', 'nbCde', 'nbCde', '>=', '20'); INSERT INTO `rConditions` VALUES ('4', 'Catégorie = 1', 'fam', 'idFam', '=', '1'); INSERT INTO `rConditions` VALUES ('5', 'Sous catégorie = 1', 'cat', 'idCat', '=', '1'); INSERT INTO `rConditions` VALUES ('6', 'Article = ref-010', 'art', 'refPrd', '=', 'ref-010'); INSERT INTO `rConditions` VALUES ('7', 'Date avant 20/08', 'date', 'dateCdeModif', '<=', '20'); INSERT INTO `rConditions` VALUES ('9', 'Plus de 100 points', 'points', 'points', '>=', '100'); -- Structure de la table `rRegles` DROP TABLE IF EXISTS `rRegles`; CREATE TABLE `rRegles` ( `num` int(11) NOT NULL AUTO_INCREMENT, `activ` tinyint(1) NOT NULL, `prio` int(1) NOT NULL, `description` varchar(255) NOT NULL, `C1` varchar(55) NOT NULL, `C2` varchar(55) NOT NULL, `C3` varchar(55) NOT NULL, `avantage` varchar(55) NOT NULL, `typeAvantage` varchar(55) NOT NULL, PRIMARY KEY (`num`) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Données de la table `rRegles` INSERT INTO `rRegles` VALUES ('1', '0', '0', '5 articles et ref=010', '1', '-', '-', 'livOfferte', 'livraison'); INSERT INTO `rRegles` VALUES ('2', '0', '1', '5 articles et ref=010', '1', '-', '-', 'artOffert', 'panier'); INSERT INTO `rRegles` VALUES ('3', '1', '1', '5 articles et ref=010', '1', '6', '-', 'rem=18.75', 'panier'); INSERT INTO `rRegles` VALUES ('4', '0', '1', 'Marguerite avant le 20/08', '100points', 'date', 'idPrd', 'artOffert', 'panier'); -- Structure de la table `unitesdelais` DROP TABLE IF EXISTS `unitesdelais`; CREATE TABLE `unitesdelais` ( `numDelais` int(3) NOT NULL AUTO_INCREMENT, `idDelais` int(3) NOT NULL, `idLg` varchar(3) NOT NULL, `libelle` varchar(100) NOT NULL, PRIMARY KEY (`numDelais`), KEY `id` (`idDelais`), KEY `id_2` (`idDelais`) ) ENGINE=InnoDB AUTO_INCREMENT=65 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; -- Données de la table `unitesdelais` INSERT INTO `unitesdelais` VALUES ('1', '1', 'FRA', 'Jours'); INSERT INTO `unitesdelais` VALUES ('2', '1', 'ENG', 'Days'); INSERT INTO `unitesdelais` VALUES ('3', '2', 'FRA', 'Semaines'); INSERT INTO `unitesdelais` VALUES ('4', '2', 'ENG', 'Weeks'); INSERT INTO `unitesdelais` VALUES ('5', '3', 'FRA', 'Mois'); INSERT INTO `unitesdelais` VALUES ('6', '3', 'ENG', 'Months'); INSERT INTO `unitesdelais` VALUES ('7', '4', 'FRA', 'Années'); INSERT INTO `unitesdelais` VALUES ('8', '4', 'ENG', 'Years'); INSERT INTO `unitesdelais` VALUES ('29', '1', 'ITA', 'Giorni'); INSERT INTO `unitesdelais` VALUES ('30', '2', 'ITA', 'Settimane'); INSERT INTO `unitesdelais` VALUES ('31', '3', 'ITA', 'Mese'); INSERT INTO `unitesdelais` VALUES ('32', '4', 'ITA', 'Anni'); INSERT INTO `unitesdelais` VALUES ('34', '1', 'ESP', 'Días'); INSERT INTO `unitesdelais` VALUES ('35', '2', 'ESP', 'Semanas'); INSERT INTO `unitesdelais` VALUES ('36', '3', 'ESP', 'Mes'); INSERT INTO `unitesdelais` VALUES ('37', '4', 'ESP', 'Años'); INSERT INTO `unitesdelais` VALUES ('39', '1', 'DEU', 'Tage'); INSERT INTO `unitesdelais` VALUES ('40', '2', 'DEU', 'Wochen'); INSERT INTO `unitesdelais` VALUES ('41', '3', 'DEU', 'Monat'); INSERT INTO `unitesdelais` VALUES ('42', '4', 'DEU', 'Jahre'); INSERT INTO `unitesdelais` VALUES ('44', '6', 'FRA', 'heures'); INSERT INTO `unitesdelais` VALUES ('45', '6', 'ENG', 'hours'); INSERT INTO `unitesdelais` VALUES ('46', '6', 'ITA', 'ore'); INSERT INTO `unitesdelais` VALUES ('47', '6', 'ESP', 'horas'); INSERT INTO `unitesdelais` VALUES ('48', '6', 'DEU', 'std.'); -- Structure de la table `unitesdim` DROP TABLE IF EXISTS `unitesdim`; CREATE TABLE `unitesdim` ( `numDim` int(3) NOT NULL AUTO_INCREMENT, `idDim` int(2) NOT NULL, `idLg` varchar(3) NOT NULL, `libelle` varchar(100) NOT NULL, PRIMARY KEY (`numDim`) ) ENGINE=InnoDB AUTO_INCREMENT=39 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; -- Données de la table `unitesdim` INSERT INTO `unitesdim` VALUES ('1', '1', 'FRA', 'mètres'); INSERT INTO `unitesdim` VALUES ('2', '1', 'ENG', 'meter'); INSERT INTO `unitesdim` VALUES ('3', '2', 'FRA', 'centimètres'); INSERT INTO `unitesdim` VALUES ('4', '2', 'ENG', 'centimeters'); INSERT INTO `unitesdim` VALUES ('5', '3', 'FRA', 'décimètres'); INSERT INTO `unitesdim` VALUES ('6', '3', 'ENG', 'decilmeters'); INSERT INTO `unitesdim` VALUES ('7', '4', 'FRA', 'kilomètrres'); INSERT INTO `unitesdim` VALUES ('8', '4', 'ENG', 'kilometers'); INSERT INTO `unitesdim` VALUES ('15', '5', 'FRA', 'millimètres'); INSERT INTO `unitesdim` VALUES ('16', '5', 'ENG', 'milimeters'); INSERT INTO `unitesdim` VALUES ('19', '1', 'ITA', 'metri'); INSERT INTO `unitesdim` VALUES ('20', '2', 'ITA', 'centimetri'); INSERT INTO `unitesdim` VALUES ('21', '3', 'ITA', 'decimetri'); INSERT INTO `unitesdim` VALUES ('22', '4', 'ITA', 'chilometri'); INSERT INTO `unitesdim` VALUES ('23', '5', 'ITA', 'millimetri'); INSERT INTO `unitesdim` VALUES ('24', '1', 'ESP', 'metros'); INSERT INTO `unitesdim` VALUES ('25', '2', 'ESP', 'centímetros'); INSERT INTO `unitesdim` VALUES ('26', '3', 'ESP', 'decimetros'); INSERT INTO `unitesdim` VALUES ('27', '4', 'ESP', 'kilómetros'); INSERT INTO `unitesdim` VALUES ('28', '5', 'ESP', 'milímetros'); INSERT INTO `unitesdim` VALUES ('29', '1', 'DEU', 'Meter'); INSERT INTO `unitesdim` VALUES ('30', '2', 'DEU', 'Zentimeter'); INSERT INTO `unitesdim` VALUES ('31', '3', 'DEU', 'Dezimeter'); INSERT INTO `unitesdim` VALUES ('32', '4', 'DEU', 'Kilometer'); INSERT INTO `unitesdim` VALUES ('33', '5', 'DEU', 'Millimeter'); -- Structure de la table `unitespoids` DROP TABLE IF EXISTS `unitespoids`; CREATE TABLE `unitespoids` ( `numPoids` int(3) NOT NULL AUTO_INCREMENT, `idPoids` int(2) NOT NULL, `idLg` varchar(3) NOT NULL, `libelle` varchar(100) NOT NULL, PRIMARY KEY (`numPoids`) ) ENGINE=InnoDB AUTO_INCREMENT=59 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; -- Données de la table `unitespoids` INSERT INTO `unitespoids` VALUES ('31', '1', 'FRA', 'grammes'); INSERT INTO `unitespoids` VALUES ('32', '2', 'FRA', 'kilos'); INSERT INTO `unitespoids` VALUES ('33', '3', 'FRA', 'mili-grammes'); INSERT INTO `unitespoids` VALUES ('34', '4', 'FRA', 'centi-grammes'); INSERT INTO `unitespoids` VALUES ('35', '1', 'ENG', 'grams'); INSERT INTO `unitespoids` VALUES ('36', '2', 'ENG', 'kilos'); INSERT INTO `unitespoids` VALUES ('37', '3', 'ENG', 'miligrams'); INSERT INTO `unitespoids` VALUES ('38', '4', 'ENG', 'centigrams'); INSERT INTO `unitespoids` VALUES ('39', '1', 'ITA', 'grammi'); INSERT INTO `unitespoids` VALUES ('40', '2', 'ITA', 'chili'); INSERT INTO `unitespoids` VALUES ('41', '3', 'ITA', 'miligrammi'); INSERT INTO `unitespoids` VALUES ('42', '4', 'ITA', 'centigrammi'); INSERT INTO `unitespoids` VALUES ('43', '1', 'ESP', 'gramos'); INSERT INTO `unitespoids` VALUES ('44', '2', 'ESP', 'kilos'); INSERT INTO `unitespoids` VALUES ('45', '3', 'ESP', 'miligramos'); INSERT INTO `unitespoids` VALUES ('46', '4', 'ESP', 'centigramos'); INSERT INTO `unitespoids` VALUES ('47', '1', 'DEU', 'Gramm'); INSERT INTO `unitespoids` VALUES ('48', '2', 'DEU', 'kilos'); INSERT INTO `unitespoids` VALUES ('49', '3', 'DEU', 'milligramm'); INSERT INTO `unitespoids` VALUES ('50', '4', 'DEU', 'zentigramm'); INSERT INTO `unitespoids` VALUES ('51', '5', 'ITA', 'tests'); INSERT INTO `unitespoids` VALUES ('52', '6', 'ESP', 'tests'); INSERT INTO `unitespoids` VALUES ('53', '6', 'DEU', 'tests'); -- Structure de la table `tva` DROP TABLE IF EXISTS `tva`; CREATE TABLE `tva` ( `numTVA` int(1) NOT NULL AUTO_INCREMENT, `idTva` int(1) NOT NULL, `taux` decimal(5,2) NOT NULL, PRIMARY KEY (`numTVA`) ) ENGINE=InnoDB AUTO_INCREMENT=48 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; -- Données de la table `tva` INSERT INTO `tva` VALUES ('1', '1', '5.50'); INSERT INTO `tva` VALUES ('2', '2', '10.20'); INSERT INTO `tva` VALUES ('3', '3', '19.50'); INSERT INTO `tva` VALUES ('17', '0', '0.00'); INSERT INTO `tva` VALUES ('47', '4', '20.00'); -- ----------------------------- -- RÉSUMÉ DE L'EXPORT -- ----------------------------- -- Nombre de tables exportées : 47 -- Temps écoulé : 0.04 secondes -- Taille du fichier dump : 0.13 Mo -- -----------------------------